VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



A Complete Web Browser

by Juanito Dado Jr (4 Submissions)
Category: Internet/HTML
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (8 Votes)

A complete Web browser with most of the basic functions included like copy, page properties, print, view source, back and forward subitems, progress bar, autocomplete feature, etc. I sorta copy the Internet Explorer's GUI turns out just fine. With some minor improvement, it'll be of good use to some.
Use this if you're getting bored with Internet Explorer. I have some bugs though, just debug it. LOL. Have fun!!!

API Declarations
Option Explicit
'autocomplete textbox
Private Declare Sub SHAutoComplete Lib "shlwapi.dll" (ByVal hwndEdit As Long, ByVal dwFlags As Long)
Private Const SHACF_AUTOAPPEND_FORCE_OFF = &H80000000
Private Const SHACF_AUTOAPPEND_FORCE_ON = &H40000000
Private Const SHACF_AUTOSUGGEST_FORCE_OFF = &H20000000
Private Const SHACF_AUTOSUGGEST_FORCE_ON = &H10000000
Private Const SHACF_DEFAULT = &H0
Private Const SHACF_FILESYSTEM = &H1
Private Const SHACF_URLHISTORY = &H2
Private Const SHACF_URLMRU = &H4
Private Const SHACF_USETAB = &H8
Private Const SHACF_URLALL = (SHACF_URLHISTORY Or SHACF_URLMRU)
'progress bar in status bar
Private Declare Function SetParent Lib "user32" _
(ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long

Rate A Complete Web Browser

Download A Complete Web Browser

Download A Complete Web Browser (33 KB)

A Complete Web Browser Comments

No comments have been posted about A Complete Web Browser. Why not be the first to post a comment about A Complete Web Browser.

Post your comment

Subject:
Message:
0/1000 characters