Hi
I examined visual basic code and found following codes
"Private Sub UltimaSerial_NewData(Index As Integer, ByVal Count As Integer)".
therefore, it can use multiple using the index value in VB.
but in delphi, it is a little different like following;
procedure TForm1.UltimaSerial1NewData(ASender: TObject; Count: Smallint);
so I can not use any index value...
in that case, how can I use DI148 or DI158 as multiple in delphi?
regards