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

Managed C++/CLI

 
AnswerRe: Creating a Registry Value in C++/CLI environment Pin
leonigah18-Dec-08 23:04
leonigah18-Dec-08 23:04 
QuestionHow to check availability of internet connection Pin
anveshvm11-Dec-08 3:00
anveshvm11-Dec-08 3:00 
GeneralRe: How to check availability of internet connection Pin
Luc Pattyn11-Dec-08 3:16
sitebuilderLuc Pattyn11-Dec-08 3:16 
GeneralRe: How to check availability of internet connection Pin
anveshvm11-Dec-08 4:12
anveshvm11-Dec-08 4:12 
GeneralRe: How to check availability of internet connection Pin
Luc Pattyn11-Dec-08 4:36
sitebuilderLuc Pattyn11-Dec-08 4:36 
GeneralRe: How to check availability of internet connection Pin
anveshvm11-Dec-08 4:42
anveshvm11-Dec-08 4:42 
GeneralRe: How to check availability of internet connection Pin
Luc Pattyn11-Dec-08 13:29
sitebuilderLuc Pattyn11-Dec-08 13:29 
QuestionHow to check the return value of a messagebox Pin
anveshvm11-Dec-08 2:52
anveshvm11-Dec-08 2:52 
I have written a code to check the return value of a message box. But it doesn't work .

My code is
--------------------------------------

DialogResult^ res = MessageBox::Show("Network connection failed.,"Error in connection",MessageBoxButtons::RetryCancel,MessageBoxIcon::Warning,MessageBoxDefaultButton::Button1);

if (res == System::Windows::Forms::DialogResult::Cancel)
{
Application::Exit();
}
else if (res == System::Windows::Forms::DialogResult::Retry)
{
continue;
}

---------------------------------------------------------

Here both the if condition fails...

In immediate window, the value of res is {...}

Pls check it

Thanks in advance

Anvesh
GeneralRe: How to check the return value of a messagebox Pin
Luc Pattyn11-Dec-08 3:10
sitebuilderLuc Pattyn11-Dec-08 3:10 
GeneralRe: How to check the return value of a messagebox Pin
anveshvm11-Dec-08 3:31
anveshvm11-Dec-08 3:31 
GeneralRe: How to check the return value of a messagebox Pin
Luc Pattyn11-Dec-08 3:43
sitebuilderLuc Pattyn11-Dec-08 3:43 
QuestionHow to call base class method Pin
s196675m8-Dec-08 8:54
s196675m8-Dec-08 8:54 
AnswerRe: How to call base class method Pin
Mark Salsbery8-Dec-08 9:51
Mark Salsbery8-Dec-08 9:51 
GeneralRe: How to call base class method Pin
Eytukan12-Dec-08 19:49
Eytukan12-Dec-08 19:49 
GeneralRe: How to call base class method Pin
Mark Salsbery13-Dec-08 6:52
Mark Salsbery13-Dec-08 6:52 
QuestionGetting HDD serial No in C++/CLI environment Pin
J_E_D_I5-Dec-08 21:50
J_E_D_I5-Dec-08 21:50 
AnswerRe: Getting HDD serial No in C++/CLI environment Pin
Mark Salsbery6-Dec-08 6:12
Mark Salsbery6-Dec-08 6:12 
GeneralRe: Getting HDD serial No in C++/CLI environment Pin
J_E_D_I6-Dec-08 9:07
J_E_D_I6-Dec-08 9:07 
GeneralRe: Getting HDD serial No in C++/CLI environment Pin
Mark Salsbery6-Dec-08 9:36
Mark Salsbery6-Dec-08 9:36 
GeneralRe: Getting HDD serial No in C++/CLI environment Pin
J_E_D_I6-Dec-08 19:58
J_E_D_I6-Dec-08 19:58 
GeneralRe: Getting HDD serial No in C++/CLI environment Pin
Luc Pattyn7-Dec-08 1:14
sitebuilderLuc Pattyn7-Dec-08 1:14 
GeneralRe: Getting HDD serial No in C++/CLI environment Pin
J_E_D_I7-Dec-08 19:21
J_E_D_I7-Dec-08 19:21 
GeneralRe: Getting HDD serial No in C++/CLI environment Pin
Luc Pattyn7-Dec-08 23:06
sitebuilderLuc Pattyn7-Dec-08 23:06 
QuestionRe: Creating Registry Key Values in C++/CLI environment Pin
J_E_D_I13-Dec-08 7:56
J_E_D_I13-Dec-08 7:56 
GeneralRe: Creating Registry Key Values in C++/CLI environment Pin
Luc Pattyn13-Dec-08 8:26
sitebuilderLuc Pattyn13-Dec-08 8:26 

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.