所以我在这里制作一个节目。这是一个简单的酒店预订计划。这是它的结构。
我在表单中传递信息时遇到问题。例如,我在一个新表单的文本框中调用了总量qty,我得到了这个System.Windows.Forms.TextBox,Text:$ 1,200.00。
所以,我得到的数量还不错,但其余的垃圾也是如此。 :(
我的代码,
Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Gives the first textbox focus
Me.ActiveControl = CCTypeComboBox
AmountTextBox.Text = Form2.TotalTextBox.ToString()
End Sub
答案 0 :(得分:1)
宾果!改变:
AmountTextBox.Text = Form2.TotalTextBox.ToString()
为:
AmountTextBox.Text = Form2.TotalTextBox.Text