I have an application developed in vb.net that links to a partial replicated back-end MS Access database.
The partial replication is based on customer area - and should only replicate customers in say area 1 (where field [cArea]=1). This works ok initially - when I create the partial replication only customers in area 1 are replicated. If I then add a new customer to area 1 in the master database and synchronize this is then replicated across ok - however, if I remove a customer from area 1 they are not removed from the partial replica - they remain?
The code I use in vb.net is shown here:
Dim jro As JRO.Replica Dim cnn1 As ADODB.Connection Dim strCnn As String
As far as I know, deletes should be handled. I see you are doing import/export which handles updates in both directions.
It could be a possibility that the replicated database does not allow deletes. When you create a replica, there is an option to prevent deletes. Only thing is Im not sure that this is for replicated database performing deletes or includes design master updating replica with deletes. I assume its just for the former.