P
Phil Hunt
I have been asked to send a Oct(6) to a com port. How do I represent that
number ? Is there a shorthand for it ?
Thanks
number ? Is there a shorthand for it ?
Thanks
I have been asked to send a Oct(6) to a com port. How do I represent
that number ? Is there a shorthand for it ?
Gregory A. Beamer said:Most likely a binary 6 is enough if you are truly talking to a COM port.
If
you are tlaking to something else through the COM port, then you need to
find what it is actually expecting (6 in octal or a string
representation).
More than likely a 6 represented in binary is good enough in this case.
Peace and Grace,
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com
*******************************************
| Think outside the box! |
*******************************************
"&O6" in VB.
"06" in C++.
No shorthand in C#.
Yes there is - it's the same as C++.