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?
PrivateSub Form_Load()
Text1.FontName = cboBundleName.FontName = "MS Sans Serif"
EndSub
PrivateSub Form1_Load(ByVal eventSender AsObject, ByVal eventArgs As EventArgs) HandlesMyBase.Load
Dim cboBundleName AsObject
'UPGRADE_TODO: (1067) Member FontName is not defined in type Variant.
Text1.Font = VB6.FontChangeName(Text1.Font, CStr(cboBundleName.FontName = "MS Sans Serif"))
EndSub
privatevoid Form1_Load( Object eventSender, EventArgs eventArgs)
{
object cboBundleName = null;
//UPGRADE_TODO: (1067) Member FontName is not defined in type Variant.
Text1.Font = VB6.FontChangeName(Text1.Font, (Convert.ToString(cboBundleName.FontName) == "MS Sans Serif").ToString());
}