?? dochex.bas
字號:
Attribute VB_Name = "DocHex"
Public Function Doc_Hex(doc_num As Integer) As String
Dim hex_word As String
Dim hex_len As Byte
hex_word = Hex(doc_num)
hex_len = Len(hex_word)
Select Case hex_len
Case 1: Doc_Hex = "0" + hex_word
Case 2: Doc_Hex = hex_word
Case 3: Doc_Hex = "0" + hex_word
Case 4: Doc_Hex = hex_word
End Select
End Function
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -