×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Screen shots don't come through the list.
However, took a quick glance at your code. Are you overlaying the main
screen with a window? If so, your value on the main screen won't be
updated unless you do an exfmt on that screen, thus your main screen would
still contain the Record Updated message.
Ron Power
Programmer
Information Services
City Of St. John's, NL
P.O. Box 908
St. John's, NL
A1C 5M2
709-576-8132
rpower@xxxxxxxxxx
http://www.stjohns.ca/
***************************************************************************
** $Scrn1 - Subroutine for Screen 1
***************************************************************************
** Functional summary of this subroutine:
**
** This subroutine is designed to display the first screen and to
** validate the value entered by the user
***************************************************************************
c $Scrn1 Begsr
* Do until <F1=End> is pressed.
c Dou *InKa = *On
c Eval #Mode = 'View'
* Display screen 1.
c Exfmt Smz01801
* Reset error field.
c Eval Errflg = 'N'
c Eval #Msg = *Blanks
c Select
* If <F1=End> is pressed then leave program.
c When *Inka = *On
c Leave
* If <F4=View by lane> is pressed then call the $Scrn2 subroutine .
c When *Inkd = *On
c Exsr $valdt
c Eval #Mode = 'View'
c If Errflg = 'N'
c Exsr $Scrn2
c Endif
* If <F6=View by product> is pressed then call the $Scrn2 subroutine
.
c When *Inkf = *On
c Exsr $Valdt
c Eval #Mode = 'View'
c If Errflg = 'N'
c Exsr $Scrn4
c Endif
* If <F9=ADD> is pressed then call the $Scrn3 subroutine .
c When *Inki = *On
c Eval #Mode = 'Add'
c Exsr $Valdt
c If Errflg = 'N'
c Eval #Msg = *Blanks
c Eval *In63 = *Off
c Eval *In64 = *Off
c Exsr $Scrn3
c Endif
* If <F11=Delete> is pressed then call the $Scrn3 subroutine .
c When *Inkk = *On
c Eval #Mode = 'Delete'
c Exsr $Valdt
* No Errors
c If Errflg = 'N'
c Eval *In63 = *On
c Eval *In64 = *Off
c Exsr $Scrn3
c Endif
* If Enter is pressed then validate the Pallet Type field.
c Other
c Eval #Msg = *Blanks
c Exsr $Valdt_wh
c Exsr $Valdt_pr
c Exsr $Valdt_ln
c Endsl
c Enddo
c Endsr
As an Amazon Associate we earn from qualifying purchases.