Any idea how I can get ArcMap to stop crashing, when getting NULL attribute values, from a GDB? This code works, but not with NULLs:Dim cursor As IFeatureCursor
Dim feature As IFeature
Dim taxname As Integer
cursor = featureLayer.Search(queryFilter, False)
feature = cursor.NextFeature
taxname = feature.Fields.FindField("taxname")
Me.TextBox2.Text = feature.Value(taxname)