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

Managed C++/CLI

 
GeneralRe: Isapi Filters and Extensions is managed C++ Pin
martinbertolino22-Aug-03 6:37
martinbertolino22-Aug-03 6:37 
GeneralGetting BIOS Information Pin
Member 1115560721-Aug-03 7:39
Member 1115560721-Aug-03 7:39 
GeneralRe: Getting BIOS Information Pin
leppie21-Aug-03 10:06
leppie21-Aug-03 10:06 
GeneralRe: Getting BIOS Information Pin
FlyingDancer4-Sep-03 14:28
FlyingDancer4-Sep-03 14:28 
GeneralRe: Getting BIOS Information Pin
leppie5-Sep-03 6:59
leppie5-Sep-03 6:59 
QuestionHow to convert from .DOC to .PDF, please help me .......... Pin
Atif Bashir16-Aug-03 1:41
Atif Bashir16-Aug-03 1:41 
GeneralThreads with Form updates Pin
MoonWa13-Aug-03 23:44
MoonWa13-Aug-03 23:44 
GeneralRe: Threads with Form updates Pin
edx_fa22-Aug-03 1:12
edx_fa22-Aug-03 1:12 
You can just add a thread function to your form class:

public __gc class T3DConfiguration : public System::Windows::Forms::Form {
    ...
    void      ThreadProc ();
    ...
};


And then start the thread like this:

System::Thread *t = new System::Thread (new System.ThreadStart (this, YourForm::ThreadProc));

t->Start ();


Inside the thread procedure you can acces your form as you like. It does not have to be static.
GeneralDisplaying an image Pin
Tom Archer13-Aug-03 14:45
Tom Archer13-Aug-03 14:45 
GeneralRe: Displaying an image Pin
igor196025-Aug-03 7:47
igor196025-Aug-03 7:47 
GeneralRe: Displaying an image Pin
Tom Archer25-Aug-03 7:51
Tom Archer25-Aug-03 7:51 
Generalwchar array or String to unsigned char array Pin
Gomac10-Aug-03 8:31
Gomac10-Aug-03 8:31 
GeneralRe: wchar array or String to unsigned char array Pin
edx_fa22-Aug-03 1:01
edx_fa22-Aug-03 1:01 
GeneralRaw Image to Bitmap object Pin
bwells10-Aug-03 4:23
bwells10-Aug-03 4:23 
GeneralRe: Raw Image to Bitmap object Pin
Nick Parker10-Aug-03 4:53
protectorNick Parker10-Aug-03 4:53 
GeneralRe: Raw Image to Bitmap object Pin
bwells11-Aug-03 14:54
bwells11-Aug-03 14:54 
QuestionDebugging -- looking at managed memory? Pin
Jeremy Osner6-Aug-03 4:40
Jeremy Osner6-Aug-03 4:40 
GeneralProcess.StartTime Pin
kurnaziso6-Aug-03 1:52
kurnaziso6-Aug-03 1:52 
General:: Prototyping a Derived Class :: Pin
Anonymous3-Aug-03 18:21
Anonymous3-Aug-03 18:21 
GeneralRe: :: Prototyping a Derived Class :: Pin
leppie4-Aug-03 7:09
leppie4-Aug-03 7:09 
GeneralRe: :: Prototyping a Derived Class :: Pin
Anonymous4-Aug-03 7:33
Anonymous4-Aug-03 7:33 
GeneralRe: :: Prototyping a Derived Class :: Pin
Anonymous4-Aug-03 7:48
Anonymous4-Aug-03 7:48 
GeneralRe: :: Prototyping a Derived Class :: Pin
Jörgen Sigvardsson20-Aug-03 11:39
Jörgen Sigvardsson20-Aug-03 11:39 
Generalwin98 applications with C++.NET Pin
nikoladsp2-Aug-03 19:15
nikoladsp2-Aug-03 19:15 
GeneralRe: win98 applications with C++.NET Pin
J. Dunlap2-Aug-03 19:19
J. Dunlap2-Aug-03 19:19 

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.