実行中のプログラムのパスを取得する

VB6では実行中のプログラムのパスは app.path で得ることができました。
VB2005では Application.ExecutablePath で取得できます。
■例:実行中のプログラムのフルパスを取得する
Dim FullPath As String
FullPath = Application.ExecutablePath
MsgBox(FullPath)
■例:実行中のプログラムのフォルダ名を取得する
Dim FolderName As String
FolderName = Application.StartupPath
MsgBox(FolderName)
■例:実行中のDLLのフルパスを取得する
Dim FullPath As String
FullPath = Me.GetType.Assembly.Location
MsgBox(FullPath)

05. 11月 2006 von memo-log
カテゴリ: プログラミング |

コメント

コメント投稿

Required fields are marked *