Click here to Skip to main content
15,886,798 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionFireEvent method not returning cancelchange status correctly. Pin
keloth879-Jan-12 22:35
keloth879-Jan-12 22:35 
QuestionVS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12345-Jan-12 22:14
meace12345-Jan-12 22:14 
AnswerRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
Richard MacCutchan5-Jan-12 23:13
mveRichard MacCutchan5-Jan-12 23:13 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12345-Jan-12 23:25
meace12345-Jan-12 23:25 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
Richard MacCutchan5-Jan-12 23:54
mveRichard MacCutchan5-Jan-12 23:54 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12345-Jan-12 23:59
meace12345-Jan-12 23:59 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
Richard MacCutchan6-Jan-12 0:16
mveRichard MacCutchan6-Jan-12 0:16 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12347-Jan-12 19:27
meace12347-Jan-12 19:27 
Here is the conversion part
CLR isnt too bad... better than MFC yes?

//How to do conversions for CLR C++ GUI

double dblInput1 = 0.0;
double dblInput2 = 0.0;
double dblAnswer = 0.0;
String ^ strInput1;
String ^ strInput2;
strInput1 = this->Input1textBox->Text;
strInput2 = this->Input2textBox->Text;

if (Double::TryParse(strInput1, dblInput1) & Double::TryParse(strInput2, dblInput2))

{

// do something
dblAnswer = dblInput1 + dblInput2;

Answer1textBox->Text = System::Convert::ToString( dblAnswer );
}

else

{
// the text was not a number, show user an error if appropiate
MessageBox::Show("Error");

}


GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
Richard MacCutchan8-Jan-12 0:02
mveRichard MacCutchan8-Jan-12 0:02 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
rana ray15-Feb-12 20:03
rana ray15-Feb-12 20:03 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace12347-Jan-12 17:57
meace12347-Jan-12 17:57 
GeneralRe: VS2010 CLR double to String, String to double MSVC/C++ methods? Pin
meace123415-Jan-12 22:45
meace123415-Jan-12 22:45 
QuestionWTL/ATL Pin
chithrakochu2-Jan-12 21:03
chithrakochu2-Jan-12 21:03 
AnswerRe: WTL/ATL Pin
Pablo Aliskevicius16-Jan-12 4:17
Pablo Aliskevicius16-Jan-12 4:17 
Questionlisting Office contacts Pin
tasumisra26-Dec-11 0:30
tasumisra26-Dec-11 0:30 
AnswerRe: listing Office contacts Pin
Richard MacCutchan26-Dec-11 6:54
mveRichard MacCutchan26-Dec-11 6:54 
GeneralRe: listing Office contacts Pin
tasumisra26-Dec-11 21:28
tasumisra26-Dec-11 21:28 
GeneralRe: listing Office contacts Pin
Richard MacCutchan27-Dec-11 0:21
mveRichard MacCutchan27-Dec-11 0:21 
GeneralRe: listing Office contacts Pin
tasumisra27-Dec-11 0:45
tasumisra27-Dec-11 0:45 
GeneralRe: listing Office contacts Pin
Richard MacCutchan27-Dec-11 0:57
mveRichard MacCutchan27-Dec-11 0:57 
GeneralRe: listing Office contacts Pin
tasumisra27-Dec-11 3:18
tasumisra27-Dec-11 3:18 
GeneralRe: listing Office contacts Pin
Richard MacCutchan27-Dec-11 4:50
mveRichard MacCutchan27-Dec-11 4:50 
GeneralRe: listing Office contacts Pin
tasumisra27-Dec-11 5:44
tasumisra27-Dec-11 5:44 
Questionconverting CString to Char[100] Pin
KRISHNARAYALU19-Dec-11 22:30
KRISHNARAYALU19-Dec-11 22:30 
AnswerRe: converting CString to Char[100] Pin
Albert Holguin20-Dec-11 4:56
professionalAlbert Holguin20-Dec-11 4:56 

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.