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

Managed C++/CLI

 
GeneralRe: [urgent newbie] input streams problem with .NET Pin
kkyeung4-May-06 8:38
kkyeung4-May-06 8:38 
GeneralRe: [urgent newbie] input streams problem with .NET Pin
Saksida Bojan4-May-06 9:31
Saksida Bojan4-May-06 9:31 
QuestionExpose VC++ .Net function to VB .Net Pin
ppanke3-May-06 4:50
ppanke3-May-06 4:50 
AnswerRe: Expose VC++ .Net function to VB .Net Pin
Milton Karimbekallil3-May-06 8:46
Milton Karimbekallil3-May-06 8:46 
GeneralRe: Expose VC++ .Net function to VB .Net Pin
ppanke10-May-06 4:15
ppanke10-May-06 4:15 
GeneralRe: Expose VC++ .Net function to VB .Net Pin
Milton Karimbekallil10-May-06 16:23
Milton Karimbekallil10-May-06 16:23 
QuestionHow to use timeSetEvent in C++/CLI Pin
attias gabi30-Apr-06 20:55
attias gabi30-Apr-06 20:55 
AnswerRe: How to use timeSetEvent in C++/CLI Pin
guestcat2-May-06 2:03
guestcat2-May-06 2:03 
SampleForm::SampleForm()
{
InitForm();
}

void SampleForm::InitForm()
{
Timer* timer1;
timer1 = new Timer();
timer1->Interval = 3000; // 3 seconds resolution
timer1->add_Tick(new EventHandler(this,OnTimer));
timer1->Start();
}


void SampleForm::OnTimer(System::Object* obj,System::EventArgs* ea) //declare as static method in .h file
{
}

^-^
@|@
- redCat
GeneralRe: How to use timeSetEvent in C++/CLI Pin
attias gabi4-May-06 1:26
attias gabi4-May-06 1:26 
GeneralRe: How to use timeSetEvent in C++/CLI Pin
oshah13-May-06 11:31
oshah13-May-06 11:31 
QuestionGetCurrentDirectory() Pin
rahultaing30-Apr-06 14:11
rahultaing30-Apr-06 14:11 
AnswerRe: GetCurrentDirectory() Pin
Milton Karimbekallil30-Apr-06 18:52
Milton Karimbekallil30-Apr-06 18:52 
GeneralRe: GetCurrentDirectory() Pin
Milton Karimbekallil5-May-06 13:28
Milton Karimbekallil5-May-06 13:28 
QuestionGame Programming Pin
Akidomero29-Apr-06 20:07
Akidomero29-Apr-06 20:07 
QuestionHTTP: Pin
Anthony Moss28-Apr-06 5:45
Anthony Moss28-Apr-06 5:45 
AnswerRe: HTTP: Pin
led mike4-May-06 12:26
led mike4-May-06 12:26 
QuestionHow to call unmanaged C++ DLL method with a CString reference Pin
Bo Skjoett27-Apr-06 23:02
Bo Skjoett27-Apr-06 23:02 
AnswerRe: How to call unmanaged C++ DLL method with a CString reference Pin
Milton Karimbekallil28-Apr-06 2:01
Milton Karimbekallil28-Apr-06 2:01 
Questionadding dll Pin
rahultaing25-Apr-06 13:41
rahultaing25-Apr-06 13:41 
AnswerRe: adding dll Pin
2bee 25-Apr-06 23:50
2bee 25-Apr-06 23:50 
GeneralRe: adding dll Pin
George L. Jackson26-Apr-06 9:00
George L. Jackson26-Apr-06 9:00 
Questionspeed data access in server Pin
sabitasamal24-Apr-06 20:40
sabitasamal24-Apr-06 20:40 
Questioni have problems Pin
sieucauthu23-Apr-06 19:12
sieucauthu23-Apr-06 19:12 
AnswerRe: i have problems Pin
Steve Pullan23-Apr-06 19:29
Steve Pullan23-Apr-06 19:29 
GeneralRe: i have problems Pin
sieucauthu23-Apr-06 19:49
sieucauthu23-Apr-06 19:49 

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.