REGARDING FUNCTION KEYS F7 AND F8 [message #146201] |
Wed, 09 November 2005 04:46 |
MEEENAR
Messages: 72 Registered: May 2005 Location: CHENNAI
|
Member |
|
|
I am having a form ..
when the form is loaded it will be in new mode (u have enter datas in that form)..after entering the datas u have to save by pressing f10 or save button...
ENTER _QUERY button or F7
EXECUTE QUERY button or F8
When the form is loaded F7 is working..
When I enter a form and i save it by pressing F10 or SAVE button
After that F7 is not working I have to press the ENTER _QUERY button only...
After saving a Form if I press CLEAR_FORM button and then if I press F7 it is working...
In the KEY_COMMIT I have wriitten
SET_ITEM_PROPERTY('TOOLBAR.SAVE',ENABLED,PROPERTY_OFF);
SET_ITEM_PROPERTY('TOOLBAR.EXECUTE_QUERY',ENABLED,PROPERTY_OFF);
SET_ITEM_PROPERTY('TOOLBAR.SAVE',ENABLED,PROPERTY_ON);
What is the problem
[mod-edit: applied formatting + removed CAPS LOCK]
[Updated on: Wed, 09 November 2005 05:11] by Moderator Report message to a moderator
|
|
|
|
|
Re: REGARDING FUNCTION KEYS F7 AND F8 [message #146333 is a reply to message #146312] |
Wed, 09 November 2005 22:46 |
MEEENAR
Messages: 72 Registered: May 2005 Location: CHENNAI
|
Member |
|
|
If i remove all the set item properties also F7 not working ...
if tried the below code in commit_form then also f7 is not working..
SET_ITEM_PROPERTY('TOOLBAR.SAVE',ENABLED,PROPERTY_ON);
SET_ITEM_PROPERTY('TOOLBAR.EXECUTE_QUERY',ENABLED,PROPERTY_OFF);
SET_ITEM_PROPERTY('TOOLBAR.ENTER_QUERY',ENABLED,PROPERTY_ON);
f7 is not working but the enter_query button is enabled and by
pressing that button i am able to go into the enter_query mode...
when the form is loaded F7 and F8 are working...and also
when i clear the form f7 and f8 is working...In the clear form trigger i have not written any set item properties
|
|
|
|
Re: REGARDING FUNCTION KEYS F7 AND F8 [message #146354 is a reply to message #146348] |
Thu, 10 November 2005 00:09 |
MEEENAR
Messages: 72 Registered: May 2005 Location: CHENNAI
|
Member |
|
|
I have not set any message level...
f7 is a key used to go into the enter-query mode similar to key_enter_query trigger
In my clear form trigger I am setting some enabe on/off for the text boxes in that form..
Iam not setting anything enable on/off for the buttons like save,enter_query. execute_query,exit
After I save a record f7 is not working at that time iam not getting any message...
|
|
|
|
|