Page 1 of 1

Dialog Reader not responding to DCGETOPTIONS

Posted: Thu Sep 08, 2016 8:53 am
by Tim K
I've used DCGETOPTIONS NOESCAPEKEY successfully before, in this instance of my code the reader seems to ignore DCGETOPTIONS. I've initialized a local getoptions variable. Here's the last few lines of the browse code:

DCGETOPTIONS NOESCAPEKEY

DCREAD GUI FIT ;
TITLE " Set SKU Status " ;
EVAL {||oBrowse:right(),oBrowse:right(),oBrowse:forceStable(),;
oBrowse:refreshCurrent() , SetAppFocus(oBrowse)};
SETAPPWINDOW MODAL

Suggestions?

Re: Dialog Reader not responding to DCGETOPTIONS

Posted: Thu Sep 08, 2016 9:02 am
by Tom

Code: Select all

DCREAD GUI OPTIONS GetOptions ...

Re: Dialog Reader not responding to DCGETOPTIONS

Posted: Thu Sep 08, 2016 9:42 am
by Tim K
That does it. Thanks, Tom.