A
AussieRules
Hi,
I have a sql table with a integer col that is null.
When I assign this to a int value in my vb app with the following code, it
set the intValue to be 0.
This means when I set my text box.text to the value, it displayes 0 rather
than a blank text box.
How do I get around this one ?
If pRow("StreetNo") Is DBNull.Value Then
intStreetNo = Nothing
End If
I have a sql table with a integer col that is null.
When I assign this to a int value in my vb app with the following code, it
set the intValue to be 0.
This means when I set my text box.text to the value, it displayes 0 rather
than a blank text box.
How do I get around this one ?
If pRow("StreetNo") Is DBNull.Value Then
intStreetNo = Nothing
End If