|
-
Nov 8th, 2000, 05:46 PM
#1
Thread Starter
Addicted Member
I can't remember what the code is to ignore nulls when filling a textbox. How can I make this statement ignore them?
txtLocation = rst!Location
smh
(It must be getting near the end of the day!)
Normal is boring...
 smh 
-
Nov 8th, 2000, 06:23 PM
#2
If Not IsNull(rst!Location) Then
txtLocation = rst!Location
End If
-
Nov 8th, 2000, 08:19 PM
#3
Alternatively:
txtNumber.Text = RS!Location & ""
- gaffa
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
|