Multiple URL's

  • Thread starter Thread starter Deltic
  • Start date Start date
D

Deltic

I have a database where there are several command buttons, each linked
to a specific URL, which all works fine and users of the database are
able to open different web based programmes. One user has pointed out
that in fact in 90% of cases the users all open the same 4 or 5
applications, and have asked if it is possible to have a "one touch
button" that would in fact open multiple web based programmes.
I have tried entering each URL followed by a colon, which did not
work, I have tried seperating them with a semi colon, again failure, i
have also tried various combinations of spaces, colons, semi colons
etc without any luck.
I am begining to think one command button cannot open more than one
URL at a time, however im no expert and may be missing something
glaringly obvious.
Can any one help ? Do i need something other than a command button?

Thanks in advance
 
In the click event of the button put this code

Application.FollowHyperlink "http:\\www.google.co.uk", , True
Application.FollowHyperlink "http:\\bbc.co.uk", , True
etc.
 
Back
Top