Tab
-
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
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
-
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
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
-
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
-
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.
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
-
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
-
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
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 doI 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