|
-
Mar 10th, 2000, 01:08 AM
#1
Thread Starter
New Member
I have a text field that I am tying values to based on a SQL string. This works great, until the recordset tries to supply a null value to to the text field's value. I have tried using an if statement to test for the null value, but I'm having trouble testing. Here's a sample of the code...
If rstMonitor.Fields("Speed").Value = Null Then
BaseWindow.navigate "HelpDesk_MonitorConfirm.html"
Else
hfldSpeed.Value = rstMonitor.Fields("Speed").Value
End If
What is the proper syntax to test the field for a null value?
TIA
Stephen
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|