10 lines
306 B
Plaintext
10 lines
306 B
Plaintext
'*
|
|
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
|