How to open text file with default windows text editor in VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Process.Start("d:\data.txt")

    End Sub

End Module


' run:
' 
' 

 



answered Oct 3, 2018 by avibootz

Related questions

1 answer 197 views
1 answer 250 views
1 answer 202 views
1 answer 224 views
1 answer 246 views
...