Jim
Fri Apr 30 00:44:47 CDT 2004
The subject is rather broad, but I'll suggest using a listbox
or a combobox which lists topics. You can then use the
Combo1_Click() event to display information into a
textbox based upon the selected Index.
Private Sub Combo1_Click()
'display topic in text box
If Combo1.ListIndex = 0 Then
'Display topic 1
Text1.Text = "This is first topic one."
End If
End Sub
Hope that helps.
--
Jim Carlock
http://www.microcosmotalk.com/
Post replies to the newsgroup.
"jaYPee" <hijaypee@yahoo.com> wrote in message
news:fh5390prv6ok23fsp9j2022k648nia61u5@4ax.com...
anyone know how can i create a link say for example i have a list of
topic in the content same thing w/ encarta and i want that after
clicking the topic it will go to the content of that topic.
just like in webpage. we have to create an anchor so that we can
follow the link
thanks in advance