- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
09年1226日设计题
09年12月26日设计题
1
属性窗口:
Form1.Caption
设置滚动条
HS1.Name
HS1
HS1.Min
0
HS1.Max
100
HS1.SmallChange
2
HS1.LargeChange
5
2
属性窗口:
Picture1.BorderStyle
1-Fixed Single
Picture1.Height
1095
Picture1.Width
1095
Image1.BorderStyle
1-Fixed Single
Image1.Height
1095
Image1.Width
1095
Picture1.AutoSize
False
Picture1. Picture
选择“k:\fjexam95\RAVMON.jpg”
Image1.Stretch
True
Image1.Picture
选择“k:\fjexam95\RAVMON.jpg”
3
属性窗口:
Check1.Style
1-Graphical
Check2.Style
1-Graphical
Check1.Height
Check2.Height
400
Check1.Width
Check2.Width
2000
Check1.Enabled
True
Check2.Enabled
False
4
属性窗口:
F1.Name
F1
F1.Caption
设置框架
Fr1.Name
Fr1
Op1.Name
Op1
Op2.Name
Op2
5
属性窗口:
MyList.Name
MyList
MyList.Left
700
MyList.Top
100
MyList.MultiSelect
1-Simple
MyList.List
篮球
唱歌
旅游
阅读
6
属性窗口:
Form1.Caption
数值运算
Text1.Alignment
Text2.Alignment
2-Center
Text1.Text
Text2.Text
空
Command1.Caption
求立方根
Private Sub Command1_Click()
Text2.Text = Val(Text1.Text) ^ (1 / 3)
End Sub
7
属性窗口:
Form1.Caption
文字演示
Label1.BorderStyle
1-Fixed Single
Label1.Font
粗体,小四号
Label1.Alignment
2-Center
Label1.Caption
生于忧患,死于安乐。
Option1.Caption
楷体
Option2.Caption
华文新魏
Private Sub Option1_Click()
Label1.FontName = 楷体_GB2312
End Sub
Private Sub Option2_Click()
Label1.FontName = 楷体_GB2312
End Sub
8
属性窗口:
Form1.Caption
计秒器
Timer1.Enabled
False
Timer1.Interval
1000
Label1.BorderStyle
1-Fixed Single
Label1.Font
粗体,三号
Label1.Caption
0
Command1.Caption
计秒
Command2.Caption
停止
Private Sub Command1_Click()
Timer1.Enabled = True
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Val(Label1.Caption) + 1
End Sub
9
属性窗口:
Form1.Caption
打印文字
Picture1.Font
楷体_GB2312,粗体,四号
Command1.Caption
显示
Command2.Caption
清除
Private Sub Command1_Click()
Picture1.Print 欢迎参加计算机应用水平考试!
End Sub
Private Sub Command2_Click()
Picture1.Cls
End Sub
10
属性窗口:
Image1.BorderStyle
1-Fixed Single
Image1.Stretch
True
Check1.Caption
显示图片
Private Sub Check1_Click()
If Check1.Value = 1 Then
Image1.Picture = LoadPicture(k:\fj
文档评论(0)