Does anyone know how to do that? In my real project actually, I filter on two fields like this...
bindingsource.f ilter = "col1='" & var1 & "' AND col2='" & var2 & "'"
wherein var1 or var2 may contain a null value. Its just the same as if I want to show all records with null values.
Any ideas?
bindingsource.f ilter = "col1='" & var1 & "' AND col2='" & var2 & "'"
wherein var1 or var2 may contain a null value. Its just the same as if I want to show all records with null values.
Any ideas?
Comment