Subject Re: Seeker Grid refresh
From Randy Waldman <randwald@comcast.net>
Date Sat, 21 Feb 2015 22:48:25 -0500
Newsgroups dbase.getting-started

I got it!
form.social1.requery()
NOT:
form.social1.rowset.requery()

thanks for reading!

Randy Waldman Wrote:

> Hi.  I am working with Seeker, as well.
>
> I have an Add New button that calls a form:
>  function PUSHBUTTON1_onClick()
>       set procedure to f:\soc_new.wfm additive
>                 fmyForm = new soc_newform()
>                 fmyform.mdi = false
>                 fmyform.readmodal()
>                 form.social1.rowset.requery()
>                 msgbox('Randy')
>                 form.social1.rowset.refresh()
>       return
>
> The grid is not refreshing when I return from the Add form.  The dbf IS correct.  I think that the problem is that the requery() code is not firing.  I know this because my msgbox() does not show when I return from my Add form.
> Does it have something to do with my mdi and readmodal commands?
>
> Thanks, Randy