代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/109105/15563651
bas mdlstudentinfo.bas
Attribute VB_Name = "StudentInfo"
Option Explicit
Public StudentNum As String '保存学生学号
Public StudentCode As String '保存学生考号
Public TestServerIP As String '保存考试服务器IP
www.eeworm.com/read/106634/15631633
bas general.bas
Attribute VB_Name = "General"
Option Explicit
Declare Function SetWindowPos& Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, By
www.eeworm.com/read/291867/8391728
vb send.aspx.designer.vb
'------------------------------------------------------------------------------
'
' 此代码由工具生成。
' 运行库版本:2.0.50727.42
'
' 对此文件的更改可能会导致不正确的行为,并且如果
' 重新生成代码,这些更改将会丢失
www.eeworm.com/read/291867/8391736
vb login.aspx.designer.vb
'------------------------------------------------------------------------------
'
' 此代码由工具生成。
' 运行库版本:2.0.50727.42
'
' 对此文件的更改可能会导致不正确的行为,并且如果
' 重新生成代码,这些更改将会丢失
www.eeworm.com/read/291867/8391754
vb application.designer.vb
'------------------------------------------------------------------------------
'
' 此代码由工具生成。
' 运行库版本:2.0.50727.1433
'
' 对此文件的更改可能会导致不正确的行为,并且如果
' 重新生成代码,这些更改将会
www.eeworm.com/read/291867/8391776
vb show.aspx.designer.vb
'------------------------------------------------------------------------------
'
' 此代码由工具生成。
' 运行库版本:2.0.50727.42
'
' 对此文件的更改可能会导致不正确的行为,并且如果
' 重新生成代码,这些更改将会丢失
www.eeworm.com/read/390183/8480492
asm expimp.asm
;
; Test of explicitly and implicitly sized operands
;
add esi,2 ; Implicit
add esi,123456h ; Implicit
add esi,byte 2 ; Explicit
add esi,dword 2 ; Explicit
add esi,dword 123456h ;
www.eeworm.com/read/188511/8533677
txt 代码.txt
Option Explicit
Private Sub Command1_Click()
Dim c1 As New Class1
MsgBox c1.DigestStrToHexStr(Text1.Text)
End Sub