我在嘗試傳遞字符串數據類型的值時遇到了問題。在Visual Basic中傳遞字符串值
我能做些什麼來解決這個問題?
發件人:
Private Sub verButton_Click(sender As Object, e As EventArgs) Handles verButton.Click
If chkauth.auth(csBox.Text, pwBox.Text) Then
mainForm.Enabled = True
infoLbl.Visible = False
Else
infoLbl.Visible = True
End If
End Sub
收件人:
Public Function auth(ByVal cs As String, ByVal pw As String)
Select Case cs
Case "Chauix"
If pw = "ihartcha" Then
MsgBox("Authentication successful!", MsgBoxStyle.Information, "Success")
Return True
Else
Return False
End If
Case "Brink"
If pw = "Jesusismylife" Then
MsgBox("Authentication successful!", MsgBoxStyle.Information, "Success")
Return True
Else
Return False
End If
Case Else
Return False
End Select
End Function
它總是導致一個錯誤,當我嘗試執行,導致它的事件。
這是VB6還是VB.NET? – MPelletier
只是想知道,如果你使用你的實際用戶名和密碼?你可能想改變你的例子,如果你是:) – ScottC
Nah。他們不是。他們只是展示我同班同學的樣本:D – Wix