| View previous topic :: View next topic |
| Author |
Message |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Feb 07, 2003 12:14 pm Post subject: New Browser Window |
|
|
Is there a way to use SHELL OPEN,WWW.YOURSITE.COM and open
a new window instead of changing a current one to another address?
Thanks for any help.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Alphonse VDS Pirate

Joined: 27 Jan 2003 Posts: 11
|
Posted: Fri Feb 07, 2003 12:39 pm Post subject: |
|
|
| shell open,iexplore.exe,www.vdsworld.com |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Fri Feb 07, 2003 12:41 pm Post subject: |
|
|
If you know the browser (and you can prolly get it from the
registry), you can use:
SHELL OPEN, iexplorer.exe, www.google.com
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Feb 07, 2003 12:42 pm Post subject: |
|
|
Thanks for the replies!  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Fri Feb 07, 2003 12:43 pm Post subject: |
|
|
OOPS - Sorry Alphonse, I was too slow posting.  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Feb 07, 2003 12:44 pm Post subject: |
|
|
Also found that shell open,explorer.exe,http://www.google.com
will probably work on most systems since EXPLORER.EXE has built-in
browser functionalities. (I think)  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Fri Feb 07, 2003 12:52 pm Post subject: |
|
|
Doesn't work in Windows 95...
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Feb 07, 2003 12:54 pm Post subject: |
|
|
I suppose I'm wrong.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Fri Feb 07, 2003 12:59 pm Post subject: |
|
|
I dunno FF - Win95 may be the only thing it doesn't work in...
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
MarkTrubo Contributor


Joined: 27 May 2001 Posts: 148 Location: Long Island, NY
|
Posted: Fri Feb 07, 2003 2:44 pm Post subject: |
|
|
I have a little prog in my startup group that has these in them:
WAIT 30
SHELL open, http://www.msnbc.com
WAIT 5
SHELL open, "c:\Program Files\Outlook Express\msimn.exe" |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Fri Feb 07, 2003 2:52 pm Post subject: |
|
|
"SHELL open, http://www.msnbc.com" will use the current
browser window if there's one open - and I think that's what
FF was trying to avoid...
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Fri Feb 07, 2003 3:44 pm Post subject: |
|
|
This might be a possibility:
| Code: |
option fieldsep,@CHR(34)
%%browser = @regread(ROOT,http\shell\open\command)
PARSE "%%EXE",%%browser
shell open,@CHR(34)%%EXE@CHR(34),http://www.vdsworld.com
|
Greetz
Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Feb 07, 2003 3:48 pm Post subject: |
|
|
Perfect, Dread! This is exactly it.
Thanks anyway to all who helped; I still might use your ideas.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Fri Feb 07, 2003 3:52 pm Post subject: |
|
|
You can also take a look into the Check-up tool code... Or was that what you mentioned, Dr.Dread?
| Dr. Dread wrote: | This might be a possibility:
Code:
option fieldsep,@CHR(34)
%%browser = @regread(ROOT,http\shell\open\command)
PARSE "%%EXE",%%browser
shell open,@CHR(34)%%EXE@CHR(34),http://www.vdsworld.com
Greetz
Dread |
|
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Feb 07, 2003 4:00 pm Post subject: |
|
|
I remembered that the Checkup Tool opened a new window, and I checked
out the code, but I couldn't figure out what was opening the new window.
But, yes, that is what Dr. Dread was pointing out I think.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
|