A couple of API functions to change the title and footers 
of the active window. Freeware - use and enjoy.

Geoffrey Crawshaw
Absolute Software
1185 Turnpike St
Stoughton, Ma 02072
CIS: 71301,550
(617) 341-5407

Name:	_WNWTITLE
Use : 	Changes the title of the active window
Parm:  	text to change the title to. Null string to remove title
Exmp:	=_WNWTITLE('New title for active window')
Note: 	Works on both system and user defined windows

Name:	_WNWFOOT
Use : 	Changes the footer of the active window
Parm:  	text to change the footer to. Null string to remove footer
Exmp:   =_WNWFOOT('New footer for active window')
Note: 	Works on both system and user defined windows

*************************************************************************
*Example foxpro code
*************************************************************************
SET LIBRARY TO wintitle.plb                      &&Include path if needed

DEFINE WINDOW test FROM;
	SROW()/2-5,SCOL()/2-30 TO;
	SROW()/2+5,SCOL()/2+30;
	TITLE 'Old title' FOOTER 'Old footer';
	SHADOW FLOAT
ACTIVATE WINDOW test

WAIT 'Press any key to see window title and footer change'
=_wnwtitle('***New Title***')
=_wnwfoot('***New Footer***')
WAIT 'Press any key to quit'

RELEASE WINDOW test
*************************************************************************
