Updating one field from another in a collector window (AREV Specific)
At 30 MAY 2002 08:35:36PM Victor Engel wrote:
I guess I've never tried to do this before in a collector window. It seems that if I set RESET to force the redisplay of prompts, the collector window is simply exited. So the question is, how does one make a change to field Y in a collector window triggered by a change to field X?
Suppose, for example, that you wanted to specify a range of values and wanted to allow entry either as an entry to Min and Max or as an entry to Mean and Tolerance? Conceptually, you could have a collector with these 4 fields. Mean and Tolerance would be updated if Min or Max where changed. Min and Max would be updated if Mean or Tolerance were changed.
At 30 MAY 2002 08:50PM Warren wrote:
Set WC_RDISPLAY_LIST% to @FM delimited list of prompt nos.
Set WC_RESET%=CLEAN.UP.EDIT$
Set WC_DISPLAY_ACTION%=REDISPLAY.ALL$
The trick is to set WC_RESET% before WC_DISPLAY_ACTION% (or perhaps the other way around, I forget exactly which).
At 30 MAY 2002 09:17PM Victor Engel wrote:
Thanks. That together with making sure I was looking at wc_is% did the trick.