Systemディレクトリを取得
<DLLなんかをコピーするのに便利>
宣 言 |
(Private) Declare Function GetSystemDirectory Lib "KERNEL32" Alias "GetSystemDirectoryA" (ByVal lpBuffer$, ByVal nSize&) As Long |
引 数 説 明 |
SysDir |
String |
Systemディレクトリを格納する文字列 |
Size |
Long |
SysDirのサイズ |
サ ン プ ル プ ロ グ ラ ム |
プログラムを張りつけ実行するとSystemディレクトリを表示して終了します。
動作確認:Visual Basic 5.0,Windows98
Private Declare Function GetSystemDirectory Lib "KERNEL32" Alias "GetSystemDirectoryA"
(ByVal lpBuffer$, ByVal nSize&) As Long Private Sub Form_Load() Dim SysDir As String * 255 GetSystemDirectory SysDir, 255 MsgBox SysDir End End Sub |