In the Page Customer Card you have 2 items in the actionmenu, Previous (Ctrl+PgUp) and Next (Ctrl+PgDn). I want them to promote to the Actionpane. I created myself 2 icons on the actionpane, but it is not possible to go to the next page. It seems that the Customer No. is hard filtered. however with Ctrl+PgDn it is possible to go to the next customer. Has somebody a good advise how to do this? By the way, I also tried to work with SendKeys.
0
Answers
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
it would just be a miracle :!:
next and previous actions are built in actions of some types of pages, AFAIK, you have to replicate their behaviour with NEXT and NEXT(-1) instructions...i don't know if there are properties instead of code to achive this...
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
Works like charm :
CREATE(WSHShell,TRUE,TRUE);
WSHShell.SendKeys('^{PGDN}');
CLEAR(WSHShell);
is the code for Next record