I forgot to mention that I am using Access 2000
Xavier
Sounds like you need to change the logic a little so that you buffer up all
of the data that makes a complete record in a big string, or string array,
or byte array, or whatever other container you are comfortable with. Then
when you have validated that you have enough data to comprise a good record,
process the big string, or string array, or byte array, or whatever and
insert the whole thing using one Sql update query as you are doing now.
Looks to me like you are 90% there.
Ron W
> I am currently able to use the microsoft comm control 6 to get data from an
> external device. Using the MSComm1_OnComm() Private Sub saving the data to a
[quoted text clipped - 28 lines]
> End Select
> End Sub