var fDesc=new Array();
fDesc[0] = "VB6TOCS is an assistant tool that converts Visual Basic 6.0 projects to Visual C# .NET.
VB6TOCS creates a new project, converts each file from the original project(.vbp) into the new project(.csproj), and generates a report detailing what was done.
After your project is converted, VB6TOCS inserts comments into your C# code alerting you to statements that will need to be changed.
- Migrates Visual Basic 6.0 to C#
-Visual Basic 6.0 Data type
-Visual Basic 6.0 Constants
-Visual Basic 6.0 Functions
-Visual Basic 6.0 Statements
-Visual Basic 6.0 Operators
- Visual Basic 6.0 Objects
- Migrates Visual Basic 6.0 Controls to .NET
- Migrates Visual Basic 6.0 Forms to .NET
- Generates New C# project
- Converts .res file to .resX file
- Generates the .NET assembly for ActiveX/COM
- Analyzes and re-defines the variables with C# Data Type
- Generates the migration report";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}