Page 2 of 2
Posted: Sat Jan 01, 2005 5:39 pm
by thefool
u said something about arrays but i didnt get it was this way you wanted to do it.
Well it seems to work great, but it is still easier to use my simple Xor With PW procedure

+
Posted: Sat Jan 01, 2005 11:44 pm
by PB
Thanks for the tip, Pupil -- that works fine... although I'm not sure I like seeing
the alphabet in my exe with a hex editor... kind of gives it away that I've got
something to hide. I wish there was a simple one-line way like I used to do.
Posted: Sun Jan 02, 2005 2:24 am
by MrMat
Does this work ok?
Code: Select all
a.l=0
a$=Chr('h'+a)+Chr('i'+a)+Chr('d'+a)+Chr('d'+a)+Chr('e'+a)+Chr('n'+a)
Posted: Sun Jan 02, 2005 2:42 am
by PB
@MrMat: AWESOME!

That's what I'm looking for -- thanks!
@Pupil: I was just about to modify your code so that the Data string was
replaced with a loop that defines each alphabetic character (so that the
string ABCD... wouldn't show in a hex editor), so again thanks for your
contribution; but as you can see MrMat's is a lot simpler and easier.
Posted: Sun Jan 02, 2005 2:46 am
by MrMat
Glad to help PB!
