Visual_Basic 板


LINE

请问各位大大 我目前正在做一个考英文单字的程式 我现在有一个button7 里面会记录回答错误的选项(我是用矩阵a()as boolean来记录) 那我在button3中 却读不到我button7中有回答错的题目a() 请问我该打甚麽才能让button3中可以读的到button7的东西呢>_<? --



※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 114.42.213.55
※ 文章网址: http://webptt.com/cn.aspx?n=bbs/Visual_Basic/M.1401817445.A.007.html
1F:→ GoalBased:你的问题描述太不清楚了= = 06/04 08:42
2F:→ dx0789111:我的button7程式码 if combobox2.selectedindex=0 then 06/04 09:45
3F:→ dx0789111:A(1)=true 这样子第一题a(1)就变true if combobox2. 06/04 09:46
4F:→ dx0789111:Selectedindex=1 then a(1)=false 这样子第二题就变成 06/04 09:47
5F:→ dx0789111:False 但是我在button3里面打 for i=1 to 1000 a(i)= 06/04 09:48
6F:→ dx0789111:False then y = y + 1 却都读不到a阵列的值 请问要在 06/04 09:49
7F:→ dx0789111:Button3中打什麽才能让button7里跑出来的阵列a读的到呢 06/04 09:54
8F:→ dx0789111:抱歉 我第三个回的应该是第一题a(1) 不是第二题 06/04 10:00
9F:→ cf1064:看来是要把a()定义在全域变数中 06/04 11:37
10F:→ cf1064:把a() as boolean放在class里,sub外 06/04 11:41
11F:→ dx0789111:我把a放在最外面欸 就是全部程式码的第一行下面a(0to100 06/04 13:14
12F:→ dx0789111:0)as boolean 应该是全域才对 06/04 13:15
13F:→ putumaxally:贴一下程式码吧,全域变数应该是没有问题才对 06/04 14:36
Public Class Form1 Dim A(0 To 1000) As Boolean Public Property DataSource As Object Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click Dim k, s As Integer 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' 'AABCCBCAAB喔>_< '0012212001 k = ComboBox1.SelectedIndex If ComboBox2.SelectedIndex = 0 Then A(10 * k + 1) = True 'true If ComboBox2.SelectedIndex = 1 Then A(10 * k + 1) = False If ComboBox2.SelectedIndex = 2 Then A(10 * k + 1) = False If ComboBox3.SelectedIndex = 0 Then A(10 * k + 2) = True 'true If ComboBox3.SelectedIndex = 1 Then A(10 * k + 2) = False If ComboBox3.SelectedIndex = 2 Then A(10 * k + 2) = False If ComboBox4.SelectedIndex = 1 Then A(10 * k + 3) = True 'true If ComboBox4.SelectedIndex = 0 Then A(10 * k + 3) = False If ComboBox4.SelectedIndex = 2 Then A(10 * k + 3) = False If ComboBox5.SelectedIndex = 2 Then A(10 * k + 4) = True 'true If ComboBox5.SelectedIndex = 0 Then A(10 * k + 4) = False If ComboBox5.SelectedIndex = 1 Then A(10 * k + 4) = False If ComboBox6.SelectedIndex = 2 Then A(10 * k + 5) = True 'true If ComboBox6.SelectedIndex = 0 Then A(10 * k + 5) = False If ComboBox6.SelectedIndex = 1 Then A(10 * k + 5) = False If ComboBox7.SelectedIndex = 1 Then A(10 * k + 6) = True 'true If ComboBox7.SelectedIndex = 0 Then A(10 * k + 6) = False If ComboBox7.SelectedIndex = 2 Then A(10 * k + 6) = False If ComboBox8.SelectedIndex = 2 Then A(10 * k + 7) = True 'true If ComboBox8.SelectedIndex = 0 Then A(10 * k + 7) = False If ComboBox8.SelectedIndex = 1 Then A(10 * k + 7) = False If ComboBox9.SelectedIndex = 0 Then A(10 * k + 8) = True 'true If ComboBox9.SelectedIndex = 1 Then A(10 * k + 8) = False If ComboBox9.SelectedIndex = 2 Then A(10 * k + 8) = False If ComboBox10.SelectedIndex = 0 Then A(10 * k + 9) = True 'true If ComboBox10.SelectedIndex = 1 Then A(10 * k + 9) = False If ComboBox10.SelectedIndex = 2 Then A(10 * k + 9) = False If ComboBox11.SelectedIndex = 1 Then A(10 * k + 10) = True 'true If ComboBox11.SelectedIndex = 0 Then A(10 * k + 10) = False If ComboBox11.SelectedIndex = 2 Then A(10 * k + 10) = False 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' For i = 1 To 1000 If A(i) = True Then s = s + 1 Next Label14.Text = "目前得分" & s & "/1000" If s = 1000 Then MsgBox("你好棒喔>_<") Label13.Text = "达成目标了~好厉害喔~" End If End Sub Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click Dim x As Integer 'xxxxxx有无错误单字检查xxxxxx For i = 1 To 1000 If A(i) = 0 Then x = x + 1 If A(i) = True Then x = x + 1 Next i If x = 1000 Then MsgBox("你目前没有错误单字喔") Exit Sub End If 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx If A(1) = False Then Label1.Text = Label1.Text & vbCrLf & "1.a (an):一 个" If A(2) = False Then Label1.Text = Label1.Text & vbCrLf & "2.a few:一 些" Label1.Visible = True Button1.Visible = False Button2.Visible = False Button3.Visible = False Button8.Visible = True End Sub End Class ※ 编辑: dx0789111 (114.42.213.55), 06/04/2014 16:07:47
14F:→ dx0789111:喔 我懂了 原来a()的初始值是false 我以为读不到 抱歉 06/04 19:08
15F:推 naruto861214: 太感谢cf1064大大了!!!!!!!! 06/08 23:19







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:Tech_Job站内搜寻

TOP