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

Managed C++/CLI

 
AnswerRe: Double Buffering in Managed C++ Pin
Jun Du10-Jul-06 4:18
Jun Du10-Jul-06 4:18 
GeneralRe: Double Buffering in Managed C++ Pin
Pavan Rao10-Jul-06 4:24
Pavan Rao10-Jul-06 4:24 
GeneralRe: Double Buffering in Managed C++ Pin
Sebastian Schneider10-Jul-06 4:45
Sebastian Schneider10-Jul-06 4:45 
GeneralRe: Double Buffering in Managed C++ Pin
mertadin21-Jul-06 3:13
mertadin21-Jul-06 3:13 
QuestionTAPI v dot net Pin
flippydeflippydebop8-Jul-06 20:55
flippydeflippydebop8-Jul-06 20:55 
QuestionCan I use a vector of class objects? Pin
Suddha Talukdar8-Jul-06 13:07
Suddha Talukdar8-Jul-06 13:07 
QuestionOwner drawn button in VC++ 2005 Pin
cshell497-Jul-06 4:09
cshell497-Jul-06 4:09 
AnswerRe: Owner drawn button in VC++ 2005 [modified] Pin
Nagaraju_Focus7-Jul-06 18:29
Nagaraju_Focus7-Jul-06 18:29 
Go through this code, it may help

array<Button^,2>^ myButton = gcnew array<Button^>(10)(10);
myButton[0][0]=gcnew Button();
myButton[0][0]->Location = System::Drawing::Point(300, 189);
myButton[0][0]->Name = L"button123";
myButton[0][0]->Size = System::Drawing::Size(148, 41);
myButton[0][0]->TabIndex = 1;
myButton[0][0]->Text = L"Added";
myButton[0][0]->UseVisualStyleBackColor = true;
this->Controls->Add(myButton[0]);
this->myButton[0][0]Blush | :O ->Click += gcnew System::EventHandler(this, Form1::button123_Click);

Nagaraju

-- modified at 0:29 Saturday 8th July, 2006
GeneralRe: Owner drawn button in VC++ 2005 Pin
cshell497-Jul-06 18:54
cshell497-Jul-06 18:54 
QuestionConvertint .Pdf to .txt file Pin
Nagaraju_Focus7-Jul-06 0:30
Nagaraju_Focus7-Jul-06 0:30 
Questionexporting int array from c++ dll to c# client Pin
Tugberk_Kara6-Jul-06 21:06
Tugberk_Kara6-Jul-06 21:06 
QuestionCan I use an MFC GUI component in .Net using managed C++? Pin
gunag6-Jul-06 4:42
gunag6-Jul-06 4:42 
QuestionNeed help in creating a pop-up window Pin
veenu_kvm5-Jul-06 1:25
veenu_kvm5-Jul-06 1:25 
AnswerRe: Need help in creating a pop-up window Pin
Jun Du5-Jul-06 3:59
Jun Du5-Jul-06 3:59 
GeneralRe: Need help in creating a pop-up window Pin
veenu_kvm5-Jul-06 19:23
veenu_kvm5-Jul-06 19:23 
GeneralRe: Need help in creating a pop-up window Pin
Jun Du6-Jul-06 3:34
Jun Du6-Jul-06 3:34 
GeneralRe: Need help in creating a pop-up window Pin
Nagaraju_Focus7-Jul-06 21:30
Nagaraju_Focus7-Jul-06 21:30 
Question#pragma warning in projects settings Pin
manustone5-Jul-06 0:49
manustone5-Jul-06 0:49 
AnswerRe: #pragma warning in projects settings Pin
earl5-Jul-06 12:33
earl5-Jul-06 12:33 
GeneralRe: #pragma warning in projects settings Pin
manustone5-Jul-06 21:52
manustone5-Jul-06 21:52 
QuestionConnecting to database Pin
veenu_kvm4-Jul-06 18:20
veenu_kvm4-Jul-06 18:20 
GeneralRe: Connecting to database Pin
_AnsHUMAN_ 4-Jul-06 19:41
_AnsHUMAN_ 4-Jul-06 19:41 
GeneralRe: Connecting to database Pin
veenu_kvm4-Jul-06 20:12
veenu_kvm4-Jul-06 20:12 
GeneralRe: Connecting to database Pin
earl5-Jul-06 12:35
earl5-Jul-06 12:35 
Questionwriting a wrapper for c++ unmanged dll Pin
A55imilate3-Jul-06 22:56
A55imilate3-Jul-06 22: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.