How to Mine/Extract/Pull Data From Your Web Browser Into Visual Basic 6
The Visual Basic programming language includes the "HttpBrowserCapabilities" class that lets you extract browser information on a desktop. This browser class is used to check for browser version, functionality and name before your Visual Basic application calls a specific browser feature. Checking browser functionality is an important step that helps avoid logic errors in your VB code.
Instructions
-
-
1
Click the Windows "Start" button and type "visual basic 6" in the search box. Press "Enter" to open the VB6 code editor.
-
2
Click "File" and then "Open." Double-click the VB6 project file to open the code files. Double-click the file you want to use to retrieve browser information.
-
-
3
Create a variable for the browser class. The following code sets up the class variable:
Dim browser As HttpBrowserCapabilities
browser = Request.Browser
-
4
Display the browser information you want to view. For instance, the following code displays the browser version, name and JavaScript support:
MsgBox "Browser information: " & browser.Name & browser.Version & browser.JavaScript
-
1