Creating a Hidden popup text item in oracle forms to accept values -


i trying set windows's position property , in design have 4 arrow keys down right , left. requirement whenever click button pop text should open , ask enter x coordinate value after entering value should shift value right or left wherever given.

when close form , reopen again should open @ last changed position should remember last x y position , open @ same position.

any suggestions highly appreciated.

i assuming using when-button-pressed trigger in each of 4 keys open pop-up. can store values of x , y coordinates in table (tab_coordinates) columns x_coord , y_coord. every time user enters x , y coordinate can update columns in table value. in form level trigger when-new-form-instance can query table find x , y coordinates , use code below set it.

set_window_property(winname,x_pos, x); set_window_property(winname,y_pos, y); 

this way, when user opens the form positioned @ x , y values in table. remember, x , y values take effect @ global level i.e. users see set @ coordinates unless application has special way of setting such parameters @ user level.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -