|
V32About()
|
| Displays Windows About
Dialog. |
|
Syntax
|
| V32About( < acInfo >, [
cTitle ] ) |
|
Arguments
|
| < acInfo > is a
one dimentional array of character strings or a character string which
will be used as application's description.
[ cTitle ] character string to be displayed in the title bar of
About dialog. Default is 'Application Info'.
|
|
Returns
|
| NIL |
|
Description
|
| V32About() displays Windows
About Dialog with information contained in < acInfo >. Also the
title bar of the dialog is set to < cTitle > if one is supplied.
This function is usually called as a response to menu item asking for
application information.
|
|
Usage
|
local aInfo_:={}
local cTitle := 'Vouch Windows Interface'
aadd( aInfo_, 'Creative Analysis & Concepts' )
aadd( aInfo_, 'http://www.vouchcac.com' )
V32About( aInfo_, cTitle )
|
|
Tips
|
| Use this function when you
want to display information about your company and/or application. |