OL_95AppTitle()
Set/get the Windows 95 application title.
──────────────────────────────────────────────────────────────────────────────

Syntax

OL_95AppTitle( [<cNew>] ) --> cOld

Arguments

<cNew> is the optional new title.

Returns

The current title.

Description

OL_95AppTitle() can be used to set/get the application title. This is
the right hand text you see displayed on a DOS session's title bar.

NOTE: Because this function needs to do some extra stuff when your
application is running in protected mode I've had to make use of
the CPMI library. You must link this in if you intend to use
this function, even if you are linking for real mode operation.

Examples

// Fiddle with the application title.

Local cOldTitle := OL_95AppTitle( "Month end routine" )

MonthEnd()
OL_95AppTitle( cOldTitle )

Source: WIN95.C

Author: Dave Pearson