abusabbath
Newbie level 4
can anyone help me how to connect vb with usb bluetooth port...what coding i must use..here, i give some coding about open parallel port...
Private Sub Form_Load()
DirectSR1.GrammarFromFile "test.txt" 'load the grammar
DirectSR1.Activate
' Use COM1
MSComm1.CommPort = 1
' 2400 baud, no parity, 8 data bits, 1 stop bit
MSComm1.Settings = "9600,N,8,1"
' Make sure DTR line is low to prevent Stamp reset
MSComm1.DTREnable = False
' Open the port
MSComm1.PortOpen = True
End Sub
*i need to change it to use for usb bluetooth??:|
Private Sub Form_Load()
DirectSR1.GrammarFromFile "test.txt" 'load the grammar
DirectSR1.Activate
' Use COM1
MSComm1.CommPort = 1
' 2400 baud, no parity, 8 data bits, 1 stop bit
MSComm1.Settings = "9600,N,8,1"
' Make sure DTR line is low to prevent Stamp reset
MSComm1.DTREnable = False
' Open the port
MSComm1.PortOpen = True
End Sub
*i need to change it to use for usb bluetooth??:|