 |
|
|
Topic: Scomm32 and classic asp
|
By: Edgardo | Posted on: Oct 6 2016 at 04:28:46 PM | Hi, can this component can be used to open a client serial port on an ASP Page? If yes, what is the right screen for the CreateObject. Per example for MSComm is: Set MSComm1 = CreateObject("MSCommLib.MSComm").
Thank you! | |
By: Guest | Posted on: Oct 6 2016 at 06:17:25 PM | Could MSComm32 be used to open up a client serial port?
SComm32 has the same syntax as MScomm32 but without the "M". So
SComm1 = CreateObject("SCommLib.MSComm")
But I question whether a modern browser would/should give a webpage direct access to the hardware (serial port) on a client machine. IExplorer can maybe host activex but even then it might show scary warnings to your users. | |
By: Edgardo | Posted on: Oct 6 2016 at 06:21:18 PM | thank for the answer, but is
SComm1 = CreateObject("SCommLib.MSComm"), with the MSComm
or
SComm1 = CreateObject("SCommLib.SComm"), with the Scomm
?
Im using internet explorer in and old intranet erp system.
| |
By: Guest | Posted on: Oct 7 2016 at 07:26:27 PM | SCommLib.SComm | |
|