Click here to Skip to main content
15,918,889 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: need a good method for popping between dialogs Pin
littleGreenDude4-Mar-08 3:13
littleGreenDude4-Mar-08 3:13 
GeneralRe: need a good method for popping between dialogs Pin
led mike4-Mar-08 5:49
led mike4-Mar-08 5:49 
GeneralRe: need a good method for popping between dialogs Pin
littleGreenDude4-Mar-08 3:35
littleGreenDude4-Mar-08 3:35 
GeneralRe: need a good method for popping between dialogs Pin
led mike4-Mar-08 5:56
led mike4-Mar-08 5:56 
GeneralRe: need a good method for popping between dialogs Pin
littleGreenDude4-Mar-08 7:35
littleGreenDude4-Mar-08 7:35 
GeneralRe: need a good method for popping between dialogs Pin
led mike4-Mar-08 8:01
led mike4-Mar-08 8:01 
Generalchecking the current time in C++ Pin
nahitan29-Feb-08 9:02
nahitan29-Feb-08 9:02 
GeneralRe: checking the current time in C++ Pin
David Crow29-Feb-08 9:41
David Crow29-Feb-08 9:41 
In your window's message procedure, do something like:

time_t t;
time(&t);
tm *now;
now = localtime(&t);
if (now->tm_hour ...)


"Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for, in order to get to the job you need to pay for the clothes and the car and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman

"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne


GeneralRe: checking the current time in C++ Pin
nahitan29-Feb-08 10:15
nahitan29-Feb-08 10:15 
QuestionRe: checking the current time in C++ Pin
David Crow29-Feb-08 10:19
David Crow29-Feb-08 10:19 
GeneralRe: checking the current time in C++ Pin
Bram van Kampen29-Feb-08 12:39
Bram van Kampen29-Feb-08 12:39 
GeneralRe: checking the current time in C++ Pin
nahitan1-Mar-08 11:41
nahitan1-Mar-08 11:41 
GeneralRe: checking the current time in C++ Pin
Bram van Kampen5-Mar-08 16:45
Bram van Kampen5-Mar-08 16:45 
GeneralRe: checking the current time in C++ Pin
nahitan12-Mar-08 7:02
nahitan12-Mar-08 7:02 
GeneralRe: checking the current time in C++ Pin
Bram van Kampen5-Mar-08 16:52
Bram van Kampen5-Mar-08 16:52 
GeneralRe: checking the current time in C++ Pin
User 23822921-Mar-08 18:37
User 23822921-Mar-08 18:37 
Generalabout the listbox part of combobox Pin
Koder29-Feb-08 7:58
Koder29-Feb-08 7:58 
GeneralRe: about the listbox part of combobox Pin
Mark Salsbery29-Feb-08 8:40
Mark Salsbery29-Feb-08 8:40 
GeneralRe: about the listbox part of combobox Pin
led mike29-Feb-08 9:56
led mike29-Feb-08 9:56 
GeneralRe: about the listbox part of combobox Pin
Mark Salsbery29-Feb-08 10:12
Mark Salsbery29-Feb-08 10:12 
GeneralRe: about the listbox part of combobox Pin
led mike29-Feb-08 10:46
led mike29-Feb-08 10:46 
GeneralRe: about the listbox part of combobox Pin
Mark Salsbery29-Feb-08 10:55
Mark Salsbery29-Feb-08 10:55 
GeneralRe: about the listbox part of combobox [modified] Pin
led mike29-Feb-08 11:02
led mike29-Feb-08 11:02 
GeneralRe: about the listbox part of combobox Pin
Mark Salsbery29-Feb-08 11:20
Mark Salsbery29-Feb-08 11:20 
GeneralRe: about the listbox part of combobox Pin
Mark Salsbery29-Feb-08 11:41
Mark Salsbery29-Feb-08 11:41 

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.