I played with this for a while and never finished. but i was able to interface with the sacle. I have a NCI 6720-15 that i was using to test.
basicaly involves opening the com port that the scale is attached to and sending a "prompt" character to it and and then reading that port for a response. the prompt i used was "W chr(13)" there are other prompts that force it to zero out or do a self test etc.
as I remember the biggest problem i had was making sure that the settings on the scale were right. (port speed, parity etc)
this is the entire code from the first interface i played with. the form has an mscomm control, 4 command buttons and 2 text boxes.
I got quite a bit of information from
(I think i downloaded some of the spec manuals)
hope this helps
Robert
Private Sub Command1_Click()
MSComm1.PortOpen = True
End Sub
Private Sub Command2_Click()
MSComm1.InputLen = 0
DataRec.Text = MSComm1.Input
End Sub
Private Sub Command3_Click()
MSComm1.PortOpen = False
End Sub
Private Sub Send_Click()
MSComm1.Output = DataSend.Text
MsgBox "data Sent"
End Sub