![]() |
|
B13 Browser - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: B13 Browser (/Thread-B13-Browser) |
B13 Browser - Equinox - 12-14-2013 So I've been messing with Visual Basic a lot lately(Sorry, Zeb) and I've made multiple browsers. I decided I would like to hear your opinions on one of them. Basic 13 or B13. Here's a screenshot of it. ![]() I know there's a typo at the top. "Created Duubz". Yes the browser gave brith to me. No, but anyways I would like for you guys to give it a shot. If you don't that's fine too. (Typo fixed. >_>) The big red x at the top right is for closing the browser, and the arrow in a circle is refresh. You don't hit enter or anything when typing a link, it loads automatically during the typing of the links. It's a really small file because of the amount of code into it. It's a five minute browser. >_> Code: Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Me.Close()
Me.WindowState = FormWindowState.Maximized
End Sub
Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
WebBrowser1.Navigate(TextBox1.Text)
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
WebBrowser1.Refresh()
End Sub
End ClassThat's it. Really simple right? Anyways, download below if you want. If not whatever. ~Dub out. RE: B13 Browser - OversouL - 12-14-2013 If I'm not mistaken, the browser that's in VB is actually Internet Explorer. Good Job though, but I would have to say a big No No this time.
RE: B13 Browser - Equinox - 12-14-2013 (12-14-2013, 12:54 PM)OversouL Wrote: If I'm not mistaken, the browser that's in VB is actually Internet Explorer. Good Job though, but I would have to say a big No No this time. Eh, either way it's about the fun of it.
RE: B13 Browser - Cressi - 12-14-2013 (12-14-2013, 12:55 PM)Duubz Wrote: Eh, either way it's about the fun of it. Very true indeed. Nice work, anyways. RE: B13 Browser - Azrael - 12-17-2013 (12-14-2013, 12:47 PM)Duubz Wrote: At first: pleeaaaseeee name your components like tbWebAdress (tb for TextBox) or something ![]() and it looks quite good for a newbee ![]() try loading a pdf in your webBrowser or pass over a local path, it will work ![]() so the inbuild webbrowser is kinda cool for showing different kinds of files, but NOT for browsing the web ^^ have a nice day Azrael Re: RE: B13 Browser - Equinox - 12-17-2013 (12-17-2013, 07:34 PM)Azrael Wrote: At first: pleeaaaseeee name your components like tbWebAdress (tb for TextBox) or something I am not really new at vb. I've used it for quite sometime. I made this out of five minutes and boredom. RE: B13 Browser - Azrael - 12-17-2013 (12-17-2013, 07:41 PM)Duubz Wrote: I am not really new at vb. I've used it for quite sometime. I made this out of five minutes and boredom. Okay, just wanted to give you some tips ^^ |