cancel
Showing results for 
Search instead for 
Did you mean: 

User Defined Values Window

silambarasan_rajendran
Active Contributor
0 Kudos

Hi Friends,

                I am trying to open the user defined values window(formatted search window)  when tab press,  Like CFL window. But, unable to do. is it possible..

please guide me.

Thanks & Regards,

   Silambu

Accepted Solutions (1)

Accepted Solutions (1)

Nussi
Active Contributor
0 Kudos

Hi,

catch the ItemEvent et_KEY_DOWN - the keycode for Tab is 9.

then send shift+f2 using the follwing code:

SBO_Application.SendKeys("+{F2}")

be aware that the cursor will jump to the next field:

      - so you have to set the cursor back

      or

     - stop the jump using bubbleevent = false in the et_KEY_DOWN when beforeaction = true

lg David

silambarasan_rajendran
Active Contributor
0 Kudos

Thanks,

It is working now.

Answers (0)