frames with openinternetpage

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by cor.

Add the function frames like:

_self
_top
_blank
_parent

when you want to open an internet page.

I can't find the command OpenInternetpage in the helpfile

Registered user of PB

C. de Visser
Author of Super Guitar Chord Finder
http://www.ready4music.com
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by El_Choni.

Anyone for a WWW library :wink:? Sorry, it's too much for me.

No OpenInternetPage available yet, cor. Have a nice day,

Have a nice day,


Edited by - El_Choni on 08 January 2002 12:34:21
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by tranquil.
Anyone for a WWW library :wink:? Sorry, it's too much for me.
Fine Idea, espacialy the possibillitie to open a Webpage inside a specified region in your Application-Window. (e.g. for Displaying Banners etc.)

Possible it is like a gadget. AddIEGadget #num,x,y,width,height,url$

What do you think about that?

Mike

Tranquilizer/ Secretly!
Registred PureBasic User
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by El_Choni.

I don't know anything about ActiveX, but I think that is the way to do it. It would allow embedding IE and/or Mozilla (which is also embeddable). If I had any example, even in C, I could give it a try, but I'm not very optimistic, this sounds quite complex.

Bye,

El_Choni
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by Franco.
I can't find the command OpenInternetpage in the helpfile
That's why the command OpenInternetPage() is the name of a procedure in the source code that I gave you yesterday. (see -> Beginner - systray and internet explorer )
It's not a PureBasic command name.

And about your question in the above topic:
It will always use the actually opened Intenet Client (if there is one).
Don't know how to open a separate window for that.
Sorry.


Have a nice day...
Franco
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by PB.
I can't find the command OpenInternetpage in the helpfile
You can do this to open a web page in a new browser window:

Code: Select all

ShellExecute_(0,"Open","[url]http://www.google.com[/url]","","",1)
Or, to send somebody an E-Mail:

Code: Select all

ShellExecute_(0,"Open","mailto:name@address.com?subject=Feedback","","",1)

PB - Registered PureBasic Coder


Edited by - PB on 16 January 2002 06:50:45
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by Franco.

Nope!
Sorry PB but your code is the same as mine and this uses always the same window if one is opened. Test OS: Win98SE.
What is your OS?


Have a nice day...
Franco
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by PB.
Sorry PB but your code is the same as mine and this uses always the same window if one is opened.
What I meant was, open in a new window as opposed to opening the web page
in the actual PureBasic app's window, which was the original request.

Sorry for the confusion!


PB - Registered PureBasic Coder
Post Reply