10-11-2007 11:42 AM
public
static void SetXplusCurrent(ref bool returnValue, string MinString, string MaxString){
string error = CompareAxisMinMaxCurrentValues(MinString, MaxString); if (error != string.Empty){
returnValue =
true;}
//configTable.XAxisMinCurrentPlus = MinString; //configTable.XAxisMaxCurrentPlus = MaxString;returnValue =
false;}
public static void SetYplusCurrent(ref bool returnValue, string MinString, string MaxString){
//call validation function and display any errors string error = CompareAxisMinMaxCurrentValues(MinString, MaxString); if (error != string.Empty){
returnValue =
true;}
//configTable.YAxisMinCurrentPlus = MinString; //configTable.YAxisMaxCurrentPlus = MaxString;returnValue =
false;}
10-11-2007 02:43 PM
10-11-2007 02:47 PM
Thanks Jonathan, I realized that after I posted. Too wrapped up in figuring that it had to be something with the interface itself. Adding the else made it work like a champ.
Spacemann