Here is how to append the passwords and not keep overwriting the same one
You really can't make an app by just copy paste someone elses app, because they usually have different requirements. This one came from someone adding a password to their school assignment, and only needed one set of credentials. I would do things differently for more than one
I maade some changes to that app so that it would work with more than one user. the problem is that there is no main for that calls new password generation. i added David/Password and test/test. They both work
Last edited by dglienna; Jun 11th, 2005 at 01:30 PM.
Here is how to append the passwords and not keep overwriting the same one
You really can't make an app by just copy paste someone elses app, because they usually have different requirements. This one came from someone adding a password to their school assignment, and only needed one set of credentials. I would do things differently for more than one
I maade some changes to that app so that it would work with more than one user. the problem is that there is no main for that calls new password generation. i added David/Password and test/test. They both work
EDIT: Actually, it isn't working. test/test worked, but not David/Password, I tried some other combos too, but they failed.
Last edited by Echo{tWe}; Jun 11th, 2005 at 07:01 PM.
Hmmm. I guess I should have tested better. Change these two lines:
It was only testing the last one, and I had tested the other two earlier.
Username/Password was the first one
VB Code:
user(idx) = HexToStr(xline(0))
pass(idx) = HexToStr(xline(1))
idx = idx + 1
It was using j, which was 0 each time. Also, you can delete the j% from the declaration so it's like this:
Hmmm. I guess I should have tested better. Change these two lines:
It was only testing the last one, and I had tested the other two earlier.
Username/Password was the first one
VB Code:
user(idx) = HexToStr(xline(0))
pass(idx) = HexToStr(xline(1))
idx = idx + 1
It was using j, which was 0 each time. Also, you can delete the j% from the declaration so it's like this:
VB Code:
Dim i%, ff%, idx%
I tryed changing it, still didn't work. I may have done it wrong, see if it works for you, if it does, could you upload it?