Click here to Skip to main content
16,004,944 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Managed C++ with MFC Pin
ksandy4527-Nov-06 21:00
ksandy4527-Nov-06 21:00 
GeneralRe: Managed C++ with MFC Pin
Christian Graus27-Nov-06 21:17
protectorChristian Graus27-Nov-06 21:17 
GeneralRe: Managed C++ with MFC Pin
ksandy4528-Nov-06 17:32
ksandy4528-Nov-06 17:32 
GeneralRe: Managed C++ with MFC Pin
Christian Graus28-Nov-06 17:51
protectorChristian Graus28-Nov-06 17:51 
GeneralRe: Managed C++ with MFC Pin
ksandy4529-Nov-06 20:58
ksandy4529-Nov-06 20:58 
QuestionQuerying/Manipulating Active Directory with C++ Pin
CNewbie24-Nov-06 16:14
CNewbie24-Nov-06 16:14 
Question.Net User C++ /CLI issue Pin
dreamz648023-Nov-06 19:21
dreamz648023-Nov-06 19:21 
AnswerRe: .Net User C++ /CLI issue Pin
George L. Jackson27-Nov-06 12:06
George L. Jackson27-Nov-06 12:06 
C++/CLI does not allow you directly access or override the Dispose method. You use a destructor (dtor) and a finalize destructor in your C++/CLI code. You explicitly dispose of the object's resources by using "delete". Since the finalize destructor does not get called if you use "delete", you should call the finalize destructor explicitly from the destructor if you have clean up code in the finalize destructor.

ref class Test
{
public:
~Test()
{
// free all managed and unmanaged resources and memory
}
protected:
!Test()
{
// free all unmanaged resources and memory only
}
};
QuestionHow to make indow form in C++ Pin
Yogesh Bhagchandani23-Nov-06 3:42
Yogesh Bhagchandani23-Nov-06 3:42 
AnswerRe: How to make indow form in C++ Pin
Christian Graus23-Nov-06 9:11
protectorChristian Graus23-Nov-06 9:11 
GeneralRe: How to make indow form in C++ Pin
Yogesh Bhagchandani24-Nov-06 2:24
Yogesh Bhagchandani24-Nov-06 2:24 
GeneralRe: How to make indow form in C++ Pin
Christian Graus24-Nov-06 9:36
protectorChristian Graus24-Nov-06 9:36 
GeneralRe: How to make indow form in C++ Pin
Yogesh Bhagchandani25-Nov-06 0:08
Yogesh Bhagchandani25-Nov-06 0:08 
GeneralRe: How to make indow form in C++ Pin
Christian Graus25-Nov-06 12:01
protectorChristian Graus25-Nov-06 12:01 
QuestionUsing CWinFormsControl in MFC Projects Pin
dreamz648022-Nov-06 2:43
dreamz648022-Nov-06 2:43 
AnswerRe: Using CWinFormsControl in MFC Projects Pin
Nish Nishant22-Nov-06 4:49
sitebuilderNish Nishant22-Nov-06 4:49 
QuestionCreate pdf file in ANSI C Pin
c4u22-Nov-06 2:20
c4u22-Nov-06 2:20 
AnswerRe: Create pdf file in ANSI C Pin
Christian Graus23-Nov-06 9:12
protectorChristian Graus23-Nov-06 9:12 
QuestionRunning an exe from Windows Services Pin
nsurendran21-Nov-06 21:31
nsurendran21-Nov-06 21:31 
AnswerRe: Running an exe from Windows Services Pin
Michael Dunn21-Nov-06 22:38
sitebuilderMichael Dunn21-Nov-06 22:38 
GeneralRe: Running an exe from Windows Services Pin
nsurendran22-Nov-06 1:14
nsurendran22-Nov-06 1:14 
GeneralRe: Running an exe from Windows Services Pin
Michael Dunn22-Nov-06 12:21
sitebuilderMichael Dunn22-Nov-06 12:21 
QuestionRe: Running an exe from Windows Services Pin
nsurendran23-Nov-06 0:39
nsurendran23-Nov-06 0:39 
Questionmaarunga saale Pin
golem_200621-Nov-06 19:31
golem_200621-Nov-06 19:31 
AnswerRe: maarunga saale Pin
Paul Conrad28-Nov-06 14:56
professionalPaul Conrad28-Nov-06 14: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.