BYTEINSIGHT
GAPVelocity AI Studio helps you move from outdated tech stacks to the latest desktop, web, and cloud platforms—smarter, faster, and with less risk.
Choose a platform to see migration options:
Our comprehensive approach to application modernization, from assessment to production deployment.
Transformation Services
Not Sure Where to Start?
Some functions that were used in VB6, such as Load and Unload, are not directly available in .NET and are therefore not converted by VB6 AI Migrator.
Use a .NET equivalent function (Show or ShowDialog) of the Form class in order to make the code compile and run.
Dim tempform As Form2
Set tempform = New Form2
Load tempform
tempform.Visible = True
Dim tempform As New Form2
'UPGRADE_ISSUE: (1039) Load statement is not supported.
Load(tempform)
tempform.Visible = True
Dim tempform As New Form2
tempform.ShowDialog()
Form2 tempform = new Form2();
//UPGRADE_ISSUE: (1039) Load statement is not supported.
Load(tempform);
tempform.Visible = true;
Form2 tempform = new Form2();
tempform.ShowDialog();