February 20th, 2013 12:56 PM
Yes that's where I have been looking. Here is my .vcxproj file and there is no mention of any identifiers which set this paths in project settings.
<?xml version="1.0" encoding="utf-8"?>...
February 20th, 2013 11:55 AM
I have combined couple of projects into one solution. These projects are converted into VS2010 from older version. The problem is that I want all the projects to spit out the exectuables/dlls into...
January 16th, 2013 10:34 AM
In a typical MFC application I use SetRegistryKey(_T("My_Company")); to set the root registry entry for my application. The MFC application however creates an entry by the name of executable where it...
January 8th, 2013 09:40 AM
I did that but the properties doesn't tell me much. It's style is WS_CHILDWINDOW, WS_VISIBLE, WS_CLIPSIBLINGS, WS_CLIPCHILDREN, I am more after how to create this.
January 8th, 2013 09:20 AM
It would seem that it is just a matter of creating smaller view inside the frame and than maybe I can handle no client area messages to further customize but apparently the view automatically...
January 7th, 2013 03:47 PM
How can I create MS Word 'print layout' like interface. The attached picture says it all. Basically I want a shaded area around my document just like word so it gives a feel of the 'page'.30813
I...
December 20th, 2012 04:16 PM
I was able to fix this issue. The problem was that the libraries used by executable were in different path than created by library source code. I added library and exe project into same workspace and...
December 20th, 2012 10:47 AM
I did make sure the optimization is disabled in Properties >> C/C++ >> Optimization >> Optimization = Disabled (/Od) but I still have this issue. Is there any other place I can turn of optimization?...
December 20th, 2012 09:35 AM
I am debugging a library. I can step into the code however the watch window doesn't show the values of any variables. It will display a message in the value field:
m_pParent CXX0017: Error:...
December 17th, 2012 09:18 AM
In my application I need to to bring up a keyboard dialog when a user clicks any of the edit boxes in the application. Therefore I have OnSetFocus() implemented in all over the application (dialogs)...