Exit DTPICKER control with K_enter

Post Reply
User avatar
reinaldocrespo
Posts: 918
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL

Exit DTPICKER control with K_enter

Post by reinaldocrespo »

Hi everyone,

How can I make fw to exit a DTPicker control with the enter and/or return key?

Thank you,


Reinaldo
User avatar
reinaldocrespo
Posts: 918
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL

Post by reinaldocrespo »

I find that I can only exit a dtpicker control by pressing the TAB key. I have tried changing the methods on the class to no avail.

There has to be a way to exit this control using the <return> or <enter> keys.

any ideas?

Reinaldo.
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Reinaldo,

If you change this in samples\TestDtp.rc:

PUSHBUTTON "Close", 103, 148, 6, 50, 14

and build samples\TestDtp.prg, it properly goes to next control pressing enter.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
reinaldocrespo
Posts: 918
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL

Post by reinaldocrespo »

Antonio;

Thank you for your help.

It is a start. Won't quite work for me, for I want to focus the next get. But it is an idea. I tried redefining the button as:

Code: Select all

	REDEFINE BUTTON ID 103 OF ::odlg PROMPT "&Next" ACTION iif( oget[8]:lFocused, ::odlg:GoNextCtrl( ::odlg:hWnd ), )
oget[8] is the dtpicker object. But what it does is that it skips the dtpicker control altogether. I'll keep working on it. Any other idea is much welcomed.

thank you,


Reinaldo.
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post by James Bott »

Reinaldo,

The Tab key is the correct key for Windows apps. The Enter key is a holdever from the DOS era. In Windows apps, the Enter key is supposed to trigger the default pushbutton, which is usually the OK button on a dialog.

James
User avatar
reinaldocrespo
Posts: 918
Joined: Thu Nov 17, 2005 5:49 pm
Location: Fort Lauderdale, FL

Post by reinaldocrespo »

Yes, I realize that. However, there are circumstances where it is much more convenient to do data entry using the numeric keypad and move from field to field using the enter key. You should see the speed of some users doing data entry of item number, units, date and back around. Item after item after item... Forcing them to use the tab key will seriously slow the process.

My problem was with the dpicker class field. I changed it to a standard tget field to pickup the date and it working as needed.

Thank you for your reply,


Reinaldo.
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post by James Bott »

Reinaldo,

I see your point. I have not come across a situation where they were only entering numbers.

James
Post Reply