Author:	Eternal Bliss
Email: 	Eternal_Bliss@hotmail.com
Websites: http://crackmes.cjb.net
	  http://surf.to/crackmes

Program: Text Converter v1.0
Date Released: 25th Feb 1999

			______________________

Program Status:
This program is a shareware. Please register if you think you like it. After registering, you will not see anymore messages reminding you that the program is not registered.
Email me for information on how to register.

			______________________

Function:
This program is for programmers who wish to hide any text strings in their programs. It converts text strings into Chr() codes which replace the string itself.

Eg:
Unregistered = Chr(85) & Chr(110) & Chr(114) & Chr(101) & Chr(103) & Chr(105) & Chr(115) & Chr(116) & Chr(101) & Chr(114) & Chr(101) & Chr(100)

			______________________


Usage:
For example, you want to hide the words "Unregistered" so that no one can change it to "Registered"

So instead of coding:-
variable = "Unregistered"

you change it to:-
variable = Chr(85) & Chr(110) & Chr(114) & Chr(101) & Chr(103) & Chr(105) & Chr(115) & Chr(116) & Chr(101) & Chr(114) & Chr(101) & Chr(100)

Do not add in the quotation marks to show that it is a string anymore. 
After compiling, you won't see the string using Hex Editor at all.

			______________________


Misc:
I've added another function so that you can convert the Chr() codes back into text to double check your conversions.

			______________________

Disclaimer:
Use it at your own risk. I've tested it in Visual Basic. Any other programming languages that uses the same Chr() format should work as well. I'll not be responsible for any mishaps if you mis-use this program.