Skip to content

Files

Latest commit

 

History

History
53 lines (37 loc) · 2.04 KB

File metadata and controls

53 lines (37 loc) · 2.04 KB

A Complete Web Browser

Description

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!!!

More Info

Submitted On 2006-12-22 10:22:08
By Juanito Dado Jr
Level Beginner
User Rating 4.4 (35 globes from 8 users)
Compatibility VB 6.0
Category Internet/ HTML
World Visual Basic
Archive File ZynExplore20398212292006.zip

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