Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

Posted

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...