Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.05 KB

ShellAbout.md

File metadata and controls

53 lines (38 loc) · 1.05 KB

Home

Function name : ShellAbout

Group: Shell Functions - Library: shell32


Displays a Shell About dialog box


Declaration:

int ShellAbout (
	HWND    hWnd,         // handle of parent window
	LPCTSTR szApp,        // title bar and first line text
	LPCTSTR szOtherStuff, // other dialog text
	HICON   hIcon         // icon to display
);  

FoxPro declaration:

DECLARE INTEGER ShellAbout IN shell32;
	INTEGER hwnd,;
	STRING  szApp,;
	STRING  szOtherStuff,;
	INTEGER hIcon  

Parameters:

hWnd Identifies a parent window

szApp Points to text that the function displays in the title bar of the Shell About dialog box

szOtherStuff Points to text that the function displays in the dialog box after the version and copyright information

hIcon Identifies an icon that the function displays in the dialog box


Return value:

If the function succeeds in displaying the dialog box, the return value is TRUE