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>
|