?? clsenumtype.cls
字號:
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "clsEnumType"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Option Explicit
'***********************************************************************
'* 枚舉名:DbOpResult
'* 功 能:數據庫操作結果
'* 版 本:2005.12.29 顏志軍 初版
'***********************************************************************
Public Enum DbOpResult
DbOpOk = 0 '數據庫操作成功
DbOpNG = -1 '數據庫操作失敗
DbOpRecExist = 1 '記錄關鍵字/標識已存在
DbOpRecNoExist = 2 '記錄關鍵字/標識不存在
DbOpOnlyRec = 3 '唯一記錄
End Enum
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -