|
-
Feb 4th, 2000, 06:20 PM
#2
Thread Starter
Addicted Member
Never mind I figured it out.
Code:
Private Sub mnuOnOff_Click()
If mnuOnOff.Caption = "Turn tool tips off" Then
lblIssues.ToolTipText = ""
lblDetails.ToolTipText = ""
lblAdd.ToolTipText = ""
optResolved.ToolTipText = ""
optUnresolved.ToolTipText = ""
mnuOnOff.Caption = "Turn tool tips on"
Else
lblIssues.ToolTipText = "Choose an Issue from the list below."
lblDetails.ToolTipText = "Issue details following the requested 1,2,3 format."
lblAdd.ToolTipText = "Add your additional comments here."
optResolved.ToolTipText = "Has the issue been resolved?"
optUnresolved.ToolTipText = "Has the issue been resolved?"
mnuOnOff.Caption = "Turn tool tips off"
End If
Thanks though
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|