Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Website 1

Status
Not open for further replies.

krnsmartazz

Technical User
Dec 13, 2001
134
0
0
US
i have a text box named word.
And a command button named lookup.
when a user clicks the command button how can i make it so it adds the text inside WORD and adds it to
after the equals should be the word in the text box.
then open it in a new browser
 
Is this what you need?

Private Sub Command2_Click()
Dim a As String
Dim b As String
Dim c As String

Text0.SetFocus
a = ("b = Text0.Text

c = a + b

Application.FollowHyperlink (c)

End Sub
David Lerwill
"If at first you don't succeed go to the pub"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top