Click here to Skip to main content
15,920,603 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Error notification in Event Viewer Pin
Naveen14-Jun-06 1:34
Naveen14-Jun-06 1:34 
GeneralRe: Error notification in Event Viewer Pin
Nibu babu thomas14-Jun-06 1:35
Nibu babu thomas14-Jun-06 1:35 
GeneralRe: Error notification in Event Viewer Pin
Naveen14-Jun-06 1:59
Naveen14-Jun-06 1:59 
QuestionMixed Language C++,Fortran Pin
Yasir Elmahi13-Jun-06 23:43
Yasir Elmahi13-Jun-06 23:43 
AnswerRe: Mixed Language C++,Fortran Pin
Viorel.14-Jun-06 0:10
Viorel.14-Jun-06 0:10 
AnswerRe: Mixed Language C++,Fortran Pin
John R. Shaw14-Jun-06 1:31
John R. Shaw14-Jun-06 1:31 
Questionwindows directory dialog Pin
iLL eFFect13-Jun-06 23:25
iLL eFFect13-Jun-06 23:25 
AnswerRe: windows directory dialog Pin
Cedric Moonen13-Jun-06 23:31
Cedric Moonen13-Jun-06 23:31 
iLL eFFect wrote:
LPBROWSEINFOW dir;


Your pointer is not initialized so it points to invalid memory address. Instead of using a pointer, use the structure:
BROWSEINFO dir;
dir.hwndOwner = NULL;
...
...
...

SHBrowseForFolder(&dir);



Cédric Moonen
Software developer

Charting control
GeneralRe: windows directory dialog Pin
iLL eFFect13-Jun-06 23:38
iLL eFFect13-Jun-06 23:38 
GeneralRe: windows directory dialog Pin
Cedric Moonen13-Jun-06 23:46
Cedric Moonen13-Jun-06 23:46 
GeneralRe: windows directory dialog Pin
iLL eFFect14-Jun-06 0:04
iLL eFFect14-Jun-06 0:04 
AnswerRe: windows directory dialog Pin
Blake Miller14-Jun-06 12:31
Blake Miller14-Jun-06 12:31 
GeneralRe: windows directory dialog Pin
iLL eFFect14-Jun-06 17:56
iLL eFFect14-Jun-06 17:56 
Questionfunction with variable param Pin
blue_rabbit13-Jun-06 23:22
blue_rabbit13-Jun-06 23:22 
AnswerRe: function with variable param Pin
Viorel.13-Jun-06 23:39
Viorel.13-Jun-06 23:39 
AnswerRe: function with variable param Pin
Serge A. Zhirko13-Jun-06 23:46
Serge A. Zhirko13-Jun-06 23:46 
GeneralRe: function with variable param Pin
blue_rabbit13-Jun-06 23:51
blue_rabbit13-Jun-06 23:51 
GeneralRe: function with variable param Pin
toxcct13-Jun-06 23:56
toxcct13-Jun-06 23:56 
Questionhow to get notified when screen resolution changes Pin
GANsJob13-Jun-06 23:20
GANsJob13-Jun-06 23:20 
AnswerRe: how to get notified when screen resolution changes Pin
Viorel.13-Jun-06 23:31
Viorel.13-Jun-06 23:31 
AnswerRe: how to get notified when screen resolution changes Pin
shahshi9-Feb-10 22:06
shahshi9-Feb-10 22:06 
Questionhow to extract properties of msi file using msiexec ? Pin
Supriya Tonape13-Jun-06 23:18
Supriya Tonape13-Jun-06 23:18 
AnswerRe: how to extract properties of msi file using msiexec ? Pin
Blake Miller14-Jun-06 12:33
Blake Miller14-Jun-06 12:33 
AnswerRe: how to extract properties of msi file using msiexec ? [modified] Pin
bob1697214-Jun-06 12:47
bob1697214-Jun-06 12:47 
Questionproperty page Pin
amit.code13-Jun-06 23:17
amit.code13-Jun-06 23:17 

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.