I want to have a save button activate when changes are made to fields on window.
The line below works for most keys, but the Delete and Back keys are ignored.
::oWnd:bKeyDown = { | nKey | if( ! self:lSave .and. (( nKey > 31 .and. nKey < 223) .or. nKey = VK_BACK .or. nKey = VK_DELETE), self:togglesave(), ) }
Is there another (easier) way to detirmine if control changes?