visual basic程序设计教程第四版答案(刘炳文)
编写一个程序,当同时按下Alt键和F6键或者同时按下Shift键和F6键时,在窗体上显示“再见!”,并终止程序的运行。
解:编写VB程序如下:
Const altkey = 4
Const shiftkey = 1
Const f6key = &H75
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = f6key And (Shift = altkey Or Shift = shiftkey) Then
Print "再见!"
End
End If
End Sub
来源:visual basic程序设计教程第四版答案(刘炳文)
本文链接:http://www.wb98.com/vb1/post/vb_10.8.html
本站文章搜索: