Click here to Skip to main content
15,906,626 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: launching dos programs(gui) Pin
Dana Epp24-Feb-03 14:46
Dana Epp24-Feb-03 14:46 
GeneralRe: launching dos programs(gui) Pin
eggman2125-Feb-03 5:05
eggman2125-Feb-03 5:05 
Generalsimple C function question Pin
Maximilien24-Feb-03 5:33
Maximilien24-Feb-03 5:33 
GeneralRe: simple C function question Pin
jmkhael24-Feb-03 5:36
jmkhael24-Feb-03 5:36 
GeneralCTime question Pin
Anonymous24-Feb-03 4:53
Anonymous24-Feb-03 4:53 
GeneralRe: CTime question Pin
João Paulo Figueira24-Feb-03 5:09
professionalJoão Paulo Figueira24-Feb-03 5:09 
GeneralRe: CTime question Pin
jhwurmbach24-Feb-03 5:09
jhwurmbach24-Feb-03 5:09 
GeneralRe: CTime question Pin
Alvaro Mendez24-Feb-03 5:25
Alvaro Mendez24-Feb-03 5:25 
A CTime object holds both a date and time (which is unfortunate because the name of the class suggests that it just a time value).

So, given a CTime object, how do you go about changing just the time portion? If that's your question, the (also unfortunate) answer is by reassignment. Here's an example:

CTime t = CTime::GetCurrentTime();
 
// Set time to midnight
t = CTime(t.GetYear(), t.GetMonth(), t.GetDay(), 0, 0, 0);


Regards,
Alvaro


All you need in this life is ignorance and confidence, and then success is sure. -- Mark Twain
GeneralRe: CTime question Pin
Anonymous24-Feb-03 5:27
Anonymous24-Feb-03 5:27 
GeneralRe: CTime question Pin
Dave_24-Feb-03 9:39
Dave_24-Feb-03 9:39 
GeneralCopy constructor Pin
Jerome Conus24-Feb-03 4:27
Jerome Conus24-Feb-03 4:27 
GeneralRe: Copy constructor Pin
João Paulo Figueira24-Feb-03 4:37
professionalJoão Paulo Figueira24-Feb-03 4:37 
GeneralRe: Copy constructor Pin
Jerome Conus24-Feb-03 4:43
Jerome Conus24-Feb-03 4:43 
GeneralRe: Copy constructor Pin
João Paulo Figueira24-Feb-03 4:50
professionalJoão Paulo Figueira24-Feb-03 4:50 
GeneralRe: Copy constructor Pin
Jerome Conus24-Feb-03 4:53
Jerome Conus24-Feb-03 4:53 
GeneralRe: Copy constructor Pin
João Paulo Figueira24-Feb-03 5:02
professionalJoão Paulo Figueira24-Feb-03 5:02 
GeneralRe: Copy constructor Pin
Jerome Conus24-Feb-03 5:06
Jerome Conus24-Feb-03 5:06 
GeneralRe: Copy constructor Pin
Alvaro Mendez24-Feb-03 4:49
Alvaro Mendez24-Feb-03 4:49 
GeneralRe: Copy constructor Pin
Jerome Conus24-Feb-03 4:52
Jerome Conus24-Feb-03 4:52 
GeneralScrollbar HTMLView Pin
jeremysay24-Feb-03 4:15
jeremysay24-Feb-03 4:15 
GeneralRe: Scrollbar HTMLView Pin
HENDRIK R24-Feb-03 4:35
HENDRIK R24-Feb-03 4:35 
GeneralRe: Scrollbar HTMLView Pin
jeremysay24-Feb-03 5:02
jeremysay24-Feb-03 5:02 
GeneralRe: Scrollbar HTMLView Pin
HENDRIK R24-Feb-03 5:10
HENDRIK R24-Feb-03 5:10 
GeneralRe: Scrollbar HTMLView Pin
jeremysay24-Feb-03 5:24
jeremysay24-Feb-03 5:24 
Generaldialog Pin
dudic24-Feb-03 3:58
dudic24-Feb-03 3:58 

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.