if anybody can give solution to the following problem in vfp 7 version, it
would be very tankful.
I am facing a severe problem, that in some of my clients systems some
records are missing or not updating properly. for example, if I have 3 files
to be updated in a Transactios, one of the file is not updating. the records
çan be find updated before 'End Transactions'. but after the 'End Transacton'
Records are not updated
it is not showing any error messages even i put error handling functions.
But the fact, which is updating properly in some other system.
secondly how i can check database/index file integrity.
the following command are given for updation
***************************
bigin transactions
detail
if Tableupdate(1,.t.,'invoice')
rollback
=messabox('')
thisform.txtinvoiceno.setfocus()
return
endif
if Tableupdate(2,.t.,'invTrans')
rollback
=messabox('')
thisform.txtinvoiceno.setfocus()
return
endif
if Tableupdate(2,.t.,'LedgerTransactions')
rollback
=messabox('')
thisform.txtinvoiceno.setfocus()
return
endif
endtransactions
select invoice
if !eof()
skip
else
skip -1
endif
**************************