Linking to another site/page?
Posted: Mon Jan 04, 2016 11:51 am
Hey.
How can I use a hyperlink to link to another site or page?
How can I use a hyperlink to link to another site or page?
Code: Select all
Shared link
Procedure WindowGadget ()
Select EventGadget ()
Case link
; what to do to link to say google.com ?
EndSelect
EndProcedure
OpenWindow (#PB_Any, 0, 0, 0, 0, "", #PB_Window_Background)
BindEvent (#PB_Event_Gadget, @WindowGadget ())
link = HyperLinkGadget (#PB_Any, 0, 0, 200, 20, "Click me!", RGB (0, 0, 0))