N
Nicolas
Can I have a function/Macro which will be trigger when a new row have been
added to a specific table. This should do something like the following
dim numOfRows as Integer=0
Function onRowAdded() as Integer
'copy the newly added row to a text file for third party log
dim thisRowText as String
thisRowText = Col(0) & "~" & Col(1)
'Save thisRowText
numOfRows= Application.CurrentDb.TableDefs(0).RecordCount
thisRowtext=Nothing
onRowAdded=numOfRows
End Function
added to a specific table. This should do something like the following
dim numOfRows as Integer=0
Function onRowAdded() as Integer
'copy the newly added row to a text file for third party log
dim thisRowText as String
thisRowText = Col(0) & "~" & Col(1)
'Save thisRowText
numOfRows= Application.CurrentDb.TableDefs(0).RecordCount
thisRowtext=Nothing
onRowAdded=numOfRows
End Function