Click here to Skip to main content
15,916,945 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Dialog Box Pin
syedhassan418-Oct-01 2:37
syedhassan418-Oct-01 2:37 
GeneralRe: Dialog Box Pin
Christian Graus18-Oct-01 2:40
protectorChristian Graus18-Oct-01 2:40 
GeneralRe: Dialog Box Pin
syedhassan418-Oct-01 2:57
syedhassan418-Oct-01 2:57 
QuestionHow to know that a dialog is completely charged Pin
17-Oct-01 10:31
suss17-Oct-01 10:31 
AnswerRe: How to know that a dialog is completely charged Pin
syedhassan417-Oct-01 10:44
syedhassan417-Oct-01 10:44 
GeneralRe: How to know that a dialog is completely charged Pin
17-Oct-01 10:59
suss17-Oct-01 10:59 
GeneralRe: How to know that a dialog is completely charged Pin
Michael P Butler17-Oct-01 11:08
Michael P Butler17-Oct-01 11:08 
GeneralRe: How to know that a dialog is completely charged Pin
Joaquín M López Muñoz17-Oct-01 11:22
Joaquín M López Muñoz17-Oct-01 11:22 
If I understood you, you want to get hold of the very moment the dialog appears on the screen. For what is said in this article, the way to go is having an OnWindowPosChanged() handler like this:
void CYourDialog::OnWindowPosChanged(WINDOWPOS FAR* lpwndpos) {
  if(lpwndpos->flags & SWP_SHOWWINDOW){
    // start here your action; make sure you don't do it twice.
  }
  CDialog::OnWindowPosChanged(lpwndpos);
}
Tell us it this works.

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
GeneralSMTP Error Code Pin
Özgür17-Oct-01 9:40
Özgür17-Oct-01 9:40 
GeneralRe: SMTP Error Code Pin
Ravi Bhavnani17-Oct-01 10:18
professionalRavi Bhavnani17-Oct-01 10:18 
GeneralRe: SMTP Error Code Pin
markkuk17-Oct-01 19:57
markkuk17-Oct-01 19:57 
GeneralUh oh... Pin
Ravi Bhavnani18-Oct-01 2:55
professionalRavi Bhavnani18-Oct-01 2:55 
GeneralRe: Uh oh... Pin
Özgür18-Oct-01 5:40
Özgür18-Oct-01 5:40 
GeneralRe: SMTP Error Code Pin
Obliterator18-Oct-01 3:45
Obliterator18-Oct-01 3:45 
GeneralRe: SMTP Error Code Pin
Özgür18-Oct-01 5:32
Özgür18-Oct-01 5:32 
GeneralRe: SMTP Error Code Pin
Obliterator18-Oct-01 5:52
Obliterator18-Oct-01 5:52 
QuestionHow to Send/Recieve Packets in Client/Server environment based on MAC address ONLY? Pin
AliBaba17-Oct-01 9:21
AliBaba17-Oct-01 9:21 
AnswerRe: Answer is "NO". Pin
Masaaki Onishi17-Oct-01 15:26
Masaaki Onishi17-Oct-01 15:26 
GeneralRe: Answer is "NO". Pin
18-Oct-01 4:24
suss18-Oct-01 4:24 
Generalpartition of hard disk Pin
Peter Molnar17-Oct-01 9:12
Peter Molnar17-Oct-01 9:12 
GeneralRe: partition of hard disk Pin
Christian Graus17-Oct-01 11:19
protectorChristian Graus17-Oct-01 11:19 
GeneralRe: partition of hard disk Pin
Christian Graus17-Oct-01 12:12
protectorChristian Graus17-Oct-01 12:12 
GeneralRe: partition of hard disk Pin
Sam C17-Oct-01 12:22
Sam C17-Oct-01 12:22 
QuestionHow to Send/Recieve Packets in Client/Server environment based on MAC address ONLY? Pin
AliBaba17-Oct-01 9:09
AliBaba17-Oct-01 9:09 
AnswerRe: How to Send/Recieve Packets in Client/Server environment based on MAC address ONLY? Pin
RobJones17-Oct-01 11:39
RobJones17-Oct-01 11:39 

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.