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

Managed C++/CLI

 
AnswerRe: What are the difference between these Main function in MC++? Pin
Anonymous27-Dec-04 9:35
Anonymous27-Dec-04 9:35 
GeneralExecuting Application Pin
Rich Wright24-Dec-04 4:51
Rich Wright24-Dec-04 4:51 
GeneralRe: Executing Application Pin
Christian Graus5-Jan-05 11:47
protectorChristian Graus5-Jan-05 11:47 
GeneralHelp required on clustering Pin
proteas20-Dec-04 0:01
proteas20-Dec-04 0:01 
GeneralManaged .NET DLL with c++ Pin
BeerFizz19-Dec-04 7:04
BeerFizz19-Dec-04 7:04 
GeneralRe: Managed .NET DLL with c++ Pin
ursus zeta21-Dec-04 12:33
ursus zeta21-Dec-04 12:33 
GeneralRe: Managed .NET DLL from UnManaged c++ Pin
BeerFizz24-Dec-04 0:45
BeerFizz24-Dec-04 0:45 
GeneralSorry, Holidays. Pin
ursus zeta4-Jan-05 12:47
ursus zeta4-Jan-05 12:47 
BeerFizz,
Sorry, I didn't respond, holiday vacation.
On reading your second message, I too am mystified.
If you compiled your code with the /clr compiler option, then you have created a managed application. If you pasted the DLL into your project directory, the compiler should be referencing it and your Intellisense would be showing you the way.
Did you open the DLL with the IL Disassembler? This is a terrific utility, and it will give you access to all metadata (which is exactly what your compiler does), and you can read through the entire DLL. The DLLs often have a namespace associated with the types defined in the library, and you will have to add a 'using namespace whatever' directive in your code.
Then you merely instantiate the objects you need using the new operator, assigning this to a pointer in your own code. To then call functions and data members of the object, you use the pointer-to-member operator (->).
Once you have instantiated an object, Intellisense should show you all the data and function members available.
It's supposed to be pretty simple.
Generaldeclaring arrays in function (please help) Pin
Toximus19-Dec-04 6:06
Toximus19-Dec-04 6:06 
GeneralRe: declaring arrays in function (please help) Pin
Christian Graus20-Dec-04 9:31
protectorChristian Graus20-Dec-04 9:31 
Generalwant the source code of this riddle! Pin
babur khan18-Dec-04 22:03
babur khan18-Dec-04 22:03 
GeneralRe: want the source code of this riddle! Pin
SteveKing27-Dec-04 5:56
SteveKing27-Dec-04 5:56 
GeneralNetwork related Pin
Rawshid18-Dec-04 20:24
Rawshid18-Dec-04 20:24 
Generalsingle words Pin
Johny Smith18-Dec-04 8:14
Johny Smith18-Dec-04 8:14 
GeneralCombo box item - using variable values Pin
Rich Wright16-Dec-04 22:24
Rich Wright16-Dec-04 22:24 
GeneralNET syntax takes some getting used to Pin
ursus zeta18-Dec-04 11:06
ursus zeta18-Dec-04 11:06 
GeneralRe: NET syntax takes some getting used to Pin
Rich Wright24-Dec-04 4:15
Rich Wright24-Dec-04 4:15 
GeneralC++ and Oracle Pin
jithen_dt16-Dec-04 20:17
jithen_dt16-Dec-04 20:17 
GeneralRe: C++ and Oracle Pin
Christian Graus17-Dec-04 19:38
protectorChristian Graus17-Dec-04 19:38 
GeneralConverting int to Hex String Pin
MKlucher16-Dec-04 8:49
MKlucher16-Dec-04 8:49 
GeneralRe: Converting int to Hex String Pin
wwwhb200016-Dec-04 17:11
wwwhb200016-Dec-04 17:11 
GeneralRe: Converting int to Hex String Pin
VKatti17-Dec-04 2:18
VKatti17-Dec-04 2:18 
GeneralRe: Converting int to Hex String Pin
MKlucher17-Dec-04 20:32
MKlucher17-Dec-04 20:32 
GeneralRe: Converting int to Hex String Pin
wb18-Dec-04 9:41
wb18-Dec-04 9:41 
GeneralRe: Converting int to Hex String Pin
MKlucher19-Dec-04 10:56
MKlucher19-Dec-04 10: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.