Click here to Skip to main content
15,897,187 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Size of Labels Pin
dybs7-Jun-09 12:09
dybs7-Jun-09 12:09 
AnswerRe: Size of Labels Pin
Luc Pattyn7-Jun-09 12:38
sitebuilderLuc Pattyn7-Jun-09 12:38 
GeneralRe: Size of Labels Pin
dybs7-Jun-09 14:32
dybs7-Jun-09 14:32 
QuestionOn using UriBuilder->Uri gives Invalid Uri : The hostname could not be parsed. Pin
gurindersm4-Jun-09 18:36
gurindersm4-Jun-09 18:36 
AnswerRe: On using UriBuilder->Uri gives Invalid Uri : The hostname could not be parsed. Pin
led mike5-Jun-09 4:49
led mike5-Jun-09 4:49 
QuestionHelp storing audio buffer to temp file Pin
Nikhil_77774-Jun-09 9:48
Nikhil_77774-Jun-09 9:48 
AnswerRe: Help storing audio buffer to temp file Pin
Mark Salsbery5-Jun-09 6:41
Mark Salsbery5-Jun-09 6:41 
GeneralRe: Help storing audio buffer to temp file Pin
Tony Duarte6-Jun-09 16:52
Tony Duarte6-Jun-09 16:52 
GeneralRe: Help storing audio buffer to temp file Pin
Mark Salsbery6-Jun-09 17:42
Mark Salsbery6-Jun-09 17:42 
QuestionHow can i include CTime Pin
wael_r3-Jun-09 2:49
wael_r3-Jun-09 2:49 
AnswerRe: How can i include CTime Pin
Garth J Lancaster3-Jun-09 2:58
professionalGarth J Lancaster3-Jun-09 2:58 
AnswerRe: How can i include CTime Pin
George L. Jackson3-Jun-09 7:45
George L. Jackson3-Jun-09 7:45 
AnswerRe: How can i include CTime Pin
Mark Salsbery3-Jun-09 11:48
Mark Salsbery3-Jun-09 11:48 
QuestionConvert to datetime problem Pin
wael_r3-Jun-09 2:33
wael_r3-Jun-09 2:33 
AnswerRe: Convert to datetime problem Pin
wael_r3-Jun-09 3:25
wael_r3-Jun-09 3:25 
AnswerRe: Convert to datetime problem Pin
Luc Pattyn3-Jun-09 4:34
sitebuilderLuc Pattyn3-Jun-09 4:34 
AnswerRe: Convert to datetime problem [modified] Pin
George L. Jackson3-Jun-09 6:54
George L. Jackson3-Jun-09 6:54 
The value, 1243930978, is calculated from the number of seconds from 1/1/1970. To convert to a DateTime, you must account for this offset:
DateTime time_offset(1970, 1, 1);
DateTime time_converted = time_offset.AddSeconds(1243930978);


"We make a living by what we get, we make a life by what we give." --Winston Churchill

modified on Wednesday, June 3, 2009 4:36 PM

GeneralRe: Convert to datetime problem Pin
wael_r3-Jun-09 20:20
wael_r3-Jun-09 20:20 
GeneralRe: Convert to datetime problem [modified] Pin
George L. Jackson4-Jun-09 1:53
George L. Jackson4-Jun-09 1:53 
GeneralRe: Convert to datetime problem Pin
wael_r4-Jun-09 2:07
wael_r4-Jun-09 2:07 
GeneralRe: Convert to datetime problem Pin
George L. Jackson4-Jun-09 2:48
George L. Jackson4-Jun-09 2:48 
GeneralRe: Convert to datetime problem Pin
wael_r4-Jun-09 23:01
wael_r4-Jun-09 23:01 
QuestionUsing a DLL containing MFC functions in a Managed C++ app (Help please) [modified] Pin
James19762-Jun-09 21:42
James19762-Jun-09 21:42 
QuestionRe: Using a DLL containing MFC functions in a Managed C++ app (Help please) Pin
Mark Salsbery3-Jun-09 11:51
Mark Salsbery3-Jun-09 11:51 
AnswerRe: Using a DLL containing MFC functions in a Managed C++ app (Help please) Pin
James19763-Jun-09 23:08
James19763-Jun-09 23:08 

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.