heres the source. really simple. No i will not give you the custom wrappers so don't even ask.
PHP Code:
Dim StrAccounts As String
Dim strSave As String
Dim StrUserPass() As String
Dim strSplit As String
Dim IntSplit As Integer
Private Sub cmdLoadA_Click()
StrAccounts = (InputBox("What is the name of the file you want to open? Must be in same folder", "Load", "accounts.txt"))
Call Wrapper.LoadList(lstAccounts, StrAccounts)
End Sub
Private Sub cmdSaveP_Click()
strSave = (InputBox("What do you want to save the file as?", "Save", "Passwords.txt"))
Call Wrapper.SaveList(lstPasswords, strSave)
End Sub
Private Sub cmdSaveU_Click()
strSave = (InputBox("What do you want to save the file as?", "Save", "Usernames.txt"))
Call Wrapper.SaveList(lstUsernames, strSave)
End Sub
Private Sub cmdStart_Click()
Dim StrDeli As String
StrDeli = (InputBox("What is the delimeter the accounts should be split by?", "Delimeter", " : "))
cmdStart.Enabled = False
For IntSplit = 0 To lstAccounts.ListCount - 1
strSplit = (lstAccounts.List(IntSplit))
StrUserPass = (Split(strSplit, StrDeli))
lstUsernames.AddItem (StrUserPass(0))
lstPasswords.AddItem (StrUserPass(1))
Next
Call MsgBox("Finished extracting", vbInformation, "Done")
cmdStart.Enabled = True
End Sub
Results 1 to 14 of 14
Thread: [vb6] Extractor
- 02 Dec. 2009 02:38am #1
[vb6] Extractor
- 02 Dec. 2009 02:54am #2
- Age
- 30
- Join Date
- Nov. 2009
- Location
- Anaheim, California
- Posts
- 1,065
- Reputation
- 99
- LCash
- 200.00
You should make one that uses dynamic data parsing.
For example it can extract items that are in totally different data positions.
Example;
File Data - "Lol : Hi"
Input - "Username : Password"
Output - "Username = Lol, Password = Hi"
Input - "Password : Username"
Output - "Password = Lol, Username = Hi"
Etc.
- 02 Dec. 2009 03:05am #3
- 02 Dec. 2009 03:14am #4
- Age
- 30
- Join Date
- Nov. 2009
- Location
- Anaheim, California
- Posts
- 1,065
- Reputation
- 99
- LCash
- 200.00
- 02 Dec. 2009 03:19am #5
- 02 Dec. 2009 03:43am #6
- Age
- 30
- Join Date
- Nov. 2009
- Location
- Anaheim, California
- Posts
- 1,065
- Reputation
- 99
- LCash
- 200.00
- 02 Dec. 2009 06:51pm #7
What is a data exrtractor?
Is it like WIn RAR On 7-Zip?
- 02 Dec. 2009 06:56pm #8
- 02 Dec. 2009 10:12pm #9
- 02 Dec. 2009 11:30pm #10
- 03 Dec. 2009 12:48am #11
- 03 Dec. 2009 02:20am #12
- 03 Dec. 2009 02:34am #13
- 03 Dec. 2009 02:50am #14