BYTEINSIGHT
GAPVelocity AI Studio helps you move from outdated tech stacks to the latest desktop, web, and cloud platforms—smarter, faster, and with less risks.
Choose a platform to see migration options:
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?
The VB6 AI Migrator analyzes the private subroutines and functions of each source code file, identifies the ones which are not used and generates them commented out with the 7001 EWI preceding them. This improves the migration process by reducing the amount of manual work required to compile the application in .NET.
The target methods can removed from the upgraded source code if they will not be used in the future.
The code for these methods is migrated, but commented out. If it is necessary to keep this code, it can be un-commented and used with the rest of the application.
Private Sub DeadCode() MsgBox "DeadCode" End Sub
'UPGRADE_NOTE: (7001) The following declaration (DeadCode) seems to be dead code. 'Private Sub DeadCode() 'MessageBox.Show("DeadCode", My.Application.Info.Title) 'End Sub
//UPGRADE_NOTE: (7001) The following declaration (DeadCode) seems to be dead code. //private void DeadCode() //{ //MessageBox.Show("DeadCode", AssemblyHelper.GetTitle(System.Reflection.Assembly.GetExecutingAssembly())); //}