Click here to Skip to main content
15,914,014 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralFAQ 8.4 Pin
Andrew Walker22-Jul-03 2:14
Andrew Walker22-Jul-03 2:14 
GeneralRe: FAQ 8.4 Pin
Ryan Binns22-Jul-03 5:41
Ryan Binns22-Jul-03 5:41 
GeneralRe: FAQ 8.4 Pin
Andrew Walker22-Jul-03 5:43
Andrew Walker22-Jul-03 5:43 
GeneralRe: Retrieving Header and Footer using VC++ Pin
David Crow22-Jul-03 4:57
David Crow22-Jul-03 4:57 
GeneralRe: Retrieving Header and Footer using VC++ Pin
adsilva25-Jul-03 19:20
adsilva25-Jul-03 19:20 
GeneralProblem with more than one dialog box.. Pin
Deepak Samuel21-Jul-03 23:30
Deepak Samuel21-Jul-03 23:30 
GeneralRe: Problem with more than one dialog box.. Pin
tcss21-Jul-03 23:42
tcss21-Jul-03 23:42 
GeneralRe: Problem with more than one dialog box.. Pin
Cedric Moonen21-Jul-03 23:44
Cedric Moonen21-Jul-03 23:44 
The best solution is to separate the dialog boxes.
Call DoModal for the first one (the program will 'wait' at this instruction til the dialog is closed), then call DoModal for the second one, and so on.

CDialog Dialog1(IDD_DIALOG1);<br />
CDialog Dialog2(IDD_DIALOG2);<br />
CDialog Dialog3(IDD_DIALOG3);<br />
...<br />
<br />
Dialog1.DoModal();<br />
Dialog2.DoModal();<br />
Dialog3.DoModal);<br />
...

GeneralRe: Problem with more than one dialog box.. Pin
Deepak Samuel22-Jul-03 0:19
Deepak Samuel22-Jul-03 0:19 
GeneralRe: Problem with more than one dialog box.. Pin
jhwurmbach22-Jul-03 0:10
jhwurmbach22-Jul-03 0:10 
GeneralRe: Problem with more than one dialog box.. Pin
Deepak Samuel22-Jul-03 0:12
Deepak Samuel22-Jul-03 0:12 
GeneralRe: Problem with more than one dialog box.. Pin
jhwurmbach22-Jul-03 0:18
jhwurmbach22-Jul-03 0:18 
GeneralControl Key press in clistview Pin
tcss21-Jul-03 23:27
tcss21-Jul-03 23:27 
GeneralRe: Control Key press in clistview Pin
Adi Narayana22-Jul-03 0:36
Adi Narayana22-Jul-03 0:36 
GeneralRe: Control Key press in clistview Pin
tcss22-Jul-03 0:45
tcss22-Jul-03 0:45 
Generalpaige32.dll PBM Pin
RaajaOfSelf21-Jul-03 23:14
RaajaOfSelf21-Jul-03 23:14 
GeneralListCtrl and line break Pin
heju21-Jul-03 22:48
heju21-Jul-03 22:48 
Questionhow to use control Pin
ladder21-Jul-03 22:36
ladder21-Jul-03 22:36 
AnswerRe: how to use control Pin
BirJas21-Jul-03 23:22
BirJas21-Jul-03 23:22 
GeneralRe: how to use control Pin
ladder22-Jul-03 23:47
ladder22-Jul-03 23:47 
AnswerRe: how to use control Pin
El'Cachubrey21-Jul-03 23:38
El'Cachubrey21-Jul-03 23:38 
GeneralRe: how to use control Pin
ladder22-Jul-03 23:51
ladder22-Jul-03 23:51 
GeneralRe: how to use control Pin
El'Cachubrey23-Jul-03 20:03
El'Cachubrey23-Jul-03 20:03 
AnswerRe: how to use control Pin
Bob Stanneveld22-Jul-03 2:46
Bob Stanneveld22-Jul-03 2:46 
GeneralRe: how to use control Pin
ladder23-Jul-03 0:09
ladder23-Jul-03 0:09 

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.