0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

M_Common:各種定義

Posted at

共通処理の各種定義

'##############################################################################
' 共通処理
'##############################################################################
' 参照設定          |   ―
'------------------------------------------------------------------------------

'==============================================================================
' 公開定義
'==============================================================================
' 定数定義
'------------------------------------------------------------------------------
Public Const D_ROW_START As Long = 1
Public Const D_ROW_NONE As Long = D_ROW_START - 1
Public Const D_ROW_NOW As Long = D_ROW_NONE - 1
Public Const D_ROW_END As Long = D_ROW_NOW - 1

Public Const D_CLM_START As Integer = 1
Public Const D_CLM_NONE As Integer = D_CLM_START - 1
Public Const D_CLM_NOW As Long = D_CLM_NONE - 1
Public Const D_CLM_END As Integer = D_CLM_NOW - 1

Public Const D_IDX_START As Long = 1
Public Const D_IDX_NONE As Long = D_IDX_START - 1
Public Const D_IDX_NOW As Long = D_IDX_NONE - 1
Public Const D_IDX_END As Long = D_IDX_NOW - 1

Public Enum E_RET
    E_RET_NG = 0
    E_RET_OK
    E_RET_OK_1
    E_RET_OK_2
End Enum

Public Enum E_CHECK
    E_CHECK_NONE = 0
    E_CHECK_OR
    E_CHECK_MATCH
End Enum

'==============================================================================
' 内部定義
'==============================================================================
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?