-1
A
回答
3
試試這個
for i=1 to n
me.controls("txta" & i)=a(i)
next i
+0
謝謝,但我無法解決我的問題。此代碼正在工作: 子測試() Dim a(40 )作爲整數 一(1)= 「1」 一個(2)= 「2」 一個(3)= 「3」 DoCmd.OpenForm 「FR_Certificate」,acViewLayout 隨着窗體![FR_Certificate] .txta1。值= A(1) .txta2.Value =α(2) .txta3.Value =α(3) 結束隨着 結束子 但是當我改變 .txta1.Value =α(1) 。 txta2.Value = a(2) .txta3.V ALUE =α(3) 與 對於i = 1至3個 Me.Controls( 「txta」 &i.value)= A(I) 下一I 我語法錯誤。 – ali
+0
非常感謝。如何在C#中使用變量i而不是數字1編寫textBox1.Text? – ali
0
Thank you but I couldn't solve my problem.This code is working:
Sub test()
Dim a(40) As Integer
a(1) = "1"
a(2) = "2"
a(3) = "3"
DoCmd.OpenForm "FR_Certificate", acViewLayout
With Forms![FR_Certificate]
.txta1.Value = a(1)
.txta2.Value = a(2)
.txta3.Value = a(3)
End With
End Sub
but when I change
.txta1.Value = a(1)
.txta2.Value = a(2)
.txta3.Value = a(3)
with
For i = 1 To 3
Me.Controls(."txta" & i.value) = a(i)
Next i
I got synntax error.
相關問題
- 1. 如何在Twig的for循環中使用變量作爲鍵?
- 2. 使用變量 'for' 循環
- 3. 變量作爲令牌的for循環
- 4. 如何使if語句和for循環爲空變量工作
- 5. 如何製作For循環
- 6. 如何在`for`循環使用AWK兩個循環變量
- 7. 如何使用C++循環外的For循環中的變量?
- 8. 使用循環FOR改變的變量
- 9. 變量for循環
- 10. for循環使用for循環中聲明的變量值?
- 11. JAVA-如何從for循環訪問FOR循環中的變量
- 12. 如何用for循環制作按鈕
- 13. For循環爲你製作新的變量 - VB.Net
- 14. 使用for循環設置變量
- 15. 變量在C for循環使用時++
- 16. 使用變量out for循環
- 17. 在for循環之外使用變量。
- 18. 使用for循環存儲變量名
- 19. 使用for循環重寫變量R
- 20. 在Javascript中使用變量for循環
- 21. 如何訪問變量在for循環
- 22. 如何使用計數器作爲for循環中的變量擴展?
- 23. for循環(循環變量名)
- 24. 循環變量增強的for循環
- 25. PHP變量中For循環
- 26. For-each循環變量
- 27. 配方(for循環變量)
- 28. for循環和變量
- 29. 變量在for循環
- 30. for循環多個變量
歡迎計算器。請閱讀如何提出問題:http://stackoverflow.com/help/how-to-ask – jonathana