Automatically moved mouse cursor [message #90767] |
Sat, 06 November 2004 15:27 |
Martira
Messages: 1 Registered: November 2004
|
Junior Member |
|
|
Hi everyone,
I would like to add one feature to my Oracle form. I would like the mouse cursor automatically to move to the next field once I choose what I want from LOV. Right now , when I choose something from LOV the mouse cursor stays in the same field and I have to tab or enter to go to the next field.
I will really appreciate any suggestions how to do this !
<!-- THE POST -->
|
|
|
|
Re: Automatically moved mouse cursor [message #90806 is a reply to message #90767] |
Fri, 31 December 2004 19:31 |
aditya
Messages: 36 Registered: March 2001
|
Member |
|
|
you might be calling this lov in the mouse events or in the key-listvals.If i am right then use the following code for that
declare
bool_Show_lov BOOLEAN;
begin
bool_Show_lov:=Show_Lov('Your Lov Name');
if bool_Show_lov = TRUE then
go_item('blockname.ItemName');
end if;
end;
YOU CAN USE THIS CODE IN ANY OF THE FOLLOWING EVENTS.
THESE ARE RECOMMENDED OK.
1. When-Mouse-clicked.
2. When-mouse-doubleclick.
3. key-listvals.
I hope you know what is key-listvals.
bye
|
|
|