G
Guest
How can I convert a string to its binary equivalent?
Any help will be greatly appreciated!
Kevin
Any help will be greatly appreciated!
Kevin
Kevin said:How can I convert a string to its binary equivalent?
Kevin said:I am trying to protect users from themselves. I am storing configuration
information in an application I am revising. I have had a "Smart" user try to
modify something in a file containing configuration information where the
user read something he did not understand and thought changing a value would
make things work the way he thought they should. It took me several days of
plugging and his confession to figure out what happened. TO prevent that in
the future I thought I would obscure the information in the file. To obscure
that information I am trying to store the information in a format he can not
read. My other option is to hide the file containing the information, which I
may do as well.
It is a BASIC legacy for PRINT (VBA: Debug.? -> Debug.Print).Terry in the "sample useage" you have a question mark before the function
name. Why? I have never seen that syntax?
?hexstring("Kevin")
4B6576696E
Kevin said:Terry in the "sample useage" you have a question mark before the function
name. Why? I have never seen that syntax?
?hexstring("Kevin")
4B6576696E
?stringhex(hexstring("Kevin"))
Kevin
or
?stringhex("4B6576696E")
Kevin