How To Make A Web Browser - Visual Basic 6

Pages: 1, 2, 3, 4, 5
free web hosting
Open Discussion > CONTRIBUTE > Tutorials

How To Make A Web Browser - Visual Basic 6

iGuest
I get an error.
How To Make A Web Browser

When I try to make it a Microsoft internet control, it says 'File not found: see:\windows\system32\ieframe.Dll\1' and I don't know what to do. I've looked in system32, and ieframe.Dll is there. So I dunno :(

-Dalez

Reply

iGuest
what to do with error box?
How To Make A Web Browser

There is a error box that pops out when you click forward or back when you haven't visited any websites at the form load.

And the textbox erases what you write like each 5 seconds cuz it changes the textbox.Text to the url of the current loaded webpage.

Thx a lot for looking at my questions!if they arent clear Please contact me at my e-mail adress to get more details.Bye have a nice day!!

-shoukat

Reply

iGuest
Same thing
How To Make A Web Browser

Hey Dalez,

I've been wokring with VB for about 4 years. Dalez I had that same error, along with another error when I tried to compile to .EXE saying "Cannot execute C2.EXE" the only way I fixed it was to reformat the hardrive.

Good luck!

-0re0

Reply

iGuest
This is a very interesting tutorial! I've thought about trying to learn Visual Basic but kept putting it off. I'll look into VB more now (hopefully).

-reply by watson

Reply

ultraviolet_66
is there a java web browser code? it would be nice i think...

Reply

masrawy
web browser is actually a web client, the idea behind it depends on client server architecture, in which client sends commands to the server and waits for response from the server.

In web service HTTP protocol is used, this protocol is easy to study and apply, web browser sends Http request to server which replies with Http response

Reply

flashy
This topic is nearly three years old. Oh yeah by the way it would be lovely if you had the pictures. If you needed a progress bar this is mine from my web browser app
CODE
With ProgressBar1
.Minimum = 1
.Maximum = 10000
.Value = 1
.Step = 1
ProgressBar1.Visible = True
For i As Integer = .Minimum To .Maximum
.PerformStep()
Next i
End With

Reply

iGuest
It keeps on poping up with runtime error

What I gotta do to fix it?

-reply by tom-2008

Reply

iGuest
download manager?popup blocker? tabs?how DO they do it?????
How To Make A Web Browser

Replying to MarCrush
You could dim a new form and when he opens a new window you could open the form but I don't know how to put a browser in it...

-reply by Zeusthedevil

Reply

iGuest
web browser
How To Make A Web Browser

Replying to rejected

Cool tutorial
Its the first time I don't get lost
Iv got a code too ad, hope you don't mind

Private Sub txt1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
WebBrowser1.Navigate (txt1.Text)
End If
End Sub

Its fore making it navagate with enter
Don't forguet too chnage the text name or it wont work


-reply by kungfugirlbrasil

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2, 3, 4, 5
Recent Queries:-
  1. how to make a web browser in visual basic 6 - 0.03 hr back. (1)
  2. visual basic 2005 browser - 0.29 hr back. (1)
  3. webbrowser visual studio - 0.75 hr back. (1)
  4. visual basic web browser - 1.73 hr back. (1)
  5. web browser vb codes - 1.87 hr back. (1)
  6. visual basic 6 internet browser - 1.92 hr back. (1)
  7. visual basic 6 control webbrowser frames - 2.06 hr back. (1)
  8. make a web browser in visual basic - 2.24 hr back. (1)
  9. using the progress bar visual basic web browser - 2.39 hr back. (1)
  10. how to make a browser in vb6 - 2.60 hr back. (2)
  11. how to make a web browser - 2.44 hr back. (2)
  12. code to create web browser - 2.73 hr back. (1)
  13. how do you make a login form in visual basic 2008 - 3.22 hr back. (1)
  14. how to add a progress bar into a vb web browser - 3.50 hr back. (1)
Similar Topics

Keywords : make, web, browser, visual, basic, 6

  1. Ftp In Visual Basic 6.0
    Start making your FTP client using VB6 (1)
  2. Creating A Timer Program
    Using Visual Basic 2005 (8)
    This tutorial will explain how to create a basic timer using Visual Basic Express 2005. If you
    don't have it, it's free and you can dowload it from Microsoft's website. All you need
    is a few minutes to sit down and read this and a version of Visual Basic. OK, so what will this
    timer actually do? Well, you are able to enter a number of minutes and a message, and then click a
    button. Once the timer is up, your message pops up and you are reminded! So, basically it's
    a little reminder system. I use it to remind me when TV programmes start, when I have to....
  3. Creating A Simple Image Viewer
    Using Visual Basic 2005 Express Edition (4)
    I downloaded Microsoft's Visual Studio Express suite a few months ago, but only recently got
    around to installing it. I have been practising with Visual Basic and making some rather basic
    programs and utilities, but they contain most of the basic concepts. This tutorial will explain how
    to create a basic image viewer, and I will try to explain each step from beginning to end as clear
    as I can. To start you will need: Microsoft Visual Studio About 10-20 minutes free time OK,
    first open up the Visual Basic part of the Studio. I am using the 2005 Express version, so....
  4. Bit Shifting In Vb
    Shifting bits in Visual Basic (0)
    This is for all Visual Basic programmers out there, who want to programm some form of encryption
    algorithm, or anything else that includes shifting bits left or right, for that matter. Most of you
    who have tried to accomplish this, know that Visual Basic doesn't have any function for bit
    shifting. And bit shifting si very usefull /smile.gif' border='0' style='vertical-align:middle'
    alt='smile.gif' /> Some of you probably know how to shift bits, but this tutorial is for those who
    don't know how to do it... Shifting bits is actualy easy, we use multiplication ....
  5. Simple Login In Visual Basic 6
    user interaction example trough login programm (6)
    First of all, I am NOT a programmer, this is something my friend taught me. It describes basic
    interaction with the user, while showing basic functionality of this simple programm. So, without
    further ado, we're off to the tutorial: First of all, start your visual basic, when prompted
    for new project, select Standard Exe . Next, we need to open code window, so we can start typing
    the program. This can be done in two ways, one is double clicking on the form, or selecting Code
    from View menu. If you double clicked on the form, you will see following text: CODE ....
  6. Simple Visual Basic 6 Tutorial
    Tutorial 1: Msgbox (0)
    For this tutorial you will learn how to make a very simple, and basic program. Step one- Create a
    new form. Step two- Click the command button on the side and make two buttons. Step Three- Click
    on on of the command buttons you drew, and on the side there will be a menu. Change the caption to
    Button 1, and repeat the same with the other button, but the caption Button 2. Step four- Double
    click one of the buttons, and put in CODE Dim button button = MsgBox("What you want to
    say here", 65, "Title") Now change that code to what you want it ....
  7. [tutorial] Visual Basic 6
    Adding Commas to Large Numbers (0)
    This isn't a very long tutorial. I get asked this often, so here is the solution. The following
    code will return a string containing a number that has commas appropriately placed: Code:
    myStringOrProperty = FormatNumber(3587532789053, 0) The second parameter (0) represents how many
    decimal places you want the returned number to go out to. Unless your number contains its own
    decimal, you probably don't want .00 at the end of every number you have. The above code would
    return: 3,587,532,789,053 This should make life easier for many.......
  8. [tutorial] Visual Basic 6
    Closing Programs Right, Why END is bad (4)
    This tutorial applies to all those people who insist upon using "End" to close their programs: End
    stops the program immediately without any thought as to what's going on - it's like a high
    speed train hitting a brick wall. It can cause unwanted errors and is bad programming practice in
    general. END gets rids of the form, but NOT its leftovers. This leaves a bunch of memory that will
    still be in use even after your program has supposedly closed. An object or variable won't be
    terminated properly - it's just not a graceful exit. The only time that it'....

    1. Looking for make, web, browser, visual, basic, 6

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for make, web, browser, visual, basic, 6

*MORE FROM TRAP17.COM*
advertisement



How To Make A Web Browser - Visual Basic 6



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE