.Net components in DHTML?

  • Thread starter Thread starter Kevin Chabot
  • Start date Start date
K

Kevin Chabot

Hi,

Maybe some of you remember. In VB6 it was possible to create a Document
ActiveX component.
This would be an ActiveX EXE file, that can be loaded from a DHTML webpage
(using <object> for example).
Can a similar thing be done in VB.Net?

I don't seem to find any resources to do this and it can't use ASP or
something, it should be able to run from a local HTML file.

Kind regards,
Kevin Chabot
 
Yes, I see...

But how do I create/init a UI?
And how do I use it in HTML...
Does anyone have a good resource on this?

Kind Regards,
Kevin Chabot
 
* "Kevin Chabot said:
Maybe some of you remember. In VB6 it was possible to create a Document
ActiveX component.
This would be an ActiveX EXE file, that can be loaded from a DHTML webpage
(using <object> for example).
Can a similar thing be done in VB.Net?

I don't seem to find any resources to do this and it can't use ASP or
something, it should be able to run from a local HTML file.

The possibilities are very limited:

J# Browser Controls provide developers with a way to migrate their existing
Java applet source code to run within the context of the .NET Framework

<http://www.microsoft.com/downloads/details.aspx?FamilyID=325a8f15-fe7b-4087-aa46-6d3e1b6108e0>

MSDN documentation link:

<http://msdn.microsoft.com/library/e...ingJavaAppletsToMicrosoftJBrowserControls.asp>

For .NET 1.0, controls as ActiveX are only supported hosted in MS IE 5+6:

<http://support.microsoft.com/default.aspx?scid=kb;en-us;Q311334>
<http://support.microsoft.com/default.aspx?scid=kb;en-us;q317346>

Using Windows Forms Controls in Internet Explorer:

<http://msdn.microsoft.com/msdnmag/issues/02/06/rich/rich.asp>
 
Back
Top