Custom made control  
Author Message
progames25





PostPosted: Visual C# Express Edition, Custom made control Top

Hey,

How in VC#2005 would I creat my own contro, for my programs I need to amke a webbrowser control so it will not use Internet Explorers so I can make it do what I want it to do...But I dunno what option in Visual C# 2005 lets me create a control... ... ...

Thanks :)




Visual Studio Express Editions43  
 
 
nobugz





PostPosted: Visual C# Express Edition, Custom made control Top

You would start with:
Public Class MyBrowser
Inherits Control
End Class

Now, you need to cough up a massive amount of code to make it actually look like a WebBrowser control without using Internet Explorer or the built-in WebBrowser control. Good luck.


 
 
progames25





PostPosted: Visual C# Express Edition, Custom made control Top

ya, thats the hard part of it all, but is it possible to have it get...no...nevermind...

Thanks :)