Click here to Skip to main content
15,908,015 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Splitter in a CView Pin
basementman16-Mar-04 4:02
basementman16-Mar-04 4:02 
GeneralRe: Splitter in a CView Pin
#realJSOP16-Mar-04 4:23
professional#realJSOP16-Mar-04 4:23 
GeneralWarning message Pin
si_6916-Mar-04 2:49
si_6916-Mar-04 2:49 
GeneralRe: Warning message Pin
Mike Beckerleg16-Mar-04 3:00
Mike Beckerleg16-Mar-04 3:00 
GeneralFor MFC resource .dll Pin
nareshn216-Mar-04 2:35
nareshn216-Mar-04 2:35 
GeneralRe: For MFC resource .dll Pin
Prakash Nadar16-Mar-04 2:47
Prakash Nadar16-Mar-04 2:47 
GeneralRe: For MFC resource .dll Pin
nareshn216-Mar-04 2:57
nareshn216-Mar-04 2:57 
GeneralRe: For MFC resource .dll Pin
Steve S16-Mar-04 3:13
Steve S16-Mar-04 3:13 
Was, by any chance, your modeless dialog done like this?

SomeFunctionOrOther()
{
CMyModeless dialog;

dialog.Create(...);

}


If so, then it's nothing to do with DLLs or anything as complicated, it's more to do with the fact that modeless dialogs cannot be done that way.
You'd need

CMyModeless* dialog;
dialog = new CMyModeless();
dialog->Create(...);

since you want the object to exist beyond the lifetime of a frame-based object.

Of course, this doesn't even come close to covering the fact you'd need to either track the dialog object's lifetime, or make it suicidal.

Steve S
GeneralPlaying wav through streaming buffer Pin
Sivaji16-Mar-04 2:32
Sivaji16-Mar-04 2:32 
Generalshould not open a file in the IE when i dragged it into activex control Pin
jillellamudi16-Mar-04 2:04
jillellamudi16-Mar-04 2:04 
Generalmfc dll version Pin
ppp00116-Mar-04 1:19
ppp00116-Mar-04 1:19 
GeneralRe: mfc dll version Pin
Nirav Doshi16-Mar-04 1:28
Nirav Doshi16-Mar-04 1:28 
GeneralRe: mfc dll version Pin
David Crow16-Mar-04 2:31
David Crow16-Mar-04 2:31 
GeneralRe: mfc dll version Pin
RChin16-Mar-04 1:48
RChin16-Mar-04 1:48 
GeneralRe: mfc dll version Pin
Prakash Nadar16-Mar-04 2:38
Prakash Nadar16-Mar-04 2:38 
GeneralQuery: Keyboard Hooks! Pin
Nirav Doshi16-Mar-04 1:14
Nirav Doshi16-Mar-04 1:14 
Generaltree icon [+] [-] Pin
s o v a n n16-Mar-04 1:05
s o v a n n16-Mar-04 1:05 
GeneralRe: tree icon [+] [-] Pin
João Paulo Figueira16-Mar-04 1:26
professionalJoão Paulo Figueira16-Mar-04 1:26 
GeneralRe: tree icon [+] [-] Pin
s o v a n n17-Mar-04 2:57
s o v a n n17-Mar-04 2:57 
Questionmay i get the source code of palm encryption & decryption?? Pin
c028121916-Mar-04 1:03
c028121916-Mar-04 1:03 
Generaldeploying a .dll dependent on MFC71.dll Pin
Andy C16-Mar-04 0:37
Andy C16-Mar-04 0:37 
Generalunsigned long to string Pin
Caoimh16-Mar-04 0:17
Caoimh16-Mar-04 0:17 
GeneralRe: unsigned long to string Pin
jmkhael16-Mar-04 0:29
jmkhael16-Mar-04 0:29 
GeneralRe: unsigned long to string Pin
Caoimh16-Mar-04 0:32
Caoimh16-Mar-04 0:32 
GeneralRe: unsigned long to string Pin
jmkhael16-Mar-04 0:35
jmkhael16-Mar-04 0:35 

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.