Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to know if grid has the focus?
Message
From
29/08/2004 04:24:27
 
 
To
29/08/2004 04:10:33
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00937360
Message ID:
00937363
Views:
9
>hi gregory,
>
>i'm having a problem with recno(). here it is, in my application i have a login form that opens on top of my main form. form login opens table login.dbf.
>
>in my main form.init() and form.activate() i have,
>
>
>thisform.grid1.recordsource="select * from temp into cursor sys(2015)"
>
>
>
>i tried putting a set step on at column4.text1.click() and see alias(), it returns login.
>
>how can i make alias() return to the cursor of grid? i should check whether grid has the focus or not, if it does then select the cursor. where should i put this, in grid.click()?
>
>pls advise. TIA.
_________________________________________
hi Evelyn,

Could you make the recordsource of grid1 fixed ? I'm guessing a bit here, and I do not see the need for the 'select ... into sys(2015)'
(1) Form designer
grid1.recordsourceType = 1
grid1.recordsource = 'temp'

(2) form load
use temp && if not already open

(3) Form init
you do not need : thisform.grid1.recordsource="select * from temp into cursor sys(2015)"

(4) Form activate
you do not need : thisform.grid1.recordsource="select * from temp into cursor sys(2015)"
Gregory
Previous
Reply
Map
View

Click here to load this message in the networking platform