webishqiptar 0 Report post Posted June 2, 2009 Wow what a nice tutorial. Are there any other places where I can learn to make web applications using Visual Basic. I wish I had some time because I like this stuff a lot. Share this post Link to post Share on other sites
shaks786 0 Report post Posted June 3, 2009 i tried this but when i try to load a page in my browser it's really slow.. and sometimes the webpage just doesn't appearguess im sticking with google chrome Share this post Link to post Share on other sites
Gravity17 0 Report post Posted June 5, 2009 Lol one of the first and easiest things you will learn about in visual basic hahaha, maybe you can add tabs to the tut? or is that not in vb6? Share this post Link to post Share on other sites
iGuest 3 Report post Posted July 9, 2009 How to display status in vb 2005/2008 expressHow To Make A Web BrowserStatus Text: Label1.Text=WebBrowser1.StatusText Form Text: Me.Text=WebBrowser1.DocumentTitle & "-(wathever do you want)" Url Text: TextBox1.Text=WebBrowser1.Url.ToString-reply by Skynet Share this post Link to post Share on other sites
Deam` 0 Report post Posted July 21, 2009 This was usefull, thanks. But I don't like this kind of browser because it's too slow, and it's unsafe. I think it's better to use already made browsers for surfing on internet Share this post Link to post Share on other sites
iGuest 3 Report post Posted August 11, 2009 So when a page is finally displayed when you click a link it open IEXPLORER!How To Make A Web BrowserSo when a page is finally displayed when you click a link it open IEXPLORER 8.0, so it is not a browser as it doesn't produce a self contained program. You can do simpler macro that Remote Control IExplorer with Autoit basic macro language you will have a coherent interface and an addon that don't need any runtime. So forget about Microsoft it's another bluf to sell VB with a book included for some dollars and make serious youngs who want to learn programming in an endless loop, only exit is support. Firefox, Chrome, Safari use Webkit library to display web pages WEBKIT.Org all embeded in a QT interface, it's more serious stuff even if it is free, imagine they will have the budget to design F22/F35 switches... Happy programming Max Share this post Link to post Share on other sites
iGuest 3 Report post Posted September 8, 2009 FirefoxHow To Make A Web BrowserFirefox/the Gecko Engine Is Created With C++ C And Java Actually (Strange Using Java In A Web Browser) But All The Files In The Folder /Chrome Are All Jar / Executable Java Files So yeah XD-reply by Tobi Share this post Link to post Share on other sites
iGuest 3 Report post Posted September 25, 2009 My this is bugged up! Someone help me!!How To Make A Web BrowserHi Guyz & Girls My VB6 is stuffed cos I can't get it to run Runescape cos I wanna make a Runescape Client this is my code: Private Sub cmdback_Click()WebBrowser1.GoBackEnd Sub Private Sub cmdforward_Click()WebBrowser1.GoForwardEnd Sub Private Sub cmdgo_Click()WebBrowser1.Navigate (Text1.Text)End Sub Private Sub cmdrefresh_Click()WebBrowser1.RefreshEnd Sub Private Sub Form_Load()WebBrowser1.Navigate ("http://www.runescape.com/;)End Sub Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)Text1.Text = (WebBrowser1.LocationURL)Form1.Caption = (WebBrowser1.LocationName)End Sub-reply by Its bugged up! (or my VB6) Share this post Link to post Share on other sites
iGuest 3 Report post Posted December 24, 2009 @iGuest Firefox isn't actually made from Java. Those are actually packaged XUL files in the /chrome directory. Copy one of the *****.Jar files and rename it to *****.Zip. Then extract the .Zip file and...Look! XUL files! Share this post Link to post Share on other sites
deadmad7 4 Report post Posted December 24, 2009 pretty basic programming for a web browser! i bet this is how internet explorer and firefox must have started nice tutorial and there is even a youtube video tutorial which tells/shows you have to do this! Share this post Link to post Share on other sites
thejode 0 Report post Posted December 31, 2009 I remember that I created a web browser similar to the one you mentioned. It was like a modified version of Internet Explorer, just somewhat cut down in terms of functionality. There is no back, forward, refresh, or history button. I find that it loads faster than IE due to the fact that has no add ons. I think there are probably tutorials for more complicated browsers on Youtube. Share this post Link to post Share on other sites
k_nitin_r 8 Report post Posted January 1, 2010 Hi!I don't exactly know why earlier posters in the thread mention that using the Web Browser control on a Visual Basic form gave them a slower browser. It should have been faster because it does not load all of the controls that Microsoft Internet Explorer does. I'm not sure of whether it loads the add ons though I do believe that it loads the plugins (such as Adobe Flash Player, Adobe Shockwave Player, and the Java Runtime plugin for the browser).In response to an earlier post, I would like to mention that even if Firefox was building using Visual Basic, it would be possible to distribute the software - using a proprietary language or platform does not mean that the software built with it cannot be distributed for free. In fact, there are several programs built with C# and distributed with Linux to run over the Mono .NET framework. Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 5, 2010 Hi! It is an already known code. But new users can get an opportunity to learn. Anyway thank u. -reply by Chinnakkani A Share this post Link to post Share on other sites
iGuest 3 Report post Posted April 5, 2010 actually, the loading time of the browser will be speed up when you complete it with the http:// mark. As much as I've found out, it's trying to resolve the URL and then go to the address. So you'd better design a program that resolves it automatically. Try it! -reply by domdayta1 Share this post Link to post Share on other sites
zsepia 0 Report post Posted August 23, 2010 (edited) @zsepia Yeah cool.... I made Web-Displayr out of it and posted it at http://forums.xisto.com/no_longer_exists/ You'll have to jack the filesystem! Have fun! Edited August 23, 2010 by zsepia (see edit history) Share this post Link to post Share on other sites