stef Member³ Aug 20, 2007 #1 Function IDE_KeyPress has strange behavior: 1 = Shift 2 = Alt 3 = Ctrl //switch to next window IDE_KeyPress ( 'H', 3); result is open Menu help ( like alt-h ) I want to switch to next window in a "programm window" with 'ctrl h'. Anybody a good idee! thanks
Function IDE_KeyPress has strange behavior: 1 = Shift 2 = Alt 3 = Ctrl //switch to next window IDE_KeyPress ( 'H', 3); result is open Menu help ( like alt-h ) I want to switch to next window in a "programm window" with 'ctrl h'. Anybody a good idee! thanks
Marco Kalter Administrator Staff member Aug 20, 2007 #1 That should be 4 for Ctrl, 3 is a combined Shift + Alt. 1 = Shift 2 = Alt 4 = Ctrl
stef Member³ Aug 21, 2007 #1 does not work I tried: IDE_KeyPress ('H' , 4 ); /*Select all */ IDE_KeyPress ('H' , 4 ); /*Select all */ IDE_KeyPress ('h' , 4 ); /*Select all */ Result is: ( see copyright ) --Copyrighh8ht: any suggestions I want to switch from package to body..
does not work I tried: IDE_KeyPress ('H' , 4 ); /*Select all */ IDE_KeyPress ('H' , 4 ); /*Select all */ IDE_KeyPress ('h' , 4 ); /*Select all */ Result is: ( see copyright ) --Copyrighh8ht: any suggestions I want to switch from package to body..
Marco Kalter Administrator Staff member Aug 21, 2007 #1 We'll have to look into this. I'll get back to you tomorrow.
stef Member³ Aug 22, 2007 #1 Marco, I tried again with same source diff DLL ( removed the old one) now its working fine. Don't know what was wrong! Thanks anyway ;-)
Marco, I tried again with same source diff DLL ( removed the old one) now its working fine. Don't know what was wrong! Thanks anyway ;-)
Marco Kalter Administrator Staff member Aug 22, 2007 #1 It worked for me as well. Note that we also have IDE_TabInfo and IDE_TabIndex if you want specific control over tabs. Also note that the key parameter is an integer, so the 'H' should be Ord('H').
It worked for me as well. Note that we also have IDE_TabInfo and IDE_TabIndex if you want specific control over tabs. Also note that the key parameter is an integer, so the 'H' should be Ord('H').
M matjazc Member² Jun 11, 2011 #1 That should be 4 for Ctrl, 3 is a combined Shift + Alt. Is there Shift + Ctrl option ?