This may be an easy question for you, but it has been a long time since I have used this. I am trying to remember how to convert regular text to ascII to binary digit(bit).
If anyone could take a brief moment to refresh my memory I would appreciate it.
To ascII is easy : asc("YourChar".
I'm not aware of any VB command that converts integers into binary values but you can do it with a small function (e.g.
You should really ask that question in the C++ forum, this is the VB forum... but in c++:
--------------------------------------------
char MyChar='a';
int MyAcsii=MyChar;
--------------------------------------------
the ascii value is in MyAcii.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.