Combo box, Command Button, Hyperlink

Ed in Aus

Registered User.
Local time
Tomorrow, 02:59
Joined
Oct 21, 2008
Messages
14
Hi,

Not sure how to approach this but here is what I intend on doing:

I have a combo box that looks up via SQL

Code:
SELECT tblIndustries.ID, tblIndustries.Industry, tblIndustries.Hyperlink
FROM tblIndustries;

what I need is when you hit the a command button "Command87_Click" it goes to the hyperlink in the SQL statement.
 
Hi,

Not sure how to approach this but here is what I intend on doing:

I have a combo box that looks up via SQL

Code:
SELECT tblIndustries.ID, tblIndustries.Industry, tblIndustries.Hyperlink
FROM tblIndustries;

what I need is when you hit the a command button "Command87_Click" it goes to the hyperlink in the SQL statement.

try:

Application.FollowHyperlink Me.ComboBoxName.Column(2)
 
Thank you that worked perfectly
 

Users who are viewing this thread

Back
Top Bottom