Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Center a Row in Grid
Message
From
09/06/2002 07:42:10
 
 
To
03/06/2002 05:27:08
Lutz Scheffler (Online)
Lutz Scheffler Software Ingenieurbüro
Dresden, Germany
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00663970
Message ID:
00666346
Views:
24
Agnes,

Can't you just move the focus before the code is run using setfocus.

Mace

>Hi All,
>I have a problem centering the active row in the visible part of a grid.
>
>I use a code similar to
>
>LOCAL;
> lnHeight AS INTEGER,;
> lnRows   AS INTEGER,;
> lnLoop   AS INTEGER
>
>
>WITH oGrid
> lnHeight = .HEIGHT
> lnRows   = ROUND(((lnHeight-.HEADERHEIGHT)/.ROWHEIGHT)/2,0)
> .HEIGHT = .ROWHEIGHT+.HEADERHEIGHT
>
> .REFRESH()
> .HEIGHT = lnHeight
> FOR lnLoop = 1 TO lnRows-1
>  .DOSCROLL(0)
> ENDFOR &&lnLoop
>ENDWITH &&oGrid
>
>
>this works fine as long as the grid is not in focus. If the grid is in focus and the code beyond is run, the recordpointer will move. This is not easy to trace, because the grid needs to be in focus. I figured out that the change of recordpointer happens in REFRESH(). There is no code in REFRESH() event, I've checked with a plain grid.
>So I put some code in BEFORROWCOLCHANGE to stop moving of RecordPointer if the grid is centering. The movement stops, but then no centering occurs. Same happens if the stop of moving is triggered in textbox VALID()
>
>So I look for a idea to get the thing centered with the record activated before REFRESH()
>
>TIA
>Agnes
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform