ShellAbout

機能
アバウトダイアログボックスを表示する
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)