• Welcome to Valhalla Legends Archive.
 

little help

Started by MysT_DooM, January 04, 2006, 02:37 PM

Previous topic - Next topic

MysT_DooM

ok i want it so when you click on the check box it goes to the cd.showopen and u then pick the file
then all the stuff in the file gets thrown into a decode function and then tellus u to save antoher file for it to print the new data this is wat i got so far and it doesnt want to work, keep gettin mismatch error

Private Sub Option1_Click()
cd.ShowOpen
msg = cd.Filename
If msg = "" Then MsgBox "Pick a File to Decode ~Thieves": Exit Sub
Me.Cls ' Stops program from freezing...
Open cd.Filename For Append As #1
For i = 0 To 11
i = Left(ScKeyDecode(cd.Filename), 12)
Print #1, Random
Next i
End Sub


vb6, something about that combination of numbers and letters is sexy

l2k-Shadow

i = Left(ScKeyDecode(cd.Filename), 12)

Left() does not return an integer value. That's why you're getting mismatch error.
Quote from: replaced on November 04, 2006, 11:54 AM
I dunno wat it means, someone tell me whats ix86 and pmac?
Can someone send me a working bot source (with bnls support) to my email?  Then help me copy and paste it to my bot? ;D
Já jsem byl určenej abych tady žil,
Dával si ovar, křen a k tomu pivo pil.
Tam by ses povídaj jak prase v žitě měl,
Já nechci před nikym sednout si na prdel.

Já nejsem z USA, já nejsem z USA, já vážně nejsem z USA... a snad se proto na mě nezloběj.

Networks

Use Val() to convert things to a numerical based value.

MysT_DooM

yeah i figured the val, but decided to make a seperate form when u click decode option...
Originall i wanted to
Click on the option whcih would tell u to pick a file and then it would send all the cdkeys in that file through the decode and once it was done it would ask u to save a new file for it to print out all the decode values of those cdkeys...
it got to compilated so i just made it its own form, so now it does everything one by one and u have to put the cdkey in manually.


vb6, something about that combination of numbers and letters is sexy