kante Posted November 11, 2003 Posted November 11, 2003 is it possible to extend the webbrowser class to teach it to read not just the common files like html but also other files like encripted html ? so the html project will not be visible without my webbrowser vb.net application.... do u have any examples of this? Thank you Quote
Voca Posted November 12, 2003 Posted November 12, 2003 First of all I've no clues what this Browser-Class does, where it is located and how to use it. I think the only way teaching your Browser-Class new Methods will be, that you inherit it. It should look something like: Class MyNewBrowserClass Inherits MyOldBrowserClass Public Function MyFunc() as ... ... End Class Advantage: You can decide how to call the methods, wich paramters you use and so on. Disadvantage: You will have to do the writing and testing of this Class on your own. Hope it will help! Voca Quote
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.