English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

我想大家比我一個 vb6.0 的字元碼全集(keyascii)給我。

例如: A = 65
a = 97
我要的是全部字元。

還有,我想大家比我一條公式可以找出中英數字的字元碼。(用vb6.0)

2007-02-28 12:39:23 · 3 個解答 · 發問者 Anonymous in 電腦與網際網路 程式設計

3 個解答

ascii 字元碼
1~31只能在nt顯示

圖片參考:http://polyart.com.hk/img/alt98.gif


圖片參考:http://polyart.com.hk/nop/n30.gif

2007-02-28 21:49:37 · answer #1 · answered by ☆ Nop ☆ 7 · 0 0

'ascii只有256個字
'首先在form上放置一個listbox(List1)
dim i as long
for i = 0 to 255 '雖然有256個,但是vb用的是0-255.一樣有256個
List1.additem chr(i) & " = " & i
next

中文字不屬ascii,但是如果用asc來解也是解到,只不過解成負數,也無法用chr回復

2007-03-02 15:34:11 · answer #2 · answered by Rvy 6 · 0 0

excel 同 VB 6 ASSII碼一樣,下面個sub 可以搵到A-Z, 其他自已搵,只要改65 to 90 No.就得。
sub ShowASSIIAtoZ()
dim i as integer
for i=65 to90
msgbox i & Chr(i)
next i
end sub

2007-02-28 14:55:19 · answer #3 · answered by ? 2 · 0 0

fedest.com, questions and answers