S
Sandy H
I have created a little form based help screen and I am just having a minor
problem.
I have a form with a list box on it. The list box has three columns but only
the second one is visible.
HelpID Topic LinkName
1 Introduction Hintro
2 Main Features HFeatures
3 Other Features HOther
etc
The LinkName is the name of a hidden label (with the help info) on the form.
When the user clicks a list item, it does the following:
Dim strName As String
strName = Me.lstHelp.Column(2)
Me.strName.Visible = True
This doesn't work and I get a syntax error in the last line. What is the
correct way to write this code.
Thanks in advance.
Sandy
problem.
I have a form with a list box on it. The list box has three columns but only
the second one is visible.
HelpID Topic LinkName
1 Introduction Hintro
2 Main Features HFeatures
3 Other Features HOther
etc
The LinkName is the name of a hidden label (with the help info) on the form.
When the user clicks a list item, it does the following:
Dim strName As String
strName = Me.lstHelp.Column(2)
Me.strName.Visible = True
This doesn't work and I get a syntax error in the last line. What is the
correct way to write this code.
Thanks in advance.
Sandy