Sign up on the Revelation Software website to have access to the most current content, and to be able to ask questions and get answers from the Revelation community

re: Simple data entry protocol question. (OpenInsight Specific)

At 08 DEC 1997 05:21:37PM F. Boyle wrote:

I have an edit table box on my form that has

Code Last Name First Name MI

If I go to edit a long last name does the user always have to re-type

the name or is there a way to change the behavior of arrow keys while in an edit box?


At 08 DEC 1997 05:41PM Andrew P Mcauley wrote:

F2 toggles edit

[email protected]

Sprezzatura Ltd

World Leaders in all things RevSoft (Except VIP)


At 08 DEC 1997 06:06PM F. Boyle wrote:

Can this F2 toggle be changed since all the users are addicted to F2 as a "List Popup"?!


At 08 DEC 1997 07:34PM Don Bakke wrote:

Can this F2 toggle be changed since all the users are addicted to F2 as a "List Popup"?!

You bet. Put the following code in the CREATE event of your form:


Declare function SendMessage

Equ DTM_SETEDITKEY to 1118

Equ DT_BEGINEDIT to 1

Equ VK_CODE to 113

/* 113 is the virtual key code for F2. 114 is the virtual key code for F3 and so on. So just determine which function key you want to use and replace 113 with the appropriate value. */

hWnd=Get_Property(@Window:".ET_ITEM_DATE", "HANDLE")

rv=SendMessage(hWnd, DTM_SETEDITKEY, DT_BEGINEDIT, VK_CODE)

[email protected]

SRP Computer Solutions


At 08 DEC 1997 07:38PM Don Bakke wrote:

In the above example replace .ET_ITEM_DATE with the name of your edit table.

Sorry!

[email protected]

SRP Computer Solutions

View this thread on the forum...

  • third_party_content/community/commentary/forums_nonworks/90b59d459f00d73285256567007ad425.txt
  • Last modified: 2024/01/04 21:00
  • by 127.0.0.1