Microsoft
Software
Hardware
Network
Question : IsDBNull(sender.Rows(e.RowIndex).Cells(0).Value) is very slow+vb.net 2005 windows programming
Hi,
Iam checking in datagridview
If IsDBNull(sender.Rows(e.Row
Index).Cel
ls(0).Valu
e) = True Then Exit Sub which is terribly slow..any alternative for this code
Cheers
Answer : IsDBNull(sender.Rows(e.RowIndex).Cells(0).Value) is very slow+vb.net 2005 windows programming
How about this:
If e.RowIndex >-1 AndAlso sender.Rows(e.RowIndex).Ce
lls(0).Val
ue is Nothing Then Exit Sub
Random Solutions
How to prevent data loss?
Creating a naviagation bar across access forms (similar to dropdown menus on websites)
aps.net how to override body font size style at runtime
Moving From The 3GS to 4G
Locale problem in Java program that I implemented. How to fix?
access 2007 vba using chr()
How can I center my table in relation to the width of my defined body-width in XHTML 1.0 Transitional?
virtualize a fileserver?
BIOS update from 02 to 09 in Dell Precision 380
Java Binary Tree Logical Errors