VB程式設計實現

2022-12-21 02:16:06 字數 603 閱讀 5553

1樓:匿名使用者

vb中提供了keypress,keydown,keyup三個事件來響應鍵盤

這3個事件中第乙個事件有keyascii引數,像一樓說的我介紹另2個事件

後2個事件都有2個引數keycode, shift 型別均為integer整型

所謂的keycode引數就是按下鍵的ascii碼通過這個引數我們就可以知道按下了什麼鍵

private sub form_keydown(keycode as integer, shift as integer)

print "您按下了" & chr(keycode)end sub

以上**即可實現你想要實現的功能

你也可以寫keyup事件,**相同,但up事件不常用講點多餘的

shift引數

同來判斷ctrl alt shift三個鍵的按鍵狀態,包括組合按鍵具體**就不寫了

2樓:擁雲莊主

窗體的keypress事件中新增如下**就行了private sub form_keypress(keyascii as integer)

print "您按下了" & chr(keyascii)end sub

vb程式設計習題,VB程式設計習題

1.x val inputbox input x if x 10 then y abs x if x 20 then y sqr 3 x 1 if x 20 then y 3 x 2debug.print y 2.x val inputbox input x if x 10 then y abs x...

vb程式設計,什麼是VB程式設計?

1設計引數介面2 設計介面上各個控制項屬性3 編寫程式 4除錯和儲存 什麼是vb程式設計?visual basic程式設計是basic程式語言。vb擁有圖形使用者介面 gui 和快速應用程式開發 rad 系統,可以輕易的使用dao rdo ado連線資料庫,或者輕鬆的建立active x控制項,用於...

VB程式設計

private sub command1 click dim i as integer dim a3,a7 as integerfor i 1 to 100 if i mod 3 0 then a3 a3 1 end if if i mod 7 0 then a7 a7 1 end if next ...