| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1007 人关注过本帖
标题:这个代码是什么意思?
只看楼主 加入收藏
anlingdiao
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2007-4-4
收藏
 问题点数:0 回复次数:6 
这个代码是什么意思?
Sub ProRandNum()
Randomize
RandNum = Int((3 - 1 + 1) * Rnd + 1)
Picture1.Picture = ImageList1.ListImages(RandNum).Picture
End Sub
搜索更多相关主题的帖子: 代码 Sub Rnd Int 
2007-04-04 21:11
Kendy123456
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:62
帖 子:2720
专家分:0
注 册:2007-1-3
收藏
得分:0 
这段代码等于下面这一句
Picture1.Picture = ImageList1.ListImages(1).Picture

2007-04-05 09:11
anlingdiao
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2007-4-4
收藏
得分:0 
回复:(Kendy123456)这段代码等于下面这一句Picture...
这里是程序的开头,但是俺不知道是啥意思?该在对象窗口改动还是要在属性窗口改点什么吗?
Dim RandNum As Integer
Sub ProRandNum()
Randomize
RandNum = Int((3 - 1 + 1) * Rnd + 1)
Picture1.Picture = ImageList1.ListImages(RandNum).Picture
End Sub
Picture1.Picture = ImageList1.ListImages(RandNum).Picture
就是这句严重不明白啊~~~~~~~~~~~
2007-04-05 18:35
zhouxman
Rank: 1
来 自:hubei
等 级:新手上路
帖 子:56
专家分:0
注 册:2007-1-26
收藏
得分:0 
vb把
好象是随机打开图片?

逆水行舟,不进则退!!!
2007-04-05 19:02
anlingdiao
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2007-4-4
收藏
得分:0 
回复:(zhouxman)vb把 好象是随机打开图片?

要在对象窗口或者属性窗口那里设置点什么吗?(俺很心急想知道~~~~~~~~~)
只有这句执行不了,注析这句后,就可以运行,可是那些图片没有消失,一直在那里
游戏是一个跟电脑玩剪刀,石头,布的,要求自己出一个,然后电脑出一个,记录起得分.

2007-04-05 21:36
Viviwei
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:344
专家分:0
注 册:2006-4-11
收藏
得分:0 
首先看到了Picture1
如果是自己定义的一个控件或容器的话,请先将它实例化.
方法 new

爱上思考,爱上编程,爱上.net!
2007-04-06 11:17
anlingdiao
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2007-4-4
收藏
得分:0 
回复:(Viviwei)首先看到了Picture1如果是自己定义的...

可以帮偶看看吗?图片那里偶已经设置成空件数组的形式,这样有错吗?可是程序运行不了,老说没有找到方法或数据成员??????????
Dim RandNum As Integer
Sub ProRandNum()
Randomize
RandNum = Int((3 - 1 + 1) * Rnd + 1)
Picture1.Picture = ImageList1.ListImages(RandNum).Picture
End Sub
Private Sub Command1_Click()
Picture1.Visible = True
ProRandNum
Select Case RandNum
Case 1
Label1.Caption = Command1.Caption
Case 2
Label1.Caption = Command1.Caption
Label2.Caption = Val(Label2.Caption) + 1
Label3.Caption = Val(Label3.Caption) + 0
Case 3
Label1.Caption = Command1.Caption
Label2.Caption = Val(Label2.Caption) + 0
Label3.Caption = Val(Label3.Caption) + 1
End Select
End Sub
Private Sub Command2_Click()
Picture1.Visible = True
ProRandNum
Label1.Caption = Command2.Caption
Select Case RandNum
Case 1
Label1.Caption = Command2.Caption
Label2.Caption = Val(Label2.Caption) + 0
Label3.Caption = Val(Label3.Caption) + 1
Case 2
Label1.Caption = Command2.Caption
Case 3
Label1.Caption = Command2.Caption
Label2.Caption = Val(Label2.Caption) + 1
Label3.Caption = Val(Label3.Caption) + 0
End Select
End Sub
Private Sub Command3_Click()
Picture1.Visible = True
ProRandNum
Label1.Caption = Command3.Caption
Select Case RandNum
Case 1
Label1.Caption = Command3.Caption
Label2.Caption = Val(Label2.Caption) + 1
Label3.Caption = Val(Label3.Caption) + 0
Case 2
Label1.Caption = Command3.Caption
Label2.Caption = Val(Label2.Caption) + 1
Label3.Caption = Val(Label3.Caption) + 0
Case 3
Label1.Caption = Command3.Caption
End Select
End Sub
Private Sub Command4_Click()
Label2 = "0"
Label3 = "0"
Picture1.Visible = False
Label1 = ""
End Sub

2007-04-06 18:27
快速回复:这个代码是什么意思?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.030918 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved