- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHello,
I have a grid on a form that contains a column which in turn contains a command button. When the user clicks on the command button all occurences are removed from the grid that does not fit the current filter. Right now though when the user clicks the button all of that works but the next record in line moves to the top of the screen rather than staying put. How can I go about making this look better so that the user clicks on the button and that record and the other records drop out without the next record going to the top of the screen and looking rather ugly?
Thanks for any help.
--Troy
Code from command button
THISFORM.LOCKSCREEN = .T.
LOCAL lcrecno, lnrecno
lcrecno = ALLTRIM(DOCUMENT.crecno)
lnrecno = RECNO("document")
THIS.PARENT.PARENT.RECORDS
UPDATE DOCUMENT SET DOCUMENT.linclude = .F., DOCUMENT.lfetch = .F., DOCUMENT.lsend = .F. WHERE ALLTRIM(crecno) = lcrecno
TABLEUPDATE(.T.,.T.,"docum
GO (lnrecno)
THIS.PARENT.PARENT.RECORDS
WITH THIS.PARENT.PARENT
.colrec.CONTROLSOURCE="all
.colnames.CONTROLSOURCE="d
.coldoc.CONTROLSOURCE="doc
.colprop.CONTROLSOURCE = "document.ntype"
ENDWITH
THIS.PARENT.REFRESH()
THISFORM.LOCKSCREEN = .F.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ah7386Posted on 2004-09-02 at 00:40:25ID: 11961101
I dont think you need to detach 'document' from the recordsource of the grid, you only need to do this when the alias is being closed and reopened.
ent") S
Without having your full code to hand I can only guess, but try this:
THISFORM.LOCKSCREEN = .T.
LOCAL lcrecno, lnrecno
lcrecno = ALLTRIM(DOCUMENT.crecno)
lnrecno = RECNO("document")
UPDATE DOCUMENT SET DOCUMENT.linclude = .F., DOCUMENT.lfetch = .F., DOCUMENT.lsend = .F. WHERE ALLTRIM(crecno) = lcrecno
TABLEUPDATE(.T.,.T.,"docum
GO (lnrecno)
THIS.PARENT.PARENT.SETFOCU
THISFORM.LOCKSCREEN = .F.
Hope this isn't completely useless!
Regards
AH