starting other apps?
-
hi can u guys tell me how i can start another application, for example word? after clicking a button it should start thx
-
hi can u guys tell me how i can start another application, for example word? after clicking a button it should start thx
Take a look at System.Diagnostics Namespace System.Diagnostics.Process vprocess = new System.Diagnostics.Process() vprocess.Start("WINWORD.EXE") Free your mind...
-
hi can u guys tell me how i can start another application, for example word? after clicking a button it should start thx
Or simply
Process.Start
(a static method - an instance ofProcess
isn't necessary). Also, this question has been asked MANY times in the past and even once today just shortly before you asked. Please search the comments before posting.-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
Or simply
Process.Start
(a static method - an instance ofProcess
isn't necessary). Also, this question has been asked MANY times in the past and even once today just shortly before you asked. Please search the comments before posting.-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
How many times have you answered this question ??? :laugh: Free your mind...