10 lines
306 B
VB.net
10 lines
306 B
VB.net
'*
|
|
Imports System.Reflection
|
|
Imports System.IO
|
|
Module Globals
|
|
Public Function ApplicationPath() As String
|
|
'Return Path.GetDirectoryName([Assembly].GetExecutingAssembly().Location)
|
|
Return Path.GetDirectoryName([Assembly].GetEntryAssembly().Location) + "\"
|
|
End Function
|
|
End Module
|