Shefali,
Once you connect try to send some hex data and check whether u recieve any data.
Connection eg:
MSComm1.CommPort = 1
MSComm1.Settings = "9600,n,8,1"
MSComm1.PortOpen = True
Public Sub SendHexData()
On Error Resume Next
Dim bytes(5) As Byte
bytes(0) = "&H" & 2
bytes(1) = "&H" & 20
bytes(2) = "&H" & 30
bytes(3) = "&H" & 33
bytes(4) = "&H" & 3
bytes(5) = "&H" & 20
MSComm1.Output = bytes
End Sub
Private Sub MSComm1_OnComm()
On Error Resume Next
If MSComm1.CommEvent = comEvReceive Then
msgbox MSComm1.Input
End If
End Sub
If you want to monitor the port download the following or a one similar to that so that you can see what hex data is sent back from the device.
http://www.hhdsoftware.com/Family/serial-monitor.html
Hope it helps
Marikanna