One difference between running the exe from within the IDE and without is, that IDE sets the current directory of the exe to the project folder (where you have all those cpp & h files) and running...
Thanks for the reply VictorN & also for understanding my post :D. One additional question, the icon returned from the method you mentioned is an HICON, but for the TreeView/Ctrl, I need to populate...
I am writing an application, when I need to use for a TreeView, icons used by explorer for directory & also the icons for different file type displayed within explorer.
Could you please explain in more details what exactly you mean by DLL memory info retreival??? Is there any exported function that returns that data/memory??? or you want to sortof read within your...
I am working on a SDI application, there I am using a splitter to split the frame into two panes. Now, I want to adjust the pane size, for that I use GetClientRect within the Frame, the...
Well there will not be that many controls per pane or part of the view split ed by the splitter. Yeah, that's what I thought about not using MDI (I dont need to show multiple docs/views).
I want to implement a GUI, where I have to split the Window in four different parts using a splitter. I am not sure, if I create four different views or just use a single window, and size...
Well, I dont want to start this CString vs std::string debate all over again. CString is better for MFC functions requiring CString. But CString is designed and should be used as C++ version of...
If you have access to MS Visual Studio, download some beginner's project (look into CodeGuru articles page) and step through the code. This will give you a good idea of how those projects are laid...
Sleeping in the main thread is not a good idea (the application will appear to be hung/non-responsive during sleep). I'd suggest to create worker thread, and do the sleeping over there :).
...