I have a NetWebPage with an image "button" that is calling a Form. The file for the form is a single record file, so I am calling it without a browse to select from.
I have read FAQ4 and looked at example 24, and in my calling program (the netwebpage), I have the following html for the image:
<a href="MoneyCounterMenu?change_btn=change&_bidv_=' & p_web.AddBrowseValue('RecordContributionsMenu','ContWS',CWS:KeySysID,1)">
MoneyCounterMenu is the netwebform procedure that is being called. RecordContributionsMenu is the calling netwebpage. ContWS is the single record file. CWS:KeySysID is the key, and the value of the SysID field for the single record is 1.
When I run the app, the form is called and the following is in the browser address bar:
http://127.0.0.1/MoneyCounterMenu?change_btn=change&_bidv_=' & p_web.AddBrowseValue('RecordContributionsMenu','ContWS',CWS:KeySysID,1)
But, I get an error message:
record not found: (-2) Error 30: Entry Not Found from key CWS:KeySysID
I have verified that there is only one record in the ContWS file and
Suggestions?
Mike Springer