April 28, 2024, 06:13:15 pm

Author Topic: Simple Web Browser Made By Zeke  (Read 4711 times)

0 Members and 1 Guest are viewing this topic.

Zeke

  • Crazy Man
  • *****
  • Posts: 935
  • Country: bg
  • VC:MP and LU beta tester
    • View Profile
Simple Web Browser Made 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



Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Quote
InstallHook(0x405AC0,(DWORD)CantFindFuckingAnim,0x405A95,
CantFindFuckingAnim_HookJmpCode,sizeof(CantFindFuckingAnim_HookJmpCode));
-------------------------------------------------
Quote
[00:41:12] <~Murdock> actually just transfering files
[00:41:16] <~Murdock> sounds, clientscripts etc
[00:42:05] <heekzs> what transfer method you uses
[00:43:03] <~Murdock> speed of light

Charley

  • Vice Underdog
  • Crazy Man
  • *
  • *
  • Posts: 4751
  • Country: 00
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #1 on: October 21, 2011, 06:09:12 pm »
Screenshots?
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Writer of excessively long posts


Zeke

  • Crazy Man
  • *****
  • Posts: 935
  • Country: bg
  • VC:MP and LU beta tester
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #2 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
« Last Edit: October 21, 2011, 06:39:39 pm by Zeke »
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Quote
InstallHook(0x405AC0,(DWORD)CantFindFuckingAnim,0x405A95,
CantFindFuckingAnim_HookJmpCode,sizeof(CantFindFuckingAnim_HookJmpCode));
-------------------------------------------------
Quote
[00:41:12] <~Murdock> actually just transfering files
[00:41:16] <~Murdock> sounds, clientscripts etc
[00:42:05] <heekzs> what transfer method you uses
[00:43:03] <~Murdock> speed of light

Charley

  • Vice Underdog
  • Crazy Man
  • *
  • *
  • Posts: 4751
  • Country: 00
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #3 on: October 21, 2011, 07:02:02 pm »
Nice
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Writer of excessively long posts


morphine

  • Crazy Man
  • *****
  • Posts: 1909
  • Country: lt
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #4 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?
« Last Edit: October 21, 2011, 07:07:11 pm by Morphine »
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor


Zeke

  • Crazy Man
  • *****
  • Posts: 935
  • Country: bg
  • VC:MP and LU beta tester
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #5 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
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Quote
InstallHook(0x405AC0,(DWORD)CantFindFuckingAnim,0x405A95,
CantFindFuckingAnim_HookJmpCode,sizeof(CantFindFuckingAnim_HookJmpCode));
-------------------------------------------------
Quote
[00:41:12] <~Murdock> actually just transfering files
[00:41:16] <~Murdock> sounds, clientscripts etc
[00:42:05] <heekzs> what transfer method you uses
[00:43:03] <~Murdock> speed of light

stormeus

  • Vice Underdog
  • Crazy Man
  • *
  • *
  • Posts: 1755
  • Country: us
  • VC:MP Developer
    • View Profile
    • GTA VICE CITY Respective owner
Re: Simple Web Browser Made By Zeke
« Reply #6 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.
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

<krystianoo> stormeus do good job
<krystianoo> with recent update
<krystianoo> if not agree; jeb yourself in head
<Avenger> yesterday you said death to stormeus
<karan> double standard krystianoo
<karan> he called him fake prophet too
<krystianoo> sure fake prophet
<krystianoo> but with recent updates real

Bass

  • Crazy Man
  • *****
  • Posts: 400
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #7 on: October 21, 2011, 07:49:24 pm »
Wow nice work dude!
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor


Zeke

  • Crazy Man
  • *****
  • Posts: 935
  • Country: bg
  • VC:MP and LU beta tester
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #8 on: October 21, 2011, 09:11:39 pm »
Working on the new version atm ;D
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Quote
InstallHook(0x405AC0,(DWORD)CantFindFuckingAnim,0x405A95,
CantFindFuckingAnim_HookJmpCode,sizeof(CantFindFuckingAnim_HookJmpCode));
-------------------------------------------------
Quote
[00:41:12] <~Murdock> actually just transfering files
[00:41:16] <~Murdock> sounds, clientscripts etc
[00:42:05] <heekzs> what transfer method you uses
[00:43:03] <~Murdock> speed of light

NicoArin

  • Vice Underdogs (Inactive)
  • Crazy Man
  • *
  • Posts: 503
  • Country: uy
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #9 on: October 21, 2011, 10:49:01 pm »
Nice work
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor


kyber7

  • Vice Underdog
  • Crazy Man
  • *
  • *
  • Posts: 1971
  • Country: bg
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #10 on: October 22, 2011, 07:08:12 am »
Name it Godzilla Zekefox.
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

"i meat Charley and he teaches me to be a strong fighter and thats no joke"

~ Summer, 2010 - "The Beginning"

Mac

  • Guest
Re: Simple Web Browser Made By Zeke
« Reply #11 on: October 22, 2011, 07:44:07 am »
Nice Work.
Cannot rate own posts


Zeke

  • Crazy Man
  • *****
  • Posts: 935
  • Country: bg
  • VC:MP and LU beta tester
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #12 on: October 22, 2011, 09:51:03 am »
Zekefox.

U know i was thinking of the same yesterday hhhhhhhhhhh
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor

Quote
InstallHook(0x405AC0,(DWORD)CantFindFuckingAnim,0x405A95,
CantFindFuckingAnim_HookJmpCode,sizeof(CantFindFuckingAnim_HookJmpCode));
-------------------------------------------------
Quote
[00:41:12] <~Murdock> actually just transfering files
[00:41:16] <~Murdock> sounds, clientscripts etc
[00:42:05] <heekzs> what transfer method you uses
[00:43:03] <~Murdock> speed of light

Maverick

  • Crazy Man
  • *****
  • Posts: 1775
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #13 on: October 23, 2011, 02:58:36 am »
Name it Godzilla Zekefox.

Godernet Zekexplorer

Avinash

  • Fanatic
  • ****
  • Posts: 132
    • View Profile
Re: Simple Web Browser Made By Zeke
« Reply #14 on: October 23, 2011, 06:11:08 am »
very nice  :D
Agree Disagree Funny Winner Pwnt Informative Friendly Useful Optimistic Artistic Late Brain Donor