Spira
Registered User.
- Local time
- Today, 15:41
- Joined
- Feb 23, 2004
- Messages
- 35
hi i have got a problem with a customised help feature for my database. when i click on the label i would like the label to expand to show the help feature related to that topic.
I have to following code so far that displays the lables when clicked on cmdHelp. The text that i would like to display when i click on the label is in bold italic underlined.
thanks
I have to following code so far that displays the lables when clicked on cmdHelp. The text that i would like to display when i click on the label is in bold italic underlined.
thanks
Code:
Private Sub CmdHelp_Click()
'this is the help #balloon# feature which brings up the wizard
With Assistant.NewBalloon
.Heading = "System Care Help: MainMenu"
.Text = "You have the following choices"
.Labels(1).Text = "Help On Administrator Menu"
[U][I][B]You must be logged on as the administrator to access this menu"[/B][/I][/U]
.Show
End With