I am reading the article http://msdn.microsoft.com/en-us/library/office/aa155776(v=office.10).aspx . I am just curious if I using Visual Studio Class Wizard to create MFC class based on Microsoft...
First of all, the CodeProject classes are not compatible with Unicode. After making necessary modifications, I rebuild it but get more compiler errors under VS2008(such as ambiguous calls to...
I am looking for a good C++ encapsulation class for ADO. Just like CDatabase/CRecordset for ODBC and CDAODatabase/CDAORecordset for DAO. It is better to have a CADODatabase/CADORecordset for...
I have a ULONGLONG variable uDate which express the number of dates starting from 0001-01-01, up to 9999-12-31. Now I want to convert it into a string like this
Yes, task manager can show the memory used by the my application in real time. However, since my app will run for 24 hours, it is impossible for me to look at the memory usage for all the time. That...
I create a Visual C++ 2008 project in my computer, then set the debugging settings for the project, including the "Command" and "Working Directory". However, after I copy all the project directory to...
Originally we are thinking of using CodeJock Toolkit to implement the Skin
of our app. However, after sending several support requests to CodeJock,
none of them are replied. So we are...
Under 64bit Windows 7, I want to start a 64bit executable(myapp64.exe) from a 32bit executable(myapp32.exe). Can I use CreateProcess, ShellExecute or ShellExecuteEx functions in myapp32.exe to do...
I want to write a VC 2008(MFC) app to create a SQL Server database, then create a data table inside it, and then add some records to the table. I am using SQL Server 2008. I want to know which...
Yes, my project is using MFC as static library. But I am very confused. Why a static MFC library will prevent me from dumping object, while I am still in DEBUG...