Jump to content

Web Site Browser


=sinister=
 Share

Recommended Posts

Ok, here is a weird question. I need a browser (Like the cwebpage.dll one) but I need to be able to read the links that the user clicks, and be able to connect to a certain site.

Like:

DllCall($dll, "long", "DisplayHTMLPage", "hwnd", $internetgui, "str", $site)

but, I need to retreive the links that the user clicks. Er sorry about my poor explanation, hope someone can help me.

Link to comment
Share on other sites

OOOOOOOOOOOOOOOOOOH!

Well,

Do you mean if you visit the link will it add it to the combo box?

If so:

Look up: _GUICtrlComboInitStorage

OR

When you visit the link you want the combo box to update to that link?

If so:

Lets say the combo box (put a variable infront of it ($ComboURL or something, whatever you want)) is named $ComboURL

CODE

$ComboURL = GUICtrlCreateCombo("www.google.com", 120, 120)

In your while loop:

CODE

code... blah blah

while 1

Gui Get message stuff, case, select, whatever is there, somewhere in there put

$ComboURLRead(Or something like that) = GuiCtrlRead($ComboURL)

GuiCtrlSetData($ComboURL, $ComboURLRead)

Hope this helped!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...