webbrowser

kante

Newcomer
Joined
Jan 16, 2003
Messages
13
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
 
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
 
Back
Top