Arcade Prehacks

View Poll Results: Do you like it?

Voters
1. You may not vote on this poll
  • Yes!

    1 100.00%
  • No.

    0 0%
  • Add more functions.

    0 0%
Results 1 to 4 of 4

Thread: Trainer System

  1. #1
    Senior Member
    Join Date
    Jan 2009
    Location
    The Netherlands
    Posts
    693

    Trainer System

    Attached Files Attached Files

  2. #2

    Join Date
    May 2009
    Posts
    11

    Re: Trainer System

    hey 8urg whats the command in visual basic to save the listbox1.items ?

  3. #3
    Senior Member
    Join Date
    Jan 2009
    Location
    The Netherlands
    Posts
    693

    Re: Trainer System

    There isn't one..
    I just looped the listbox into a string and saved that
    I will PM the code if you like..

  4. #4

    Join Date
    May 2009
    Posts
    11

    Re: Trainer System

    Quote Originally Posted by 8uurg
    There isn't one..
    I just looped the listbox into a string and saved that
    I will PM the code if you like..
    no need i found out how

    Code:
            Dim i As Integer
            If ListBox1.Items.Count > 1 Then
                For i = 0 To (ListBox1.Items.Count - 1)
                    RichTextBox1.Text = RichTextBox1.Text + ListBox1.Items.Item(i) + Chr(44)
                Next i
            End If
    tell me if i can make that shorter

    lol trying to remake your program xD
    (Reason: practice and BORED)

    but can u send me the code to copy stuff from richtextbox into a listbox? like you did

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •