i tring to send print command through VB using mscomm control it working fine but it throw error:

'4 line clode is below

MSComm1.CommPort = 1
MSComm1.Settings = "9600 ,N,8,1"
MSComm1.PortOpen = False
MSComm1.Output = "String to hardware"

Error: (8015) Could not set comm state, there may be one or more invalid communications parameters.

link|improve this question
Show us your code. Read the FAQ: stackoverflow.com/faq – Brad Dec 31 '10 at 5:01
feedback

2 Answers

Nothing is working because your port is closed.

Line 3 should be as follows:

MSComm1.PortOpen = True

Setting the PortOpen proptery to true opens the port. Setting it to false closes it.

link|improve this answer
feedback

Same 8015 error happened to me while trying to communicate with external hardware. I have only COM1 in the mainboard, and I had installed an EPSON TM-T88III in COM1, but was not using it.

I changed the COM port in the printer to COM4 (although it does not exist physically) and voilĂ : My VB6 program opened COM1 with no problems.

Bottomline: Doublecheck that no other hardware or driver has the port open, thus blocking it, even if you're not explicitly using that other hardware or driver.

Bottomline 2: Make sure that MSComm1.PortOpen = False is changed to MSComm1.PortOpen = True, other wise you'll NOT be able to communicate at all!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.