如果未选中复选框,为什么文本框中的文本不会更改?如果未选中,则文本框的文本应具有“-g no”,但单击 Command1 时不会更改。有什么解决办法吗?可能是一些非常简单的事情,但我只是没有成功。:\
我的代码:
Private Sub Command1_Click()
If Check1.Enabled = True Then
If TextPass.Text = "" Then
Text1.Text = "-o " & TextPool.Text & ":" & TextPort.Text & " -u " & TextUser.Text & " -g yes " & "-t " & Combo1.ListIndex
Else
Text1.Text = "-o " & TextPool.Text & ":" & TextPort.Text & " -u " & TextUser.Text & " -p " & TextPass.Text & " -g yes " & "-t " & Combo1.ListIndex
End If
Else
If TextPass.Text = "" Then
Text1.Text = "-o " & TextPool.Text & ":" & TextPort.Text & " -u " & TextUser.Text & " -g no " & "-t " & Combo1.ListIndex
Else
Text1.Text = "-o " & TextPool.Text & ":" & TextPort.Text & " -u " & TextUser.Text & " -p " & TextPass.Text & " -g no " & "-t " & Combo1.ListIndex
End If
End If
End Sub
帮助表示赞赏!或者然后只是修复我的代码。