28.10.2006, 18:22 | #1 |
Участник
|
Axapta Lessons: Trapping keystrokes in a Form
Источник: http://axapta-lessons-learned.blogsp...s-in-form.html
============== How can we catch keystrokes in a Form? When we want to catch the key pressed in a form we need to make some adjustments to the Form. These modifications consist of a few steps: 1. Add a macro that contains the values for the virtual keys. 2. Modify the ClassDeclaration of the Form. 3. Create a new method overruleFKeys on the Form to overrule the virtual keys. 4. Create a new method checkKeyPressed on the Form to capture the key pressed. 5. Override the Task method on the Form. 6. Override the Close method on the Form. 7. Override the Init method on the Form. Let us have a look at an example hereafter. The Form we are going to create will just get two activeX controls, a clock and calendar. The final Form defition will look as follows± 1. Add a macro that contains the values for the virtual keys. 2. Modify the ClassDeclaration of the Form. 3. Create a new method overruleFKeys on the Form to overrule the virtual keys. Overruling the virtual keys will result in no standard handling for the virtual keys anymore; this means that for instance pressing F1 will no longer lead to the help-functionality of Axapta, unless you implement it yourself again. 4. Create a new method checkKeyPressed on the Form to capture the key pressed. We are going to use the Windows DLL 'USER32' and it's function 'GetAsyncKeyState'. The function needs the value of the virtual key to be passed as a binary parameter, like for instance 0x72 for F3. When the key is pressed the function will return a value different from 0. We can find the hexadecimal values for the keys here Virtual Key Codes . 5. Override the Task method on the Form. In the task-method we are going to catch taskId 520. When doing so, we will have to loop over all virtual keys to see if one of them was pressed. There is no other way to find out which one was pressed (if any) then to check them all. Since there are only a few of them, this won't lead to any performance problems. We are going to achieve this by calling the method checkKeyPressed. 6. Override the Close method on the Form. 7. Override the Init method on the Form. To be continued with detail explanation of the different steps.?* ============== Источник: http://axapta-lessons-learned.blogsp...s-in-form.html |
|
|
За это сообщение автора поблагодарили: kashperuk (5). |
29.10.2006, 01:16 | #2 |
Участник
|
А картинки то не подтягиваются.
|
|
01.11.2006, 15:23 | #3 |
Moderator
|
Таки подтянулись наконец-то...
__________________
Андрей. |
|
01.11.2006, 15:57 | #4 |
Участник
|
Картинки нормально подтягиваются в FF 1.5
и не подтягиваются в IE6, IE7, FF2.0 Оперу еще не проверял |
|
01.11.2006, 16:22 | #5 |
MCTS
|
Да, вроде, и без картинок всё ясно
Непонятно значение пп. 6, 7
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
01.11.2006, 16:50 | #6 |
Участник
|
|
|
01.11.2006, 17:05 | #7 |
MCTS
|
И в оригинале не вижу
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
01.11.2006, 17:11 | #8 |
Участник
|
Щелкните на ссылку Show/Hide this Post в оригинале
|
|
01.11.2006, 17:24 | #9 |
MCTS
|
Да IE6.0 у меня
Теперь с вас скриншотик
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
01.11.2006, 17:26 | #10 |
Участник
|
Вот и скриншотик.
|
|
01.11.2006, 17:35 | #11 |
MCTS
|
Спасибо
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
01.11.2006, 17:50 | #12 |
MCTS
|
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
01.11.2006, 17:58 | #13 |
Участник
|
|
|
01.11.2006, 18:16 | #14 |
MCTS
|
Цитата:
Это здесь причем?
По данной ссылке можно увитеть код (возможно модифицированный) в текстовом, а не в графическом виде.
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
|
|