代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/131417/14147090
bas global.bas
Attribute VB_Name = "Globals"
Option Explicit
Public Conn As New ADODB.Connection
Public ErrNum As long, ErrMsg As String, mvarIsConnected As Boolean
Public Function ErrHandler(ByVal ErrorNumber
www.eeworm.com/read/233458/14150332
bas basstring.bas
Attribute VB_Name = "basString"
Option Explicit
Private Declare Function IsCharAlpha Lib "user32" _
Alias "IsCharAlphaA" (ByVal cChar As Byte) As Long
Private Declare Function IsCharAlph
www.eeworm.com/read/233458/14150370
bas basmath.bas
Attribute VB_Name = "basMath"
Option Explicit
'
' Converts a number in any base from 2 to 36
' to a long.
'
' Note, this doesn't verify if the string
' is a valid number in the given base
www.eeworm.com/read/232849/14180135
bas modmsf.bas
Attribute VB_Name = "modMSF"
Option Explicit
Private Declare Sub CopyMemory Lib "kernel32" _
Alias "RtlMoveMemory" ( _
dest As Any, _
source As Any, _
ByVal dlen As Long _
)
Pu