gettingstarted
[Top] [All Lists]

RE: ShowURL - open url in new window

To: "'Getting Started'" <gettingstarted at lists dot realsoftware dot com>
Subject: RE: ShowURL - open url in new window
From: "RBNUBE" <rbnube at mabenterprises dot com>
Date: Thu, 31 Mar 2005 21:39:31 -0500
Delivered-to: gettingstarted at lists dot realsoftware dot com
Importance: Normal
Keywords: rb-gettingstarted
On Windows, you can use the example in the Language Reference for
OLEObject.

There is probably a way using Declares.  You should be able to use the
default browser, but this forces Internet Explorer.


  Dim obj as OLEObject
  Dim v as Variant
  Dim params(1) as Variant
  
  obj = New OLEObject("InternetExplorer.Application",True)
  obj.property("Visible") = True
  params(1) = "http://www.YourServerHere.com/";
  v = obj.invoke("Navigate", params)
  
  
Exception err as OLEException
  Msgbox err.message






-----Original Message-----
From: gettingstarted-bounces at lists dot realsoftware dot com
[mailto:gettingstarted-bounces at lists dot realsoftware dot com] On Behalf Of
AdaSoft
Sent: Wednesday, March 30, 2005 3:32 AM
To: gettingstarted at lists dot realsoftware dot com
Subject: ShowURL - open url in new window


Hello,

How to open URL in new browser window? ShowURL opens URL in existed
window with that user works last time.

-- 
  Nick Smith

RealBasic 5.5.4 Pro for MS Windows

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

<Prev in Thread] Current Thread [Next in Thread>