Answers for "Application.ExecutablePath VB.NET"

VBA
0

Application.ExecutablePath VB.NET

For that you can use the Application object.

Startup path, just the folder, use Application.StartupPath()

Dim appPath As String = Application.StartupPath()
Full .exe path, including the program.exe name on the end:, use Application.ExecutablePath()

Dim exePath As String = Application.ExecutablePath()
Posted by: Guest on October-26-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language