Hi Readers![]()
I want to implement a Database class. That class will inherit all the capabilities of a connection and recordset. But with Additional Properties, Methods and events for example a Method of GENERATING RECORD NO. for example I want something like this:
dim my_new_recordset new my_recordset_with_additions
new_rec_id = my_new_recordset.generate_id(method_1_or_2)
------------------------
Here method_1_or_2 means that there would be 2 different ways of generating the IDs, like
first methode is :
new_id_A = recordcount + 1
while the 2nd will be:
recordset.filter "type ='Assets'"
recordset.movelast
new_id_A = recordset.field("code_for_Assets")+1
-------------------------------------------------------------------------




Reply With Quote