Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Arrow Keys Don't Fire When, GotFocus, Click in Grid txtB
Message
From
11/02/2002 18:42:22
 
 
To
11/02/2002 18:35:05
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00618623
Message ID:
00618635
Views:
18
>Hi Chuck,
>
>You will need code in your textbox's KeyPress event to accomplist what you want. FWIW, I would put the code in the grid (or the form) and reference the same code from both the Click() and the Keypress()
>
>pamela

Hiya Chuck, Pamela;

What if you have 30 something columns on the grid? Perhaps if you do it this way...

_activeform.keypress

/pIF TYPE("THISFORM.ActiveControl") == "O" AND UPPER(THISFORM.ActiveControl.BaseClass) <> "GRID"
IF INLIST(LAST(), leftarrow, rightarrow... leftclick...)
pamelasnewformmethod()
ENDIF
ENDIF
ENDIF /p

Of course, this would only allow for one grid. If you had to, you could explicitly name it...

IF TYPE("THISFORM.ActiveControl") == "O" AND UPPER(THISFORM.ActiveControl.BaseClass) <> "GRID" .AND. THISFORM.ActiveControl.Name = mygridname

Just a thought...

Ric
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform