Vice Underdogs

Discussion => Off Topic => Topic started by: Zeke on October 21, 2011, 06:07:34 pm

Title: Simple Web Browser Made By Zeke
Post by: Zeke on October 21, 2011, 06:07:34 pm
Well guys topic name says it all, i made a simple and very basic web browser.

Download link >>> http://www.mediafire.com/?8bvb0q9z6zzor83

Wen u download it first open the "READ ME" file and read everything follow all the instructions there.

Tell me what u think about it :P

And if u find any bugs tell me plz  ;D



Title: Re: Simple Web Browser Made By Zeke
Post by: Charley on October 21, 2011, 06:09:12 pm
Screenshots?
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 21, 2011, 06:14:11 pm
K.

Forgot about em :P

Remember its very simple its not all that fancy but im gonna work on the themes and crap in the next version

http://img694.imageshack.us/img694/1483/screen1ojv.jpg
http://img714.imageshack.us/img714/2746/screen2hl.jpg
Title: Re: Simple Web Browser Made By Zeke
Post by: Charley on October 21, 2011, 07:02:02 pm
Nice
Title: Re: Simple Web Browser Made By Zeke
Post by: morphine on October 21, 2011, 07:02:47 pm
Looks quite great for a start, won't touch it until I see something like a source though.

edit:// Never mind, I don't think you'd be cheeky enough to put a keylogger in something like this. Keyloggers are something I always encounter, even with government sites which get hacked. <.>

What's it written in? VB Basic?
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 21, 2011, 07:10:56 pm
I made it in Microsoft Visual Basic 2010 Express.

Anyways

Code: [Select]
Public Class Form1

    Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
        WebBrowser1.Navigate(TextBox1.Text)
    End Sub

    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
        WebBrowser1.GoHome()
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        WebBrowser1.Stop()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        WebBrowser1.Refresh()
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        WebBrowser1.GoForward()
    End Sub

    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
        WebBrowser1.GoBack()
    End Sub

    Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click
        End
    End Sub
End Class

Is this what u looking for morph?


And Tnx Charley  ;D
Title: Re: Simple Web Browser Made By Zeke
Post by: stormeus on October 21, 2011, 07:27:12 pm
1. The web browser object in VB is terrible. It's based on IE. See if you can find a Gecko wrapper for VB, or better yet, learn C++.

2. VB .NET is terrible, but I guess everyone has to start somewhere.

Other than that, good work.
Title: Re: Simple Web Browser Made By Zeke
Post by: Bass on October 21, 2011, 07:49:24 pm
Wow nice work dude!
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 21, 2011, 09:11:39 pm
Working on the new version atm ;D
Title: Re: Simple Web Browser Made By Zeke
Post by: NicoArin on October 21, 2011, 10:49:01 pm
Nice work
Title: Re: Simple Web Browser Made By Zeke
Post by: kyber7 on October 22, 2011, 07:08:12 am
Name it Godzilla Zekefox.
Title: Re: Simple Web Browser Made By Zeke
Post by: Mac on October 22, 2011, 07:44:07 am
Nice Work.
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 22, 2011, 09:51:03 am
Zekefox.

U know i was thinking of the same yesterday hhhhhhhhhhh
Title: Re: Simple Web Browser Made By Zeke
Post by: Maverick on October 23, 2011, 02:58:36 am
Name it Godzilla Zekefox.

Godernet Zekexplorer
Title: Re: Simple Web Browser Made By Zeke
Post by: Avinash on October 23, 2011, 06:11:08 am
very nice  :D
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 23, 2011, 09:27:16 am
Tnx guys and here is a pic of the new ZekeFox beta 2.0

http://tinypic.com/view.php?pic=28c3jfl&s=7

Gonna release the beta for u guys tomorrow.

And the best part is >>>>>>>>>>>>>>>>>>>>>>>>>>>>  ITS NOT BASED ON IE

ITS BASED ON GECKOFX lol
Title: Re: Simple Web Browser Made By Zeke
Post by: kyber7 on October 23, 2011, 10:48:16 am
Creating smth based on smth else isn't very useful. It's like creating a theme for smth else (in this situation: Firefox)
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 23, 2011, 12:13:41 pm
It will be based on GeckoFX for nao  ;D
I guess everyone has to start somewhere.
Title: Re: Simple Web Browser Made By Zeke
Post by: Thijn on October 23, 2011, 05:33:19 pm
Why invent the wheel again.
Unless it adds features its useless.

Sorry...
Title: Re: Simple Web Browser Made By Zeke
Post by: stormeus on October 23, 2011, 05:59:23 pm
Creating smth based on smth else isn't very useful.

Well, there goes the entire open-source movement, considering Chrome is based on WebKit, every major OS is based on UNIX, and every program is based on libraries. But enough of my useless banter.
Title: Re: Simple Web Browser Made By Zeke
Post by: kyber7 on October 23, 2011, 06:37:57 pm
Creating smth based on smth else isn't very useful.

Well, there goes the entire open-source movement, considering Chrome is based on WebKit, every major OS is based on UNIX, and every program is based on libraries. But enough of my useless banter.

Keep going...
Title: Re: Simple Web Browser Made By Zeke
Post by: Charley on October 25, 2011, 01:09:24 pm
Why invent the wheel again.
Unless it adds features its useless.

Sorry...

You have to understand how to make a wheel before you can build a car.
Title: Re: Simple Web Browser Made By Zeke
Post by: Thijn on October 29, 2011, 10:58:09 am
Why invent the wheel again.
Unless it adds features its useless.

Sorry...

You have to understand how to make a wheel before you can build a car.
You got me there,
But still why release this? I just don't see the point.
I've never seen a car factory release its wheel before the actual car came out.
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 29, 2011, 11:10:57 am
But still why release this? I just don't see the point.

Just to test my skills in Visual Basic and little scripting ( practise )

I guess everyone has to start from somewhere.
Title: Re: Simple Web Browser Made By Zeke
Post by: Bass on October 29, 2011, 01:28:55 pm
Hacks?
Title: Re: Simple Web Browser Made By Zeke
Post by: Zeke on October 29, 2011, 02:24:32 pm
Hacks?

Nein, basicly program scripting ( aways wanted to learn )

No HECKER programs!!!!  ;D
Title: Re: Simple Web Browser Made By Zeke
Post by: Bass on October 29, 2011, 09:12:47 pm
I hope you won't program a new hack for vcmp..
Jk!
Title: Re: Simple Web Browser Made By Zeke
Post by: morphine on October 30, 2011, 03:28:05 am
Please do, though.
Title: Re: Simple Web Browser Made By Zeke
Post by: kevinsito on October 30, 2011, 03:48:54 am
Aww nice work, that reminds me when I did my 1st calculator <3 I still having some old VB projects