我试着用谷歌搜索一下,但我找不到任何有用的东西。所以我在我的 form1_load 我有这个变量
Dim Myvariable As String
然后在一个按钮中单击我想要
Myvariable = "Hello"
问题是我的代码告诉我 button_click 中的 Myvariable 没有声明它是什么。
谢谢你的帮助。
将变量作为表单类中的字段或属性移动。这是示例代码:
Public Class Form1
Private MyVariable
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
MyVariable = "Hello"
End Sub
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
MessageBox.Show(MyVariable)
End Sub
End Class