Open another program/software [modified]
-
Hi, Do anyone of u know how to open another program/software from a vb.net project? For example, if the user click a certain button, it will cause a program(paint, for example) to open. Is it possible to do that? -- modified at 10:53 Monday 3rd July, 2006
-
Hi, Do anyone of u know how to open another program/software from a vb.net project? For example, if the user click a certain button, it will cause a program(paint, for example) to open. Is it possible to do that? -- modified at 10:53 Monday 3rd July, 2006
System.Diagnostics.process.Start("paint.exe") '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd
-
System.Diagnostics.process.Start("paint.exe") '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd
Thanks