-
Difference Between Environment.CurrentDirectory And Application.ExecutablePath
here i am using simple windows application. steps: 1) Create Simple Windows Application using VB.net 2.0. 2) put the button (id=button1) on the form. 3) On the Button Click Event put the below code. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ‘get the EnvironmentPath MsgBox(” EnvironmentPath ” & Environment.CurrentDirectory.ToString()) ‘get…