Click here to Skip to main content
15,896,730 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: draw a rectangle in dialog based visual C++ 6.0 Pin
CPallini23-Sep-09 21:36
mveCPallini23-Sep-09 21:36 
GeneralRe: draw a rectangle in dialog based visual C++ 6.0 Pin
«_Superman_»23-Sep-09 22:38
professional«_Superman_»23-Sep-09 22:38 
GeneralRe: draw a rectangle in dialog based visual C++ 6.0 Pin
Eka Candra23-Sep-09 22:17
Eka Candra23-Sep-09 22:17 
QuestionRe: draw a rectangle in dialog based visual C++ 6.0 Pin
CPallini23-Sep-09 22:26
mveCPallini23-Sep-09 22:26 
AnswerRe: draw a rectangle in dialog based visual C++ 6.0 Pin
Eka Candra23-Sep-09 22:49
Eka Candra23-Sep-09 22:49 
AnswerRe: draw a rectangle in dialog based visual C++ 6.0 Pin
CPallini23-Sep-09 21:24
mveCPallini23-Sep-09 21:24 
GeneralRe: draw a rectangle in dialog based visual C++ 6.0 Pin
Eka Candra23-Sep-09 22:38
Eka Candra23-Sep-09 22:38 
GeneralRe: draw a rectangle in dialog based visual C++ 6.0 Pin
KarstenK23-Sep-09 22:51
mveKarstenK23-Sep-09 22:51 
GeneralRe: draw a rectangle in dialog based visual C++ 6.0 Pin
CPallini23-Sep-09 22:54
mveCPallini23-Sep-09 22:54 
AnswerRe: draw a rectangle in dialog based visual C++ 6.0 Pin
Eka Candra23-Sep-09 23:04
Eka Candra23-Sep-09 23:04 
GeneralRe: draw a rectangle in dialog based visual C++ 6.0 Pin
Richard MacCutchan24-Sep-09 1:13
mveRichard MacCutchan24-Sep-09 1:13 
QuestionMY simple txt Based Rpg Pin
akosidandan23-Sep-09 20:15
akosidandan23-Sep-09 20:15 
AnswerRe: MY simple txt Based Rpg Pin
CPallini23-Sep-09 20:49
mveCPallini23-Sep-09 20:49 
GeneralRe: MY simple txt Based Rpg Pin
akosidandan23-Sep-09 21:12
akosidandan23-Sep-09 21:12 
GeneralRe: MY simple txt Based Rpg Pin
CPallini23-Sep-09 21:28
mveCPallini23-Sep-09 21:28 
GeneralRe: MY simple txt Based Rpg Pin
akosidandan23-Sep-09 21:47
akosidandan23-Sep-09 21:47 
GeneralRe: MY simple txt Based Rpg Pin
CPallini23-Sep-09 21:55
mveCPallini23-Sep-09 21:55 
GeneralRe: MY simple txt Based Rpg Pin
akosidandan24-Sep-09 16:01
akosidandan24-Sep-09 16:01 
QuestionPlease help to display System Tray Ballon in XP. [modified] Pin
Le@rner23-Sep-09 19:54
Le@rner23-Sep-09 19:54 
AnswerRe: Please help to display System Tray Ballon in XP. Pin
kilt24-Sep-09 7:01
kilt24-Sep-09 7:01 
Questionshell32.dll!7ca51646() Pin
MsmVc23-Sep-09 19:15
MsmVc23-Sep-09 19:15 
I am useing VC++ 2008 Service Pack2 OS Microsoft Windows XP.I had create simple Dialog Based application and add a button and Edit box.On Button Click open a folder dialog Box.When i click on Button and select a file name and again click on button then i am getting exception.

Unhandled exception at 0x7ca51646 in test.exe: 0xC0000005: Access violation reading location 0x01064db0.

I debug the code and found when cursor come here then exception
if (dlg.DoModal()==IDOK)

code of ButtonClick
const char szFilters[]="Excel Files|*.xls;*.xlsx|";
	CKSFileDialog dlg (TRUE, "xlsx", NULL,OFN_FILEMUSTEXIST| OFN_HIDEREADONLY, szFilters,this);
	dlg.SetMyParent(this);
	if (dlg.DoModal()==IDOK)
	{
		SetDlgItemText(IDC_EDIT1, dlg.GetPathName());
			
	}

Plz help me
AnswerRe: shell32.dll!7ca51646() Pin
«_Superman_»23-Sep-09 19:30
professional«_Superman_»23-Sep-09 19:30 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc23-Sep-09 19:57
MsmVc23-Sep-09 19:57 
GeneralRe: shell32.dll!7ca51646() Pin
«_Superman_»23-Sep-09 20:34
professional«_Superman_»23-Sep-09 20:34 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc23-Sep-09 20:40
MsmVc23-Sep-09 20:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.