Question : looking for code for TMemtable  TMemDataset

we need to build an application by our self and wanted to study the implmentation / mut not be perfect /  of a TMemoryTable or TMEMDataset

Answer : looking for code for TMemtable  TMemDataset

Hi CSSC1.. yes I did already add it to your database I uploaded.

The same problem occurs in the LoadInputListBox() procedure of the frmSelectControlsDirectly_VER1 form because the qry_allControls query has no data.. So I added the same error handler code to this procedure as well...

Basically all I did was change this part:

ERROR_Handler:
    MsgBox "error - " & Err.Number & ", " & Err.Description
    Resume Exit_Sub

to this:

ERROR_Handler:

Select Case Err.Number

Case 3021

    rst.Close: Exit Sub

Case Else

    MsgBox "error - " & Err.Number & ", " & Err.Description
    Resume Exit_Sub

End Select
Random Solutions  
 
programming4us programming4us