w7 ->VB6 错误“未定义用户定义的类型" [英] w7 -> VB6 error "User-defined type not defined"

查看:20
本文介绍了w7 ->VB6 错误“未定义用户定义的类型"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在尝试编译 VB6 程序时收到错误未定义用户定义的类型".编译器突出显示了语句Public fMainForm As frmMain".这个程序以前编译没有错误.

I receive error "User-defined type not defined" when trying to compile a VB6 programme.The statement "Public fMainForm As frmMain" is highlighted by the compiler. This programme has previously compiled without error.

我的代码是

Public fMainForm As frmMain
Public commonSQl, commonDSN, commonPealNo, commonDove, _
commonGridRefE, commonGridRefN As String
Public commonDate As Date
Public commonShowUnringable As Boolean
Public IsOpen As Integer



Sub Main()
    Dim fLogin As New frmLogin
    commonDSN = ""
    fLogin.Show vbModal
    Isloaded = -1
    If Not fLogin.OK Then
    'Login Failed so exit app
    End
    End If
    Unload fLogin


    frmSplash.Show
    frmSplash.Refresh
    Set fMainForm = New frmMain
    Load fMainForm
    Unload frmSplash


    fMainForm.Show
End Sub

推荐答案

您可能没有将 frmMain 表单添加到您的项目中.请检查它是否可用.

You probably don't have frmMain form added to your project. Please check that it is available.

这篇关于w7 ->VB6 错误“未定义用户定义的类型"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆