I have a textbox bound to "Field.A".
The problem is that sometimes "Field.A" does not exist and in these cases I need to bind the textbox to "Field.B".
It was recommended that I use a user function :
public static String ResolveField()
{
string s = new string();
// ????
// Check if Field.A exists
// if yes then s = Field.A
// else s = FieldB
return s;
}
How can I check to see if a field exists without an exception?
The problem is that sometimes "Field.A" does not exist and in these cases I need to bind the textbox to "Field.B".
It was recommended that I use a user function :
public static String ResolveField()
{
string s = new string();
// ????
// Check if Field.A exists
// if yes then s = Field.A
// else s = FieldB
return s;
}
How can I check to see if a field exists without an exception?