S seanvoth Well-known member Joined Aug 5, 2006 Messages 58 Programming Experience 1-3 Jan 29, 2007 #1 i have a txt file and for some reson my code dont work VB.NET: open C:/.....
Arg81 Well-known member Joined Mar 11, 2005 Messages 949 Location Midlands, UK Programming Experience 1-3 Jan 30, 2007 #2 for a start you are using / instead of \ Secondly, you can use Process to open files - VB.NET: Public Sub btnOpen_click..........handles btnOpen.click Process.Start("c:\thisfile.txt") end sub Upvote 0 Downvote
for a start you are using / instead of \ Secondly, you can use Process to open files - VB.NET: Public Sub btnOpen_click..........handles btnOpen.click Process.Start("c:\thisfile.txt") end sub