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

Managed C++/CLI

 
GeneralDeclaring indexed property in C++ Class Library Pin
fin21-Jan-04 12:51
fin21-Jan-04 12:51 
GeneralMystery solved Pin
fin21-Jan-04 17:23
fin21-Jan-04 17:23 
GeneralConverting a Byte[ ] into a User Defined Structure Pin
olstuff21-Jan-04 6:46
sussolstuff21-Jan-04 6:46 
GeneralRe: Converting a Byte[ ] into a User Defined Structure Pin
toxcct27-Jan-04 3:57
toxcct27-Jan-04 3:57 
GeneralDynamically invoking classes Pin
Tank_Aviator20-Jan-04 12:49
Tank_Aviator20-Jan-04 12:49 
GeneralRe: Dynamically invoking classes Pin
Nik Vogiatzis21-Jan-04 19:41
Nik Vogiatzis21-Jan-04 19:41 
Generalswfsource: errorLNK2005 Pin
adarsh_sebiz18-Jan-04 18:15
adarsh_sebiz18-Jan-04 18:15 
Generalswfsource: error2664 Pin
adarsh_sebiz18-Jan-04 17:36
adarsh_sebiz18-Jan-04 17:36 
GeneralRe: swfsource: error2664 Pin
IceBerG7126-Jan-04 14:55
IceBerG7126-Jan-04 14:55 
GeneralRe: swfsource: error2664 Pin
adarsh_sebiz26-Jan-04 23:21
adarsh_sebiz26-Jan-04 23:21 
Generalsockets VC++ 6.0 and C# Pin
mduarte17-Jan-04 18:42
mduarte17-Jan-04 18:42 
GeneralRe: sockets VC++ 6.0 and C# Pin
Mazdak17-Jan-04 19:30
Mazdak17-Jan-04 19:30 
GeneralRe: sockets VC++ 6.0 and C# Pin
mduarte17-Jan-04 20:17
mduarte17-Jan-04 20:17 
GeneralRe: sockets VC++ 6.0 and C# Pin
Mazdak17-Jan-04 20:54
Mazdak17-Jan-04 20:54 
GeneraleTraping windows messages Pin
Member 12103317-Jan-04 4:43
Member 12103317-Jan-04 4:43 
GeneralStandard C++ DLL Pin
dcasmey16-Jan-04 5:25
dcasmey16-Jan-04 5:25 
GeneralRe: Standard C++ DLL Pin
fin21-Jan-04 13:07
fin21-Jan-04 13:07 
GeneralRe: Standard C++ DLL Pin
dcasmey21-Jan-04 13:27
dcasmey21-Jan-04 13:27 
GeneralMessageboxes in managed C++ Pin
tom7615-Jan-04 23:42
tom7615-Jan-04 23:42 
How on earth do you call them? I've tried all sorts of methods, the latest being
MessageBox::Show("Text", "More text");

from a tutorial on the site but I just get compiler errors like
MessageBoxA is not a class or namespace name
or MessageBox is not a part of System::Windows::Forms (when intellisense tells you it is).

The onlt way to do it so far it via
#prgama unmanaged
void CallMsgBox()
{
MessageBox(NULL, "Old style msg box", "Caption", MB_OK);
}
#pragma managed

So how do you call it???

Thanks

Obseve everything, remember more...
GeneralRe: Messageboxes in managed C++ Pin
leppie16-Jan-04 6:04
leppie16-Jan-04 6:04 
GeneralRe: Messageboxes in managed C++ Pin
Nathan Blomquist26-Jan-04 14:47
Nathan Blomquist26-Jan-04 14:47 
GeneralRe: Messageboxes in managed C++ Pin
bollwerj6-Feb-04 4:41
bollwerj6-Feb-04 4:41 
GeneralResolving NetBIOS name for IP address Pin
---Ranger---14-Jan-04 22:51
---Ranger---14-Jan-04 22:51 
GeneralNamespace Extension Starting point help please Pin
Paul Farry11-Jan-04 20:42
professionalPaul Farry11-Jan-04 20:42 
QuestionIs there a similar to MFC property pages in .net UserControl? Pin
Daed8-Jan-04 2:40
Daed8-Jan-04 2:40 

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.