Need a basic browser template
As title states I need a basic browser template. Preferably in C or C++ but it doesn't matter. I tried downloading FireFox's source from Monzilla but there's no way I can figure out how to edit it with over 40,000 files! If applicable, if it makes it easier for you, you don't need to include pictures of say the back button I can add my own pictures.
Re: Need a basic browser template
Um try this, its in Visual Basic 2008, tut from Gaming-Geeks
step 1:Starting
Open Visual Basic and start a new Windows Application.
step 2:Adding the tools
Add a: Text Box Web Browser 5 Buttons in that order.
Step 3: Add the Buttons
Add the buttons for example, Home, Back, Forward, etc...
step 4:Now for the code
Double click on the form and type in: Me.Text = "Web Browser" like this:
step 5:GO button code
double click on the Go button and type in: WebBrowser1.Navigate(TextBox1.Text)
step 6:Back button code
Click (actually double click) on the back button and type in: WebBrowser1.GoBack() like this
step 7: Forward button code
Double click on the forward button and type in: WebBrowser1.GoForward() like this
step 8:REFRESH code
double click on the refresh button and type in: WebBrowser1.Refresh() like this
step 9:HOME button
Double click on the home button and type: WebBrowser1.GoHome() like this
step 10: Try it out
Click on the Debug button
Rep + if I helped :)
Re: Need a basic browser template
Thanks man! You helped a lot! ^.^ Do you know where I can find more codes like the ones you posted here?
Re: Need a basic browser template
um idk i write my own codes so you'll have to google it
Re: Need a basic browser template
Ok, what would those kinds of things that you gave me (those five codes) be called? Like, Functions, events, properties, classes, sections, frames, procedures, what would those be called?
Re: Need a basic browser template
eh? I dont give out tuts bro, and i get a lil stubborn when people ask me for help. Sorry look on google or youtube....i learned by myself
Re: Need a basic browser template
That's ok, I learned all I needed to when I talked to you today.