View previous topic :: View next topic |
Author |
Message |
detheater Expert Cheater
Reputation: 0
Joined: 07 Apr 2007 Posts: 238
|
Posted: Sat Nov 17, 2007 11:30 am Post subject: delphi web browser help :( |
|
|
hey, i was wondering, im making something similer to a web browser, i want it if i put something in an address bar, i click a button, it takes me to that web site :S this is as far as i got... can figure out the rest... webbrowser1.navigate(????) what do i do?
|
|
Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Sat Nov 17, 2007 11:44 am Post subject: |
|
|
I think it's
webbrowser1.navigate address here
So it could be
webbrowser1.navigate text1.text
(for vb6)
For delphi i think it should be
webbrowser1.navigate (text1.text)
_________________
Last edited by Blader on Sat Nov 17, 2007 11:46 am; edited 1 time in total |
|
Back to top |
|
 |
Simsgy Grandmaster Cheater
Reputation: 0
Joined: 07 May 2007 Posts: 581 Location: My new avatar <3
|
Posted: Sat Nov 17, 2007 11:45 am Post subject: |
|
|
Easy.
Just make a EditBox named EditBox1, and a button.
In the button's OnClick event, put:
Code: |
WebBrowser1.Navigate(Edit1.Text);
|
Have anymore questions?
_________________
|
|
Back to top |
|
 |
detheater Expert Cheater
Reputation: 0
Joined: 07 Apr 2007 Posts: 238
|
Posted: Sat Nov 17, 2007 11:54 am Post subject: |
|
|
thank you very much and yah, thats all i needed
|
|
Back to top |
|
 |
|