January 2nd, 2013 06:07 AM
Since it is a dangling pointer it is pointing to some junk memory.
March 13th, 2012 03:53 AM
check if you have an instance of the toolbar before you are creating it..
something like this
m_FirstToolBar = new CToolbar();
September 14th, 2011 02:05 AM
makes sure you are selecting one of the item in the Listbox before calling :
m_Home.GetText(m_Home.GetCurSel(), m_Hsel);
check if your m_Home.GetCurSel() is returning "-1" ( means none of...
September 4th, 2011 12:14 AM
Pls let us know which programming language which are comfortable?
Also try writing the program and tell us about any problem, if you have..
Its not adviceable to ask for the full code....
August 17th, 2011 07:30 AM
try to use
pEdit->SetFocus();
or
August 17th, 2011 07:20 AM
just a guess:
vector<socket> sockets;
August 17th, 2011 07:14 AM
sorry, Cilu. I suggested that by seeing the line where it crashed.. thinking memory would not have been allocated.
Its long time i coded in C++ and still want to be in touch with it and learn...
August 16th, 2011 12:28 AM
looks like you need to allocate memory for the vector array ...
try something like this and see
vector<int> guesses(4) = new vector<int>(4);
August 14th, 2011 09:43 AM
there are some MFC classes like CDateTime and COleTime . which can be used to get times..
August 14th, 2011 09:40 AM
whats the full form of QT and GTK+ ?? Are they libraries provided by microsoft similar to MFC...
August 13th, 2011 09:41 AM
you have to use MFC classes along with pure core C++ for the graphical user interface purpose.
August 9th, 2011 12:11 AM
August 8th, 2011 11:48 PM
even the functions
nodeType <Type> *smallestNode();
nodeType <Type> *findNode (const Type& item);
seems to be not implemented. only prototype is present.
February 2nd, 2011 08:53 PM
since both CView and CDialog are some forms of window controls.. derived by CWnd.. you try to understand how they have done it for CView and on a similar round try embedding xl sheet on the dialog....
December 27th, 2010 08:53 AM
looks like installation of VS has not happened properly.. leading to missing of the dll.. or mislocated.. try to search for that dll and copy it to your debug/release folder and try rebuild..
December 27th, 2010 08:43 AM
remove the array size... just put.. POINT pt[][].. so that it takes enough memory by itself..
static BOOL bKeyPressed;
static HBITMAP hBitmap;
Make sure are these system defined...
December 24th, 2010 10:45 AM
thanks .. i thought of asking in codeguru forum is also part of searching :)
December 24th, 2010 10:38 AM
try to copy the dll and the lib file to the directory where the .exe is present
December 24th, 2010 01:20 AM
Hi,
I have an standlone C# application where I am writing some data on to word document ( using COM concept ) to get APIs for writing and handling MS word application and document.
Can I know...
December 22nd, 2010 05:10 AM
even ClistCtrl is derived from CWnd right? then why dont you use scope resolution operator :: and access base class methods...
December 22nd, 2010 04:45 AM
1) how did you resolve these errors than after you changed /MT?
2) what is this FLTK library? :confused:
December 22nd, 2010 04:37 AM
thanks :)
In fact if I would have hesitated to ask this question ( which i did.. of course ) then I would assumed that multi-byte is---> Unicode and Single Byte is --- > Ascii :D
Anyways.. if...
December 22nd, 2010 04:19 AM
can you tell how did you change the Host Application into Multi-Byte?
December 21st, 2010 11:22 PM
Paul ,
whats does SEH stands for?
Is it Segment Exception Handling or what?