Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
How to OPen a File in VB.NET
Name: besttech01 Date: July 18, 2005 at 21:29:32 Pacific OS: WinXP/ Fedora CPU/Ram: 2.4/512
Comment:
Hello, I would like to know what do I enter in VB.NET script so when I click button1 it opens up the file "C:\test.exe".
Name: Chi Happens Date: July 19, 2005 at 02:30:14 Pacific
Reply:
Dim Proc As New System.Diagnostics.Process Proc.StartInfo.WorkingDirectory = "C:\" Proc.StartInfo.FileName = "test.exe" Proc.Start()
Chi
They mostly come at night...mostly.
0
Response Number 2
Name: besttech01 Date: July 23, 2005 at 16:19:48 Pacific
Reply:
When I paste this code in VB and exec the program, test.exe opens up but all I see is a blank cmd window titled "C:\test.exe". I know it is working because Esc 2 times and Y (for yes) quits the program like it should. So it is working, but with a blank output window. Any ideas?
Summary: does anyone know how to clear a textbox in asp.net using visualstudio 2002 version in C#. I have used the visual studio version 2003 and in the help files there is a method. But it does not run in the...
Summary: Hello everybody. I am trying to create a string that has columns with the use of the tab. In VB6 it was something like : string 3 =string1 & tab(5) & string2 & tab(10) so with the above example i woul...