Creating Web Controls in VB.Net

  • Thread starter Thread starter Robert
  • Start date Start date
R

Robert

Hello all,

All of our programs have been written as Active X
controls in VB 6 and are accessed through Internet
Explorer. This has made it easy for verion control. I
would like to now upgrade everything to .Net, but will
most likely rewrite most of the code. Could you provide
suggestions to accomplish this similar setup in VB.Net?

Thanks in advance.
 
* "Robert said:
All of our programs have been written as Active X
controls in VB 6 and are accessed through Internet
Explorer. This has made it easy for verion control. I
would like to now upgrade everything to .Net, but will
most likely rewrite most of the code. Could you provide
suggestions to accomplish this similar setup in VB.Net?

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