Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Status Bar

Status
Not open for further replies.

lashwarj

IS-IT--Management
Nov 1, 2000
1,067
US
I have created a status bar, was wondering how to dump vaule into the panels. It gives you the text box and I placed = username + " / " + userdepartment in it but it shows = username + " / " + userdepartment not the value
 
set message to username + " / " + userdepartment

is this what you are trying to do?? Attitude is Everything
 
Use something like:

THISFORM.StatusBar1.panels(1).TEXT = ;
username + " / " + userdepartment

in the activate event or something.
Dave S.
 
xvar1 = username
xvar2 = userdepartment

THISFORM.STATUSBAR1.PANELS(x).TEXT= xvar1 + '/' + xvar2

where x is the index number of the panel

make sure that both variables are string

Pablo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top