Is this what you are looking for? http://msdn2.microsoft.com/en-gb/library/t7y6z6fd(VS.80).aspx[^]
Signal 9
Posts
-
How to run command line from MFC program? -
try-catch handlingah you beat me to it X|
-
c++ UserInterfaceI suggest going to check out these three frameworks. 1) WPF (using C++/CLI) 2) MFC (using native C++) 3) Trolltech QT (using native C++) Once you know what they are and a basic principle of how they work, you can start programming rich UI's for your wonderful C++ programs.:laugh:
-
Using vector over index?You mentioned seaching also. If this is something you are looking for, then I suggest using the std::map class instead of a vector.
-
Is mfc still popular now?Honestly take a look at the MFC videos on MSDN Channel 9 (sorry dont have the link handy). Also if you are unsure of which type of skills companies are looking for (if thats what you are getting at), always take a look at job posting boards for those skills. I can say from a personal view is that MFC is still needed and the push MS has done with MFC for the Visual Studio orcas release indicates that. However what you will find is a lot of companies adopting C# as their programming language and tool set of choice. They usually believe that a garbage collector is safer and will speed up development. You may also be interested in looking at C++/CLI. one word of advice, do not learn one thing. Only one thing is permanent in life... and thats CHANGE !:-D;)
-
Opening a web site from VC++ applicationsome people dont want choice it seems...:confused:
-
size of char *one word (sorta) std::string myfancystringclass;
-
c++ projectboost ! http://www.boost.org
-
Simple Datagrid needsYou can always use a list control, with columns (remember to set it in details mode).
-
CDialog in C++.Netno you cant. The event handler is totally different (the way it is coded). Managed code is different than native C++ code. I suggest buying a Visual C++ .Net book. Microsoft Press has one for cheap and im sure your local book store has tons. It will take you a little bit to get used to the .net framework, but once you do it is very good. Although you will still find yourself going back to native code from time to time.
-
Web page control.I was wondering if anyone know where I can get a webpage control. I.E. a viewer control that will display a webpage ( I believe VB had something like this at one point). Thanks,
-
textbox troubletry: this->ioBox->AppendText() DO NOT USE THE dot operator (.) since you are using a pointer you must use the -> operator.
-
EXCEPTION_IN_PAGE_ERRORnope cant say I have, I did a quick check in MSDN documentation and didnt find it. What kind of control sent the error? that would help determine where and why it was thrown.
-
Resource Editing in VC6you want to open the .rc file for text editing? if so, 1) right click on the RC file in the file view, and select: "open with.." 2) then select the option you wish to open it as. Note: if you have the .rc file already opened in the resource editor it will ask you to close it.
-
Warning: Contains extreme Soapbox material. May also lead to breathing problems due to laughter...That was very funny... nice post...:laugh:
-
a Q about C++ and OSTwo reasons to work on 2K / XP. 1) more stable 2) Alot more GUI controls you can use. (you can also incorporate DirectX if you are doing Sound or Video Editing tricks)
-
Reduce flicker in ListView ?The flickering will still occur, since he is updating the client area every 100 milliseconds. Thats why i said to override. If he uses the default setdraw, it will update and draw the whole client area, which will still flicker.
-
Reduce flicker in ListView ?If you derive from CView you get more control over the drawing... you can set the icons and text descriptions to go with them. If you override the CWnd class then you cannot.
-
Dialogs in Windows Forms applicationI cant remember if windows forms has the OnInitDialog(), if so override that and for the closing of the dialog you can override OnClose(). when you overwrite onclose make sure you call DestroyWindow() from the parent class.
-
Gettin image from hard disk in graphics under cIf you are using managed C++ here is an article which may help you... http://www.thecodeproject.com/managedcpp/mcppwinforms02.asp