|
-
May 13th, 2008, 04:14 PM
#1
Thread Starter
Banned
listbox help
hey i need help... in list box
i wana load List1
like id assword
txt1:txt2
then its working like when i click on the button
one id chek then agian i click on the button then other id chek
how can i?
anyone got idea
i mean when i click on the button id send to txt1 and password send to txt2 and one by one chek all id with button when i hit button one chek another time other same like tht all list..
thanks
-
May 13th, 2008, 04:42 PM
#2
Member
Re: listbox help
Its hard to understand what you mean, but you have a list box that contains both username and password..
When you mark a username and password and push a button you want the username to go into txt1 and password to txt2 right?
To do the last part, use the Split() function.
-
May 14th, 2008, 06:21 AM
#3
Re: listbox help
I would hope the password textbox has mask characters so the actual password isn't displayed.
-
May 14th, 2008, 07:39 AM
#4
Thread Starter
Banned
Re: listbox help
let me expln u i m try to makein cracker...
load code
ID
Code:
On Error GoTo 1
With CommonDialog1
.DialogTitle = "Open Name List:"
.Filter = "All Supported Types|*.dat;*.pas;*.txt|"
.ShowOpen
Dim sText As String
Dim X As Integer
X = FreeFile
On Error Resume Next
Open CommonDialog1.FileName For Input As #X
While Not EOF(X)
Input #X, sText$
List1.AddItem sText$
LoadedNames.Caption = List1.ListIndex + 1 & "/" & List1.ListCount
DoEvents
Wend
Close #X
End With
1
PASSWORD
Code:
On Error GoTo 1
With CommonDialog1
.DialogTitle = "Open Pass List:"
.Filter = "All Supported Types|*.dat;*.pas;*.txt|"
.ShowOpen
Dim sText As String
Dim X As Integer
X = FreeFile
On Error Resume Next
Open CommonDialog1.FileName For Input As #X
While Not EOF(X)
Input #X, sText$
List2.AddItem sText$
PassesLoaded.Caption = List2.ListIndex + 1 & "/" & List2.ListCount
DoEvents
Wend
Close #X
End With
1
Look i make 2 list load ids load password and now i wana Rotate it like
list id and list password working at time when i click on the button
i mean when i click on the button its chek id and password..
and then agian i pus button and other id
then agian and other id pw at same time
i hope u got me now
also pls gm code of SAVE AS ID : PW
I WANA TO MADE A CRACKER
thanks
-
May 14th, 2008, 11:48 AM
#5
Re: listbox help
We do not support any attempts at cracking passwords.
If I am mistaken in your intent please send me a PM and I will reopen this thread.
Thread closed.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|