September 15th, 2010 04:14 PM
I researched a bit more and it seems like February 2003 was the latest SDK to have support for VC 6.0. After a fair bit of searching, found the SDK for download here.
...
September 13th, 2010 10:46 AM
Hello,
I use VC 6.0 and I am trying to use the IFileDialog for the File Open and File Save actions. I was previously using the CFileDialog, however with a new change in Windows 7, it overrides...
October 29th, 2009 05:30 AM
Hi,
I have a class dervied from the CTreeCtrl class provided by MSDN. The OnLButtonDown and the OnLButtonUp functions has been overridden.
CMyClass:: OnLButtonDown(...)
{
//Do some...
September 17th, 2009 09:44 AM
Sorry, did not realise that I did not post the error.
'CComQIPtr' : use of class template requires template argument list
September 17th, 2009 09:35 AM
Hi,
I am trying to create a CMap object with the following syntax:
SmrtPtr is an COM interface pointer which I have.
CMap<double,double,CComQIPtr<SmrtPtr, &IID_SmrtPtr>, CComQIPtr<SmrtPtr,...
October 22nd, 2008 02:45 AM
Thanks a lot for the help guys......
October 22nd, 2008 02:44 AM
I have found the reason why it was happening....
It was because the command that the exit icon was being clicked was being relayed to the CDialog I have created by the components inside it.....but I...
October 13th, 2008 07:42 AM
can I use some other mask instead of the LVIF_TEXT mask.....
since, in the List Ctrl I am displaying a subject and I dont want user text to be truncated .....
for example if the user's subject...
October 13th, 2008 07:13 AM
hmmm...
@cilu : you are right.
can you guide me with this help.
There is a window..and there is my toolbar on the window....
as soon as I click on the toolbar, how do I make sure that my...
October 13th, 2008 06:58 AM
The exception I get is an access violation ( 0x0000005) in MFC42.dll.
I believe it is because of some pointer becoming NULL and me trying to access it.
The PreTranslateMessage(...) does not get...
October 11th, 2008 09:52 PM
In my application, I am using a CToolbar object to create two buttons.One button launches a calculator and the other one is an exit button to exit the application.
When clicking on the calculator...
October 7th, 2008 10:18 PM
Hey Victor,
Thanks for the help....
September 26th, 2008 11:42 PM
Hi,
I am using a CListCtrl object and setting the items in it. Every item in the list is an LVITEM. The mask on one of the sub items is LVIF_TEXT.
LVITEM
lvItem.mask = LVIF_TEXT;...