Click here to Skip to main content
15,894,328 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: delete returned point question Pin
Christian Graus18-Sep-05 17:20
protectorChristian Graus18-Sep-05 17:20 
GeneralRe: delete returned point question Pin
followait18-Sep-05 22:49
followait18-Sep-05 22:49 
GeneralRe: delete returned point question Pin
Matt Godbolt18-Sep-05 23:29
Matt Godbolt18-Sep-05 23:29 
GeneralRe: delete returned point question Pin
khan++18-Sep-05 23:35
khan++18-Sep-05 23:35 
QuestionWindows XP look and feel Pin
Member 223710418-Sep-05 16:21
Member 223710418-Sep-05 16:21 
AnswerRe: Windows XP look and feel Pin
Christian Graus18-Sep-05 17:20
protectorChristian Graus18-Sep-05 17:20 
GeneralRe: Windows XP look and feel Pin
benjnp18-Sep-05 17:37
benjnp18-Sep-05 17:37 
GeneralRe: Windows XP look and feel Pin
Christian Graus18-Sep-05 17:39
protectorChristian Graus18-Sep-05 17:39 
GeneralRe: Windows XP look and feel Pin
Member 223710418-Sep-05 18:08
Member 223710418-Sep-05 18:08 
GeneralRe: Windows XP look and feel Pin
Christian Graus18-Sep-05 18:09
protectorChristian Graus18-Sep-05 18:09 
GeneralRe: Windows XP look and feel Pin
Member 223710418-Sep-05 19:59
Member 223710418-Sep-05 19:59 
GeneralRe: Windows XP look and feel Pin
toxcct18-Sep-05 20:33
toxcct18-Sep-05 20:33 
GeneralRe: Windows XP look and feel Pin
Member 223710418-Sep-05 23:37
Member 223710418-Sep-05 23:37 
GeneralRe: Windows XP look and feel Pin
Christian Graus19-Sep-05 10:53
protectorChristian Graus19-Sep-05 10:53 
GeneralRe: Windows XP look and feel Pin
Taka Muraoka18-Sep-05 23:29
Taka Muraoka18-Sep-05 23:29 
Questionconsole to dialog Pin
Member 216100418-Sep-05 16:19
Member 216100418-Sep-05 16:19 
AnswerRe: console to dialog Pin
Christian Graus18-Sep-05 17:26
protectorChristian Graus18-Sep-05 17:26 
GeneralRe: console to dialog Pin
Member 216100418-Sep-05 17:44
Member 216100418-Sep-05 17:44 
GeneralRe: console to dialog Pin
Christian Graus18-Sep-05 17:48
protectorChristian Graus18-Sep-05 17:48 
GeneralRe: console to dialog Pin
Member 216100418-Sep-05 18:09
Member 216100418-Sep-05 18:09 
GeneralRe: console to dialog Pin
Christian Graus18-Sep-05 18:10
protectorChristian Graus18-Sep-05 18:10 
GeneralRe: console to dialog Pin
Member 216100418-Sep-05 20:43
Member 216100418-Sep-05 20:43 
GeneralRe: console to dialog Pin
Bob Stanneveld18-Sep-05 22:22
Bob Stanneveld18-Sep-05 22:22 
GeneralRe: console to dialog Pin
Christian Graus19-Sep-05 10:55
protectorChristian Graus19-Sep-05 10:55 
QuestionCFileDialog Pin
Achim Klein18-Sep-05 12:14
Achim Klein18-Sep-05 12:14 
Hi folks,

I got a problem with CFileDialog.

This is my code:
// select index file
CFileDialog dlg(TRUE, 0, 0, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, "Text files (.txt)|*.txt||");

// show dialog
if (dlg.DoModal() == IDCANCEL) return;

And this is my problem:
When I open this dialog the first time, everything works fine.
But when I open it the second time (just after I selected a file in the first run) both the CFileDialog and my dialog-based application disappear.
The error occurs right when the CFileDialog wants to show a small 'tooltip'(?) window in wich some file information is presented. The same small window is shown in the first run without any problem, but in the second run my application crashes just when the window is to be shown.
In debug mode I get the message 'Access violation in Shell32.dll'.

Any ideas what's going wrong ?
Unfortunately I got none...

Thanks


We can do no great things, only small things with great love. - Mother Theresa

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.