我需要您的帮助来对我的项目进行更改。
每当文本框值更改时,我需要禁用单选按钮、标签、文本框和其他工具 ()。
实际上,我正在使用按钮单击事件将值从数据网格移动到文本框。当我这样做时,文本正在移动,但条件不起作用
我已经尝试过了,但它不起作用。协助我。
Private Sub txtIEG_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtIEG.TextChanged
If txtIEG.Text = "RR1" AndAlso txtIEG.Text = "RR2" Then
lblStatus.Visible = False
cborderstatus.Visible = False
lblticketno.Visible = False
txtTicket.Visible = False
lblPR.Visible = False
txtPR.Visible = False
lblPOno.Visible = False
txtPOno.Visible = False
rbneworder.Visible = False
rbreprocessed.Visible = False
End If
End Sub