I captured a property value using 'CapturePropertyToDataRow' to a column in my data sheet called 'SelectedItemIndex1'. Is it possible for me to use an expression using CheckPropertyValue to verify that the property I'm currently checking is 3 more than the value I captured? For example...is it possible to do the following:
I've tried this using various quotes and brackets, thinking that the syntax is wrong, but can't seem to do it. Is what I'm attempting even possible? Any help would be very much appreciated!!!
I am not sure if am reading this correct.................
Your requirement is to capture a property value (say Index for a combo-box) and store within datatable / external sheet. Further you wish to ascertain whether the stored property value is 3 less than the current property value you are capturing.
If this is the case, you can achieve the same without the CheckPropertyValue usage.
1) Fetch the propertyvalue you need to compare at runtime using GetROProperty
2) Store it in a temp variable (if need be convert to Integer using CInt())
3) Compare the difference between your temp variable and your stored variable using a simple If condition with minus operator
4) If the difference equals to 3, you have your condition met