- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Form Management System
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 03:54 AM
07-07-2005 03:54 AM
Form Management System
Can any one please tell me the keycode to trap this event.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 05:04 AM
07-07-2005 05:04 AM
Re: Form Management System
It this in the context of an FDV$GETxx call?
Are you already doing UAR processing?
If the return status for the UAR is FDV$K_UHELP_ALL then no further help processing occurs. If the user hits help again they are placed within the help UAR again. At this point you could use the FDV$RETCX call to determine how many times they have hit help for this field and act accordingly.
Alternatively you might look for solutions through FDV$DFKBD, maybe assigning the FDV$K_KF_NONE code to the FDV$K_KF_HELP function to delete that key function.
Hope this 'helps'.
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 12:06 AM
07-11-2005 12:06 AM
Re: Form Management System
what happens in my case is that a main screen has an associated help screen and this is triggered whenever
the user presses help key twice. Right now what happens now is that we are unable to find how this link has
been implemented. We have a basic program which handles this & this uses the FDV$RETCX call to determine the various associated
parameters like the scrren , the field etc. what we are unable to figure out is how this basic program is called
when the user presses the help key. hope this information would help. Pls let us know if u need any more information on this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:06 PM
07-11-2005 11:06 PM
Re: Form Management System
It should issuing FDV$RETCX at the beginning of the UAR. The 8th (last) parameter to this call tells you the number of times the HELP key has been struck for the current field. If the number is '1' then it could display Help Form 1, if the number is '2' display Help Form 2. To avoid seeing the 1-line help message repeatedly, terminate the Post Help UAR with a status of FDV$K_UHELP_ALL which will send control back to this UAR if the user hits HELP for this field again.
hth,
Hein.
[HP internal note: Text from Dan's reply to topic 362 in FMSnotes]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2005 04:08 PM
07-14-2005 04:08 PM
Re: Form Management System
I had added the function FDV$RETCX also
but i missed out the help screen name on the form.Now the issue is resolved and i was able to display the help screen also.
Thanks very much for the valuable sugesstion provided by you.