freezing buttons in forms [message #2572] |
Mon, 29 July 2002 04:26 |
omara
Messages: 2 Registered: July 2002
|
Junior Member |
|
|
hi! im trying to freeze buttons in my forms
so that certain users cannot delete those options.
actually i have a login form ..when a user logs in thru that form..he enters an options archive form on which he will see only those buttons "enabled" or un-frozen which which he =is allowed according to his privilage.
i am not able to work thru the procedure to do so.
if any one could help me out on this.
thanx
|
|
|
Re: freezing buttons in forms [message #2588 is a reply to message #2572] |
Mon, 29 July 2002 21:02 |
Anirudh Sharma
Messages: 8 Registered: July 2002
|
Junior Member |
|
|
IF
CHK THE THINGS allowed acC. to the user's privilage.
THEN
SET_ITEM_PROPERTY('ITEM_NAME',ENABLED,PROPERTY_FALSE)
/* here item name is the name of the button itm u want to freeze/*
end if;
|
|
|