Thanks [EMAIL PROTECTED] So it seems there is no toggle for the help tag, and I'll have to code them all in . I was afraid of that, but its do-able. Thanks. Greg
> >I see how to set the help tag for a listbox, but it seems to set it to a > >sting. Is there a way to toggle it on or off? I would like to make a > >preference to > >show them all or hide them all. > > Write a method to populate or empty the helptags : > > Sub ShowHelptags (helpvisible as boolean) > if helpvisible then > Listbox1.Helptag = "Do this!" > //othercontrol.Helptag = "Do that" > //etc. > else > Listbox1.Helptag = "" > //othercontrol.Helptag = "" > //etc. > end > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
