- 1、本文档共23页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VB实验G(国外英文资料)
VB实验G(国外英文资料)
The G
One, the purpose of the experiment
Master the use of common controls
Learn to program using common dialog controls
Learn how to design a drop-down menu and pop-up menus
Master the technique of creating multiple forms of Windows
Learn about mouse and keyboard events and how they are written
Synthesize the knowledge and write applications that have a visual interface
Second, experimental content
1. Design an application, can use LostFocus legitimacy check the memory size of the input event process, to ensure that the last two characters is MB, the rest are numeric characters. When the user clicks the OK button, the selected information is displayed in the text box on the right.
Code: Private Sub Command1_Click ()
List1. Clear
List1. AddItem Combo1
If Option1 Then list1.additem Pentium II
If Option2 Then list1.additem Pentium I
If Option3 Then list1.additem Celeron
Combo1. AddItem Text1
If Check1 Then list1.additem sound card
If Check2 Then list1.additem Modem
If Check3 Then list1.additem network adapter
End Sub
Private Sub Text1_LostFocus ()
So, st = UCase (text 1)
Le = Len (st)
If Not IsNumeric (Left (st, le - 2)) Or Right (st, 2) , Then
MsgBox has illegal characters!
Text1 =
Text1. SetFocus
End the If
End Sub
Design the following computer program
Write interest calculations. When the principal, month, or annual interest rate is changed by the scroll bar, the value of the interest and the total interest are calculated immediately
Code: Private Sub HScroll1_Change ()
Text1 = VScroll1. Value
Text2 = HScroll1. Value
Text3 = HScroll2. Value
Text4 = Format (Text3/100) * (text2/12), 0.00
Text5 = Format (Val (Text4) + Val (Text1), 0.00)
End Sub
Private Sub HScroll2_Change ()
Text1 = VScroll1. Value
Text2 = HScroll1. Value
Text3 = HScroll2. Value
Text4 = Format (Text3/100) * (text2/12), 0.00
Text5 = Format (Val (Text4) + Val (Text1), 0.00)
End Sub
Private Sub VScroll1_Change ()
Text1 = VScroll1. Value
Text2 = HScroll1. Value
Text3 = HScroll2. Value
Tex
文档评论(0)