Visual_Basic 板


LINE

請問各位大大 我目前正在做一個考英文單字的程式 我現在有一個button7 裡面會記錄回答錯誤的選項(我是用矩陣a()as boolean來記錄) 那我在button3中 卻讀不到我button7中有回答錯的題目a() 請問我該打甚麼才能讓button3中可以讀的到button7的東西呢>_<? --



※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.42.213.55
※ 文章網址: http://webptt.com/m.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燈, 水草

請輸入看板名稱,例如:Boy-Girl站內搜尋

TOP