|
-
May 9th, 2003, 12:36 PM
#1
Thread Starter
New Member
Is there a isNull function? in VB.Net
Do you know of any isnull function buried in a namespace or anywhere. I'm checking data as it comes in from DB. I just want to set it to blank string and to do it faster than take incoming data and .toString it.
Thanks
-
May 9th, 2003, 12:42 PM
#2
PowerPoster
-
May 9th, 2003, 12:44 PM
#3
-
May 9th, 2003, 12:44 PM
#4
-
May 9th, 2003, 01:07 PM
#5
PowerPoster
To slow, and plus I had time to also put a link in....lol
-
May 9th, 2003, 03:06 PM
#6
Sleep mode
for setting null value use
not tostring . and there are another checking null values in rows collection of dataset :
VB Code:
If MyDataset.Tables(MyTable).Rows(0).IsNull(0) Then
MessageBox.Show("No password was configured")
'do this
Else
'do this
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
|