Click here to Skip to main content
15,913,854 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: can use GLUT to read an picture (bmp)??? Pin
Cedric Moonen9-Dec-09 20:26
Cedric Moonen9-Dec-09 20:26 
Questionvoip Pin
geniuspc9-Dec-09 12:38
geniuspc9-Dec-09 12:38 
AnswerRe: voip Pin
Moak10-Dec-09 5:32
Moak10-Dec-09 5:32 
QuestionStack Overflow / Windows CE Newbie Pin
egerving9-Dec-09 12:01
egerving9-Dec-09 12:01 
AnswerRe: Stack Overflow / Windows CE Newbie Pin
Luc Pattyn9-Dec-09 12:36
sitebuilderLuc Pattyn9-Dec-09 12:36 
GeneralRe: Stack Overflow / Windows CE Newbie Pin
egerving10-Dec-09 7:31
egerving10-Dec-09 7:31 
QuestionHow do you merge multiple bitmap files? Pin
Dale Haessel9-Dec-09 10:30
Dale Haessel9-Dec-09 10:30 
AnswerRe: How do you merge multiple bitmap files? Pin
loyal ginger9-Dec-09 10:34
loyal ginger9-Dec-09 10:34 
GeneralRe: How do you merge multiple bitmap files? Pin
Dale Haessel9-Dec-09 17:04
Dale Haessel9-Dec-09 17:04 
GeneralRe: How do you merge multiple bitmap files? Pin
loyal ginger9-Dec-09 17:53
loyal ginger9-Dec-09 17:53 
GeneralRe: How do you merge multiple bitmap files? Pin
LunaticFringe9-Dec-09 19:22
LunaticFringe9-Dec-09 19:22 
AnswerRe: How do you merge multiple bitmap files? Pin
Sauce!9-Dec-09 13:50
Sauce!9-Dec-09 13:50 
AnswerRe: How do you merge multiple bitmap files? Pin
KarstenK9-Dec-09 21:55
mveKarstenK9-Dec-09 21:55 
QuestionCMenu what the scrolling menu buttons named ? Pin
Maximilien9-Dec-09 9:52
Maximilien9-Dec-09 9:52 
AnswerRe: CMenu what the scrolling menu buttons named ? Pin
KarstenK9-Dec-09 21:57
mveKarstenK9-Dec-09 21:57 
QuestionCan't get local system time to show in a StatusStrip label Pin
spicture9-Dec-09 9:18
spicture9-Dec-09 9:18 
AnswerRe: Can't get local system time to show in a StatusStrip label Pin
Richard MacCutchan9-Dec-09 9:52
mveRichard MacCutchan9-Dec-09 9:52 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
spicture10-Dec-09 6:51
spicture10-Dec-09 6:51 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
Richard MacCutchan10-Dec-09 7:18
mveRichard MacCutchan10-Dec-09 7:18 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
spicture11-Dec-09 8:23
spicture11-Dec-09 8:23 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
spicture11-Dec-09 8:20
spicture11-Dec-09 8:20 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
Richard MacCutchan12-Dec-09 1:30
mveRichard MacCutchan12-Dec-09 1:30 
AnswerRe: Can't get local system time to show in a StatusStrip label Pin
loyal ginger9-Dec-09 10:37
loyal ginger9-Dec-09 10:37 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
spicture10-Dec-09 6:45
spicture10-Dec-09 6:45 
GeneralRe: Can't get local system time to show in a StatusStrip label Pin
spicture11-Dec-09 8:22
spicture11-Dec-09 8:22 
Thank you. I finally got it. Her is the code.
private: System::Void timer1_Tick(System::Object^  sender, System::EventArgs^  e) 
{
        DateTime^ thisDate = DateTime::Now;
	System::Windows::Forms::StatusStrip toolStripStatusLabel1;
	Form1::toolStripStatusLabel1 -> Text = String::Format("{0:f}", thisDate);
}

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.