システムAPI集

 


GetTickCount

宣言 Declare Function GetTickCount Lib "kernel32" Alias "GetTickCount" () As Long

引数 なし なし

<戻る


SetCursorPos

宣言 Declare Function SetCursorPos Lib "user32" Alias "SetCursorPos" (ByVal x As Long, ByVal y As Long) As Long

引数 X マウスポインタを移動する水平位置
Y マウスポインタを移動する垂直位置

<戻る

ShellExecute

宣言 Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

引数 hwnd ウィンドウのハンドル
lpOperation 不明
lpFile ファイルのパス
lpParamenters 不明
lpDirectory 不明
nShowCmd 不明

<戻る