neodammer Posted August 11, 2004 Posted August 11, 2004 I remember in vb 6.0 how easy it was to just drag a big IE box on the form and then with alittle code make it jump to a web page. How would one go about doing the same in vb.net ? Quote Enzin Research and Development
*Experts* Nerseus Posted August 11, 2004 *Experts* Posted August 11, 2004 You have to add a WebBrowser control. It works pretty much the same way, drag and drop, set the URL (or NavigateUrl or something like that). The control is not in the toolbox by default but you can add it by right clicking the toolbox and selecting "Customize...". -ner Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
neodammer Posted August 11, 2004 Author Posted August 11, 2004 funny, in the add/remove list for my toolbox i dont have a WebBrowser control...hmm Quote Enzin Research and Development
neodammer Posted August 11, 2004 Author Posted August 11, 2004 funny' date=' in the add/remove list for my toolbox i dont have a WebBrowser control...hmm[/quote'] bah i found it nevermind thanks the info :p its called axwebbrowser for me though..odd Quote Enzin Research and Development
ost Posted August 11, 2004 Posted August 11, 2004 bah i found it nevermind thanks the info :p its called axwebbrowser for me though..odd not odd. Thats what it's called :D Quote
Jay1b Posted August 11, 2004 Posted August 11, 2004 I BELIEVE axwebbrowser is the VB6 one, VB.NET can access a number of controls from VB6. Such as MsComm for one. You would be better off finding the right (VB.NET) one, future versions wont support the old VB6 controls. Quote
Administrators PlausiblyDamp Posted August 11, 2004 Administrators Posted August 11, 2004 Current versions of VS do not have a replacement for the axwebbrowser component, future versions however will ship with a manageed version of the web browser control. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Ontani Posted August 11, 2004 Posted August 11, 2004 Current versions of VS do not have a replacement for the axwebbrowser component' date=' future versions however will ship with a manageed version of the web browser control.[/quote'] ???? Go in Microsoft Visual Basic .Net to : Tools > Costumize Toolbox > The COM Components Tab scroll down to Microsoft Web Browser select it and press ok now its in your Toolbox and its the same as in vb 6.0 just drag and drop. to go to a webpage do AxWebBrowser1.Navigate("http://xtremedotnettalk.com") Greetz Quote www.purevision.be :: www.devpoint.be
Denaes Posted August 11, 2004 Posted August 11, 2004 ???? Go in Microsoft Visual Basic .Net to : Tools > Costumize Toolbox > The COM Components Tab scroll down to Microsoft Web Browser select it and press ok now its in your Toolbox and its the same as in vb 6.0 just drag and drop. to go to a webpage do AxWebBrowser1.Navigate("http://www.xtremedotnettalk.com") Greetz Thats a COM component, not a .Net component. It won't be suported in the future and is slower while using more resources in .Net applications. Of course when there isn't an alternative you use what you have until you can write a better version yourself or someone else does. Quote
neodammer Posted August 12, 2004 Author Posted August 12, 2004 Yeah I have noticed that when using this browser in my program it sloooows down majorly Quote Enzin Research and Development
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.