Office中国论坛/Access中国论坛

标题: 【原创 / 资料】窗体控件绑定数据库字段后的Value类型 [打印本页]

作者: LucasLynn    时间: 2005-8-30 13:23
标题: 【原创 / 资料】窗体控件绑定数据库字段后的Value类型
废话不多说,三张图就可以说明了:

有记录,字段有值:[attach]12822[/attach]

有记录,字段为空:[attach]12823[/attach]

新记录,尚未创建:[attach]12824[/attach]

附这个窗体的源码:

Option Compare Database

Option Explicit

Private Sub Form_Load()

    Msg.Enabled = True

    Msg.Locked = False

    Msg.Value = ""

    Dim i As Byte

    For i = 0 To 13

        Msg.Value = Msg.Value & "As " & GetType(Me("f" & i).Value) & vbCrLf

    Next i

    Msg.Locked = True

    Msg.Enabled = False

End Sub

Public Function GetType(var As Variant) As String

    Select Case VarType(var)

    Case vbEmpty

        GetType = "vbEmpty"

    Case vbNull

        GetType = "vbNull"

    Case vbInteger

        GetType = "vbInteger"

    Case vbLong

        GetType = "vbLong"

    Case vbSingle

        GetType = "vbSingle"

    Case vbDouble

        GetType = "vbDouble"

    Case vbCurrency

        GetType = "vbCurrency"

    Case vbDate

        GetType = "vbDate"

    Case vbString

        GetType = "vbString"

    Case vbObject

        GetType = "vbObject"

    Case vbError

        GetType = "vbError"

    Case vbBoolean

        GetType = "vbBoolean"

    Case vbVariant

        GetType = "vbVariant"

    Case vbDataObject

        GetType = "vbDataObject"

    Case vbDecimal

        GetType = "vbDecimal"

    Case vbByte

        GetType = "vbByte"

    Case vbUserDefinedType

        GetType = "vbUserDefinedType"

    Case vbArray

        GetType = "vbArray"

    Case Else

        GetType = "TypeCode: " & VarType(var)

    End Select

End Function







[此贴子已经被作者于2005-9-21 23:00:32编辑过]


作者: zhengjialon    时间: 2005-8-30 17:43
不错!不过GetType函数改成ublic Function GetType(var As Variant) As String

    GetType = VarType(var)

End Function是否可行?我没有试过是否有可能出现错误的地方.


作者: LucasLynn    时间: 2005-8-30 17:47
以下是引用zhengjialon在2005-8-30 9:43:00的发言:



不错!

不过GetType函数改成:

Public Function GetType(var As Variant) As String

    GetType = VarType(var)

End Function

是否可行?我没有试过是否有可能出现错误的地方.



这样应该只能返回一个内容为数字的字符串吧。
作者: LucasLynn    时间: 2005-8-31 19:47
重新贴了图,分三种模式来读取。
作者: chaojianan    时间: 2009-10-24 11:35
谢谢分享。




欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3