アバウトダイアログボックスを表示する
Declare Function ShellAbout Lib "shell32.dll" Alias "ShellAboutA" _
(ByVal hWnd As Long, ByVal szApp As String, ByVal szOtherStuff As String, _
ByVal hIcon As Long) As Long
Declare Function ShellAbout Lib "shell32.dll" Alias "ShellAboutA" _
(ByVal hWnd As Integer, ByVal szApp As String, ByVal szOtherStuff As String, _
ByVal hIcon As Integer) As Integer
int ShellAbout (
HWND hWnd,
LPCTSTR szApp,
LPCTSTR szOtherStuff,
HICON hIcon
);
引数
hWnd
親ウィンドウのハンドルszApp
タイトルバーに表示する文字列szOtherStuff
バージョンとコピーライト情報の後ろに表示する文字列hIcon
ダイアログに表示するアイコンのハンドル(0のときMicrosoftのロゴアイコン)サンプル
ダウンロード(ShellAbout.lzh 1.34KB)