Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Making "Stop" , "Refresh" , "Startp
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Thu Jun 21, 2007 6:08 am    Post subject: Making "Stop" , "Refresh" , "Startp Reply with quote

in your webbrowser. anyone knows how to do this?
Back to top
View user's profile Send private message MSN Messenger
assaf84
Expert Cheater
Reputation: 0

Joined: 03 Oct 2006
Posts: 238

PostPosted: Thu Jun 21, 2007 7:09 am    Post subject: Reply with quote

WebBrowser1.Stop;

WebBrowser1.Refresh;


when u say startp u mean homepage? If so, just navigate to some site in Form1.Create or something..
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Thu Jun 21, 2007 7:10 am    Post subject: Reply with quote

i gave you a pm. please answer it (maybe +rep for you)
Back to top
View user's profile Send private message MSN Messenger
ravicus
Master Cheater
Reputation: 0

Joined: 16 Dec 2006
Posts: 464

PostPosted: Thu Jun 21, 2007 9:15 am    Post subject: Reply with quote

Don't you have intellisense?
_________________
Back to top
View user's profile Send private message
compactwater
I post too much
Reputation: 8

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Thu Jun 21, 2007 12:50 pm    Post subject: Reply with quote

Code:
WebBrowser1.GoHome; //Goto current home-page.
WebBrowser1.GoBack; //Go back one page.
WebBrowser1.GoForward; //Go forward one page.
WebBrowser1.Navigate('www.website.com'); //Navigate to a page.
WebBrowser1.Navigate(Edit1.Text); //Navigate to the page in an edit box.
WebBrowser1.Refresh; //Refresh the page.
WebBrowser1.Stop; //Stop loading the page.
WebBrowser1.SetFocus; //Something I like to set on a timer, not required.


Hope that helps!
Back to top
View user's profile Send private message
oib111
I post too much
Reputation: 0

Joined: 02 Apr 2007
Posts: 2947
Location: you wanna know why?

PostPosted: Thu Jun 21, 2007 3:34 pm    Post subject: Reply with quote

compact, are those procedures you would have to make are are those actual commands?
_________________


8D wrote:

cigs dont make people high, which weed does, which causes them to do bad stuff. like killing
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Thu Jun 21, 2007 3:37 pm    Post subject: Reply with quote

They already exist.
Back to top
View user's profile Send private message
ravicus
Master Cheater
Reputation: 0

Joined: 16 Dec 2006
Posts: 464

PostPosted: Thu Jun 21, 2007 4:16 pm    Post subject: Reply with quote

Yes, they do exactly what the comments say they will, just put them in.
_________________
Back to top
View user's profile Send private message
TheIndianGuy
Advanced Cheater
Reputation: 102

Joined: 14 Jan 2007
Posts: 88

PostPosted: Sat Jun 23, 2007 10:28 am    Post subject: Reply with quote

very easy but which language are you talking about?

in vb its very simple so if you make a new web browser you make a button and you can call it whatever doesnt matter so

blah blah button1 blah blah (blah blah) blah blah
WebBrowser1.Stop (when clicking button1 it stops 'WebBrowser1')
End Sub
blah blah button2 blah blah
WebBrowser1.Refresh (when clicking buttong2 it refreshes page of 'WebBroser1')
End Sub

very simple Very Happy
Back to top
View user's profile Send private message
compactwater
I post too much
Reputation: 8

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Sat Jun 23, 2007 1:07 pm    Post subject: Reply with quote

But Pascal > VB. And it always will be. Wink
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jun 23, 2007 1:44 pm    Post subject: Reply with quote

skate4lifee wrote:
very simple Very Happy


It's almost exactly the same in Delphi.
Back to top
View user's profile Send private message
oib111
I post too much
Reputation: 0

Joined: 02 Apr 2007
Posts: 2947
Location: you wanna know why?

PostPosted: Sat Jun 23, 2007 2:02 pm    Post subject: Reply with quote

@ compact

All of those said WebBroswer1. But is that actually something you can put on, because I searched through delphi personal and it doesn't have it.

@ everyone

You know the refresh,stop,home,back,forward buttons, how do you make it so it displays pictures and not just what you named it...

_________________


8D wrote:

cigs dont make people high, which weed does, which causes them to do bad stuff. like killing
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Sat Jun 23, 2007 4:20 pm    Post subject: Reply with quote

just use panels or pictures. then double click on it and you got basicly the same function.
Back to top
View user's profile Send private message MSN Messenger
oib111
I post too much
Reputation: 0

Joined: 02 Apr 2007
Posts: 2947
Location: you wanna know why?

PostPosted: Sat Jun 23, 2007 7:57 pm    Post subject: Reply with quote

Write, my bad. But still where do I get WebBrower1, or do I just make an edit box and stuff...
_________________


8D wrote:

cigs dont make people high, which weed does, which causes them to do bad stuff. like killing
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jun 23, 2007 8:28 pm    Post subject: Reply with quote

What you all having trouble on? It's in the Internet tab.

Make a button and an edit box. Click button.

WebBrowser1.Navigate(Edit1.Text);

Couldn't be any easier.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites