"qi", "no qi" - Quick Input, No Quick Input "nc", "no nc" - No Change, No No Change "do", "no do" - Display Only, No Display Only "mi", "no mi" - Mandatory Input, No Mandatory Input "ne", "no ne" - No Echo, No No Echo "ab", "no ab" - Attr Blanks, No Attr Blanks "spc", "no spc" - Special char processing, No spc processing "ignore", "no ignore" - Client will not/will not display this field "verify", "no verify" - Used with inplist. Allows or disallows input of data not in the inplist. "inpselall", "no inpselall" - Select all/no text in the display field on input "inpselstart" - Select start of text in the display field on input "inpselend" - Select end of text in the display field on input "inpstripfmt", "no inpstripfmt" - Allow/Disallow stripping of fmt characters before input. "default" - OR With compile time defaults This is the default setting unless one of "no default" or "merge" is specified "no default" - Don't OR with compile time defaults "merge" - Combine with current settings "no merge" - Do not combine with current settings
if (as_us_daysel[6] != 'y') { sys.set_dfoption(PMONDAY,"ne"); sys.set_dfoption(MONDAY,"ne","do"); } if (as_us_daysel[0] != 'y') { sys.set_dfoption(PTUESDAY,"ne"); sys.set_dfoption(TUESDAY,"ne","do"); } if (as_us_daysel[1] != 'y') { sys.set_dfoption(PWEDNESDAY,"ne"); sys.set_dfoption(WEDNESDAY,"ne","do"); } if (as_us_daysel[2] != 'y') { sys.set_dfoption(PTHURSDAY,"ne"); sys.set_dfoption(THURSDAY,"ne","do"); } if (as_us_daysel[3] != 'y') { sys.set_dfoption(PFRIDAY,"ne"); sys.set_dfoption(FRIDAY,"ne","do"); } if (as_us_daysel[4] != 'y') { sys.set_dfoption(PSATURDAY,"ne"); sys.set_dfoption(SATURDAY,"ne","do"); } if (as_us_daysel[5] != 'y') { sys.set_dfoption(PSUNDAY,"ne"); sys.set_dfoption(SUNDAY,"ne","do"); }
for (dfnum = LABEL1; dfnum < LABELN; dfnum += 1) sys.set_dfoption(dfnum,"do","ne");