Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Tab

Tab

Scheduled Pinned Locked Moved C#
help
7 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    boiDev
    wrote on last edited by
    #1

    Hi all I have a Parent form with a calendar and a child form with a schedule on it. When i double click on a date it will show me the schedule from inside the parent form. i want it create a tab in the parent form whenever it opens. Please help

    T L A 4 Replies Last reply
    0
    • B boiDev

      Hi all I have a Parent form with a calendar and a child form with a schedule on it. When i double click on a date it will show me the schedule from inside the parent form. i want it create a tab in the parent form whenever it opens. Please help

      T Offline
      T Offline
      Thomas Stockwell
      wrote on last edited by
      #2

      If your application is using the MDI environment then tabpages may not be what you are looking for (I can't really tell based on the wording of your question). If, however, you are creating a stanard WinForms application, then you should be able to manually code a TabControl, Adding TabPages to that TabControl and then adding a usercontrol to that TabControl. For information on how to do this, just use a google. If you still have problems after using Google then you can always post back with specific questions.

      Regards, Thomas Stockwell Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. Visit my Blog

      1 Reply Last reply
      0
      • B boiDev

        Hi all I have a Parent form with a calendar and a child form with a schedule on it. When i double click on a date it will show me the schedule from inside the parent form. i want it create a tab in the parent form whenever it opens. Please help

        T Offline
        T Offline
        Thomas Stockwell
        wrote on last edited by
        #3

        Please do not post the exact same question in the forums. Especially if it happens on the same day or week of first posting. It just aggravates the forum dwellers.

        Regards, Thomas Stockwell Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. Visit my Blog

        1 Reply Last reply
        0
        • B boiDev

          Hi all I have a Parent form with a calendar and a child form with a schedule on it. When i double click on a date it will show me the schedule from inside the parent form. i want it create a tab in the parent form whenever it opens. Please help

          L Offline
          L Offline
          leckey 0
          wrote on last edited by
          #4

          Look at his record; earlier this month he listed the same question four times. He has been told several times NOT to post more than once.

          Blog link to be reinstated at a later date.

          P 1 Reply Last reply
          0
          • L leckey 0

            Look at his record; earlier this month he listed the same question four times. He has been told several times NOT to post more than once.

            Blog link to be reinstated at a later date.

            P Offline
            P Offline
            Paul Conrad
            wrote on last edited by
            #5

            I do recall pointing it out, in a nice manner in the past. Some folks just don't get it.

            "The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham

            L 1 Reply Last reply
            0
            • P Paul Conrad

              I do recall pointing it out, in a nice manner in the past. Some folks just don't get it.

              "The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham

              L Offline
              L Offline
              leckey 0
              wrote on last edited by
              #6

              There have been so many of them lately I can't keep track. It seems to go in waves. Might have to restart my "list."

              Blog link to be reinstated at a later date.

              1 Reply Last reply
              0
              • B boiDev

                Hi all I have a Parent form with a calendar and a child form with a schedule on it. When i double click on a date it will show me the schedule from inside the parent form. i want it create a tab in the parent form whenever it opens. Please help

                A Offline
                A Offline
                asugix
                wrote on last edited by
                #7

                maybe you can add tab container, and if you create new child like : FormChild form1 = new FormChild(); // form Child is configured Child form by you create new tab page too: TabPage tab1 = new TabPage(); and then attach your new Child form at that page like:

                form1.MdiParent = MyParentForm; //this is your parent form
                form1.Parent = tab1 ; //any container will do

                I try something like this on many tabbed application, but I don't try at calendar like yours.

                No one can prevent me to learn something

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups