Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread New tab from a button press
Sun, Mar 15 2020 7:32 AMPermanent Link

Matthew Jones

I know I can change the current page to another URL using assigning to the browser address (details escape me). But how can I have someone click a button and open a URL in another tab, leaving my application running? Ideally a named tab so I don't keep creating new ones.

--

Matthew Jones
Sun, Mar 15 2020 11:25 AMPermanent Link

Mark Brooks

Slikware

Avatar

"Matthew Jones" wrote:

I know I can change the current page to another URL using assigning to the browser address (details escape me). But how can I have someone click a button and open a URL in another tab, leaving my application running? Ideally a named tab so I don't keep creating new ones.

---------------------------------------------------------------------------

Open in Same Tab
Window.Open(AURL,'_self','',False);

Open in New Tab
Window.Open(AURL,'_blank','',False);
Mon, Mar 16 2020 4:36 AMPermanent Link

Matthew Jones

Mark Brooks wrote:

> Open in Same Tab
> Window.Open(AURL,'_self','',False);
>
> Open in New Tab
> Window.Open(AURL,'_blank','',False);

Thank you!

--

Matthew Jones
Image