Click here to Skip to main content
15,887,434 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: shell32.dll!7ca51646() Pin
«_Superman_»23-Sep-09 20:42
professional«_Superman_»23-Sep-09 20:42 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc23-Sep-09 20:46
MsmVc23-Sep-09 20:46 
GeneralRe: shell32.dll!7ca51646() Pin
«_Superman_»23-Sep-09 20:53
professional«_Superman_»23-Sep-09 20:53 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc23-Sep-09 21:12
MsmVc23-Sep-09 21:12 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc23-Sep-09 21:18
MsmVc23-Sep-09 21:18 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc23-Sep-09 23:28
MsmVc23-Sep-09 23:28 
AnswerRe: shell32.dll!7ca51646() Pin
David Crow24-Sep-09 3:51
David Crow24-Sep-09 3:51 
GeneralRe: shell32.dll!7ca51646() Pin
MsmVc24-Sep-09 23:09
MsmVc24-Sep-09 23:09 
QuestionRe: shell32.dll!7ca51646() Pin
David Crow25-Sep-09 2:30
David Crow25-Sep-09 2:30 
AnswerRe: shell32.dll!7ca51646() Pin
MsmVc25-Sep-09 2:56
MsmVc25-Sep-09 2:56 
Questionexcel automation Pin
prithaa23-Sep-09 18:59
prithaa23-Sep-09 18:59 
AnswerRe: excel automation Pin
Franck Paquier23-Sep-09 22:17
Franck Paquier23-Sep-09 22:17 
GeneralRe: excel automation Pin
prithaa30-Sep-09 22:38
prithaa30-Sep-09 22:38 

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.