Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Adding a tab control (MFC VC++)
Name: MFC SEEKER Date: September 4, 2002 at 11:56:29 Pacific OS: 98 CPU/Ram: PIII 128MB
Comment:
I am trying to add a simple tab control to my program. I got to the point where I created a member variable but then I stopped there, I have no idea what to do next in order to edit the tab (i.e: provide names, and attach button and dialogs to it)
Anyone knows a good online tutorial about that? Or send me a code to explain it.
Name: Jeff J Date: September 4, 2002 at 17:49:18 Pacific
Reply:
There is a lot of stuff out there on MFC via google. However, the VC help files are often good enough; just lookup the control in the index (CTabCtrl). That will give you links on how to do all sorts of things with it.
If for some reason your help files are "not working" right now, everything is duplicated on the MSDN site. I find searching the easiest way around those terrabytes, via:
"http://search.microsoft.com/advanced_search.asp"
You could search for the exact phrase "using ctabctrl". The trick to programming is not programming, but how to navigate the morass of info out there ;)
Summary: I have a tab control with 26 tabs (one for each letter of the alphabet). The tabs are vertical but on multiple tab lines. I want them all to be on one single line. How do I do this? Also, I have been ...
Summary: Hello, I have a form with a tab control on it with 5 different tabs. Each tab pulls data from a database. When the tab control is loaded, the first tab is automatically selected. If I go to tab 4, I c...
Summary: I have a tab control and I want to make a sub-tab control on only one of the tabs. Since it won't let me drag the control onto the selected tab, how do i determine which tab is active, so I can set th...