Results 1 to 5 of 5

Thread: listbox help

  1. #1

    Thread Starter
    Banned
    Join Date
    Mar 2008
    Posts
    24

    listbox help

    hey i need help... in list box

    i wana load List1
    like idassword
    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

  2. #2
    Member
    Join Date
    Mar 2008
    Posts
    42

    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.

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: listbox help

    I would hope the password textbox has mask characters so the actual password isn't displayed.

  4. #4

    Thread Starter
    Banned
    Join Date
    Mar 2008
    Posts
    24

    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

  5. #5
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    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
  •  



Click Here to Expand Forum to Full Width