Could someone please help me I can't get null into the database. I'm trying to achieve...
if displayedQues = "Y" then I want nondisplayedques to go into the
database as null. What do I need to do? This is what I have thus
far.
Dim displayedQues As Char = "Y"
Dim nonDisplayedQues As Char = "N"
If (RadioYes.Checked) Then
displayedQues = "Y"
End If
If (RadioNo.Checked) Then
nonDisplayedQues = "N"
End If
Thanks for your assistance.
if displayedQues = "Y" then I want nondisplayedques to go into the
database as null. What do I need to do? This is what I have thus
far.
Dim displayedQues As Char = "Y"
Dim nonDisplayedQues As Char = "N"
If (RadioYes.Checked) Then
displayedQues = "Y"
End If
If (RadioNo.Checked) Then
nonDisplayedQues = "N"
End If
Thanks for your assistance.