In Visual Basic 6.0 esiste l'oggetto App che ci fornisce informazioni riguardo la nostra applicazione.
In VB.NET l'oggetto App è sparito ed è comparso il namespace System.Reflection.Assembly.
La seguente funzione recupera il percorso dell'applicazione:
Public Function GetPath() as System.String
Dim Path as System.String
Path = System.Reflection.Assembly.GetExecutingAssembly.Location
Path = Path.Substring(0, Path.LastIndexOf("\"))
GetPath=Path
End Function