I'm C# newbie, how do I add a website to my application using Microsft Web Browser control? Please tell me step by step
-
I was able to add the Microsoft Web Browser control in Visual Studio .NET 2003, but alot of the properties are in grey so I can't point url to the control, please tell me exact how I can add a url to the Microsoft Web Browser control I added on my C# windows form application, what code I write? I'm total noob, I only know how to use the IDE but I don't know the C# language syntax, please help X_x;; http://www.hentaitheme.com Free Public Ragnarok Online Game Server
-
I was able to add the Microsoft Web Browser control in Visual Studio .NET 2003, but alot of the properties are in grey so I can't point url to the control, please tell me exact how I can add a url to the Microsoft Web Browser control I added on my C# windows form application, what code I write? I'm total noob, I only know how to use the IDE but I don't know the C# language syntax, please help X_x;; http://www.hentaitheme.com Free Public Ragnarok Online Game Server
Hi .. just add the Web Browser Control to you application, then use object flags = 0; object targetFrame = String.Empty; object postData = String.Empty; object headers = String.Empty; this.axWebBrowser1.Navigate("http://www.ebay.com/", ref flags, ref targetFrame, ref postData, ref headers); But if you want more informations there are some WebBrowser Source Codes here on Codeproject! That you are a beginner is no problem, but learning is to understanding :cool::) If you want to program such things you have to learn c# ;) Greets Matthias
-
Hi .. just add the Web Browser Control to you application, then use object flags = 0; object targetFrame = String.Empty; object postData = String.Empty; object headers = String.Empty; this.axWebBrowser1.Navigate("http://www.ebay.com/", ref flags, ref targetFrame, ref postData, ref headers); But if you want more informations there are some WebBrowser Source Codes here on Codeproject! That you are a beginner is no problem, but learning is to understanding :cool::) If you want to program such things you have to learn c# ;) Greets Matthias
you can't just add these codes anywhere right? object flags = 0; object targetFrame = String.Empty; object postData = String.Empty; object headers = String.Empty; this.axWebBrowser1.Navigate("http://www.ebay.com/", ref flags, ref targetFrame, ref postData, ref headers); I mean you have to add those code within something{ } right? but where? X_x; http://www.hentaitheme.com Free Public Ragnarok Online Game Server
-
you can't just add these codes anywhere right? object flags = 0; object targetFrame = String.Empty; object postData = String.Empty; object headers = String.Empty; this.axWebBrowser1.Navigate("http://www.ebay.com/", ref flags, ref targetFrame, ref postData, ref headers); I mean you have to add those code within something{ } right? but where? X_x; http://www.hentaitheme.com Free Public Ragnarok Online Game Server
Take a look at any of the articles for the basics of c#.