App.Path

  • Thread starter Thread starter Chip
  • Start date Start date
C

Chip

How do you find the directory you are in such as the old way of "App.Path"
form VB6 using VB.Net?
 
Environment.CurrentDirectory() ...
Process.GetCurrentProcess.MainModule.ModuleName
ProcessName = Path.GetFileNameWithoutExtension(ModuleName)


HTH,



Bill
 
* "Chip said:
How do you find the directory you are in such as the old way of "App.Path"
form VB6 using VB.Net?

See my reply in the other group. Please don't multipost.
 
Back
Top