Hi
Regarding the UltraWinGrid.UltraGrid
Is it possible to check if a column value is null, rather than an error being thrown if the cell has no value.
Here's the code.MsgBox(Me.UltraGrid1.ActiveRow.Cells("MyGridsColumnName").Value)
Many thanks,Dave
Yes, "Is Sysem.DBNull.Value" worked perfectly.
Thank you very much
Dave
Might try:
Is Nothing
or perhaps
Is Sysem.DBNull.Value
Nick