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 182 views
1 answer 239 views
1 answer 195 views
1 answer 214 views
1 answer 237 views
...