在我的 frmMain 类中,我有一个从数据库填充的文本框(txtCustomer)。我想将此值传递给 frmDepartment(txtDeptCustomer) 中的另一个文本框。
我看不到为什么我使用的代码没有在 txtDeptCustomer 中显示值的逻辑。我可以用变量查询数据库,所以字符串正在传递,但只是没有显示在 txtDeptCustomer 中。如果有人能指出我的错误,我将不胜感激。谢谢
部门
Dim customer As Object = frmMain.txtCustomer.Text
这是将正确的值传递给 db。
sql = "SELECT * FROM Departments where Customer = '" & CType(customer, String) & "'"
文本框 txtDeptCustomer <--- 不显示值
Private Sub txtDeptCustomer_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtDeptCustomer.TextChanged
txtDeptCustomer.Text = CType(customer, String)
End Sub