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

Managed C++/CLI

 
AnswerRe: Bounded mouse position when moving child form Pin
LionAM6-Jul-08 6:26
LionAM6-Jul-08 6:26 
GeneralRe: Bounded mouse position when moving child form Pin
LionAM7-Jul-08 9:18
LionAM7-Jul-08 9:18 
QuestionGetType for class Pin
LionAM5-Jul-08 6:20
LionAM5-Jul-08 6:20 
AnswerRe: GetType for class Pin
Mark Salsbery5-Jul-08 9:29
Mark Salsbery5-Jul-08 9:29 
GeneralRe: GetType for class Pin
LionAM5-Jul-08 9:47
LionAM5-Jul-08 9:47 
GeneralRe: GetType for class Pin
Mark Salsbery5-Jul-08 9:53
Mark Salsbery5-Jul-08 9:53 
GeneralRe: GetType for class Pin
LionAM5-Jul-08 12:00
LionAM5-Jul-08 12:00 
GeneralRe: GetType for class Pin
Mark Salsbery5-Jul-08 12:43
Mark Salsbery5-Jul-08 12:43 
MdiClient is in the System::Windows::Forms namespace, not the
System::Windows::Forms::Form namespace (which doesn't exist -
System::Windows::Forms::Form is a class).

Either of these should work:
using namespace System::Windows::Forms;
...
   if (objectref->GetType() == MdiClient::typeid)

or
if (objectref->GetType() == System::Windows::Forms::MdiClient::typeid)

Mark



QuestionUDP messages Pin
dSolariuM5-Jul-08 3:26
dSolariuM5-Jul-08 3:26 
QuestionRe: UDP messages Pin
Mark Salsbery5-Jul-08 9:31
Mark Salsbery5-Jul-08 9:31 
QuestionDebuging Interop: C# -> C++ Pin
Tomerland4-Jul-08 4:39
Tomerland4-Jul-08 4:39 
AnswerRe: Debuging Interop: C# -> C++ Pin
Tomerland4-Jul-08 4:45
Tomerland4-Jul-08 4:45 
GeneralRe: Debuging Interop: C# -> C++ Pin
Tomerland4-Jul-08 4:55
Tomerland4-Jul-08 4:55 
QuestionTo Get Decimal separator Pin
mikobi4-Jul-08 3:50
mikobi4-Jul-08 3:50 
AnswerRe: To Get Decimal separator Pin
LionAM5-Jul-08 6:34
LionAM5-Jul-08 6:34 
GeneralRe: To Get Decimal separator Pin
mikobi6-Jul-08 23:08
mikobi6-Jul-08 23:08 
QuestionTextBox Format Pin
mikobi3-Jul-08 21:59
mikobi3-Jul-08 21:59 
QuestionIs there anyone use C++/CLI in the real project? Pin
Tal Rasha's Guardianship3-Jul-08 7:26
Tal Rasha's Guardianship3-Jul-08 7:26 
AnswerRe: Is there anyone use C++/CLI in the real project? Pin
Mark Salsbery3-Jul-08 7:39
Mark Salsbery3-Jul-08 7:39 
GeneralRe: Is there anyone use C++/CLI in the real project? Pin
Tal Rasha's Guardianship3-Jul-08 19:04
Tal Rasha's Guardianship3-Jul-08 19:04 
GeneralRe: Is there anyone use C++/CLI in the real project? Pin
Mark Salsbery4-Jul-08 11:17
Mark Salsbery4-Jul-08 11:17 
QuestionWhy is BinaryWriter() is inserting unwanted bytes? Pin
BuckBrown2-Jul-08 6:41
BuckBrown2-Jul-08 6:41 
AnswerRe: Why is BinaryWriter() is inserting unwanted bytes? Pin
Mark Salsbery2-Jul-08 7:31
Mark Salsbery2-Jul-08 7:31 
QuestionVisual c++ NET Application Probleme Pin
mikobi2-Jul-08 2:32
mikobi2-Jul-08 2:32 
AnswerRe: Visual c++ NET Application Probleme Pin
Polar_Sheep2-Jul-08 4:03
Polar_Sheep2-Jul-08 4:03 

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.