How to open text file with windows notepad in VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Shell("notepad D:\data.txt", AppWinStyle.NormalFocus)

    End Sub

End Module


' run:
' 
' 

 



answered Oct 4, 2018 by avibootz

Related questions

1 answer 237 views
1 answer 222 views
222 views asked Oct 5, 2018 by avibootz
1 answer 201 views
1 answer 200 views
1 answer 200 views
...