App.Path

  • Thread starter Thread starter T Cordon
  • Start date Start date
* "T Cordon said:
What happened to App.Path how do I get that info now?

\\\
Imports System.IO
Imports System.Reflection
..
..
..
Private Function ApplicationPath() As String
Return _
Path.GetDirectoryName([Assembly].GetExecutingAssembly().Location)
End Function
///
 
Back
Top