<<
The dbgrid based on the Temp table tInsSchedules is displayed with NO DATA.

Can anyone suggest a resolution ?
>>

The form is not going to be able to determine that the underlying data was 
changed by program code.  You'll need to either:

1. Call PROPERTY TABLE 'tInsSchedules' REFRESH to reload the grid or

2. Call PROPERTY TABLE 'tInsSchedules' CLOSE before manipulating the table data 
and PROPERTY TABLE 'tInsSchedules' OPEN after you're done.

The second option is a better idea if the grid (or other controls on the form) 
allow editing because it avoids issues with the row buffer in the table not 
being written to disk when you reload the rows.
--
Larry

Reply via email to