How do I insert an If Else Statement here when I want to display the studentID and loginID if there is no student name/address.

Sub ShowStudentInfo()
    Dim dt As DataTable = GetInfoForStudent("test", frmLogin.txtusername.Text, frmLogin.txtPassword.Text)

    With dt.Rows(0)
        frmLibrary.txtStudentID.Text = .Item("StudentID")
        frmLibrary.txtLoginID.Text = .Item("LoginID")
        frmLibrary.txtStudentName.Text = .Item("Student Name")
        frmLibrary.txtStudentAddress.Text = .Item("Student address")


    End With
End Sub
link|improve this question

64% accept rate
feedback

2 Answers

up vote 2 down vote accepted
Sub ShowStudentInfo()
    Dim dt As DataTable = GetInfoForStudent("test", frmLogin.txtusername.Text, frmLogin.txtPassword.Text)

    With dt.Rows(0)
        if .Item("Student Name")="" and .Item("Student address")="" then
            frmLibrary.txtStudentID.Text = .Item("StudentID")
            frmLibrary.txtLoginID.Text = .Item("LoginID")
        else
            frmLibrary.txtStudentName.Text = .Item("Student Name")
            frmLibrary.txtStudentAddress.Text = .Item("Student address")
        end if

    End With
End Sub

Is that what you were looking for?

link|improve this answer
Yea something like that but If I login with a user that doesn't have a Student Name/Address it will give me this error There is no row at position 0. – CompleteNewb Feb 6 at 17:08
add the check for rows being returned: If dt.Rows.Count > 0 Then .... End If – Ric Feb 6 at 17:13
Should use the String.IsNullOrWhiteSpace -- if String.IsNullOrWhiteSpace(.item("Student Name")) andAlso String.IsNullOrWhiteSpace(.item("Student Address")) then – APrough Feb 6 at 17:29
1  
Just as I mentioned above. In the "If" line you put String.IsNullOrWhiteSpace around each .Item("blahblah"). You should also use AndAlso instead of And. This short-circuits the If statement, so that if the first part is false, then it doesn't even bother checking the second part. AND works fine in most situations, but AndAlso would be a small savings in performance. – APrough Feb 6 at 17:39
1  
IsNUllOrWhiteSpace is used in .NET 4.0. If earlier version of .NET, then IsNullOrEmpty should work in most situations. – APrough Feb 6 at 17:43
show 4 more comments
feedback

Building off of Gage's answer. You are getting no results because your GetInfoForStudent function is not returning a row. When this happens, your If statement on the Row Count has no Else clause. Put some code there to add a row or whatever, and it should work out.

Sub ShowStudentInfo()     
    Dim dt As DataTable = GetInfoForStudent("test", frmLogin.txtusername.Text, frmLogin.txtPassword.Text)
    If dt.Rows.Count > 0  then    
        With dt.Rows(0)         
            if String.IsNullOrEmpty(.Item("Student Name")) AndAlso String.IsNullOrEmpty(.Item("Student Name")) then                     
                frmLibrary.txtStudentID.Text = .Item("StudentID")             
                frmLibrary.txtLoginID.Text = .Item("LoginID")         
            else             
                frmLibrary.txtStudentName.Text = .Item("Student Name")                             
                frmLibrary.txtStudentAddress.Text = .Item("Student address")         
            end if      
        End With    
    Else
        'Do something here to add new row, etc.
    End If

End Sub

link|improve this answer
Sorry just came back from lunch and checked this. This seems to be the correct answer so theres no need for me to amend mine. – Gage Feb 6 at 18:24
@Gage. Sorry, didn't mean to step on your toes. – APrough Feb 6 at 18:34
No not at all. You took the initiative yourself which is a good thing. There was no way to know if or when I would check this again. Dont worry about it. – Gage Feb 6 at 20:19
@CompleteNewb. Did this work for you? – APrough Feb 9 at 18:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.