I have a problem in upgrading a program from VB6 to .NET which I hope someone can help me with. I am a new .NET programmer so I hope you can be quite specific in your assistance as my knowledge base is very low.
I get 3 errors which are the same "Name 'load' is not declared". Can you help please? Many thanks in anticipation of assistance.
Public Sub Main()
'Load all forms
'UPGRADE_ISSUE: Load statement is not supported. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="B530EFF2-3132-48F8-B8BC-D88AF543D321"'
Load(frmStartup)
'UPGRADE_ISSUE: Load statement is not supported. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="B530EFF2-3132-48F8-B8BC-D88AF543D321"'
Load(frmBlankScreen)
'UPGRADE_ISSUE: Load statement is not supported. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="B530EFF2-3132-48F8-B8BC-D88AF543D321"'
Load(frmQuestions)
frmStartup.Show()
End Sub