Results 1 to 28 of 28

Thread: [RESOLVED] Help!!!! Please !!

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Resolved [RESOLVED] Help!!!! Please !!

    Hi, right now im working on just a super simple - basic program. I would explain it but it really doesnt matter all that much....

    so what i need help with is, i need to get ALL the words/items in the listbox to go INTO a textbox... i know how to do it the opposite way with lstbox1.items.add(txtbox1.text) - etc.... but it need to figure out how to make it go from LISTBOX to TEXTBOX. i've already tried stuff like "txtbox1.text = lstbox1.text" - that doesnt work, i've also tried "txtbox1.text = lstbox1.items", and just stuff like that, i've probably tried like 10 different things but none of them work

    im using VB 2008 Express Edition

    PLEASE HELP, i'll put lots of <3<3<3<3<3<3's if you do
    Last edited by kunaiknight; Feb 5th, 2011 at 12:16 PM.

  2. #2
    Addicted Member vb_ftw's Avatar
    Join Date
    Dec 2010
    Posts
    139

    Re: Help!!!! Please !!

    this should be simple enough
    i assume listbox is called ListBox1 and textbox is called TextBox1 and also that ur textbox is multiline
    vb Code:
    1. For Each item In ListBox1.Items
    2.             TextBox1.Text = TextBox1.Text & item & Environment.NewLine
    3.         Next

  3. #3
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Help!!!! Please !!

    I've asked the mods to move this thread to the VB.NET forum. Always post in the most specific forum appropriate to the topic. Also, please provide descriptive titles for your threads. If everyone who wanted help use "Help" as the title then every single thread would be entitled "Help" and there would be nothing to distinguish them so we'd have to open every single one to know which was relevant.

    vb_ftw's code will get the job done but it's not the best option. If you need to update a control its preferable to do it only once, so if you have multiple data items, you should combine them into one first, then update the control. There are various ways you could go about this but, assuming that there's either no data already in the TextBox or you want to replace the existing text, I'd do it this way:
    vb.net Code:
    1. Dim lines(Me.ListBox1.Items.Count - 1) As String
    2.  
    3. Me.ListBox1.Items.CopyTo(lines, 0)
    4. Me.TextBox1.Lines = lines
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  4. #4
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: Help!!!! Please !!

    Welcome to VBForums

    It isn't clear from your post which version of VB you are using for this... can you tell us which version the Help -> About screen shows? (likely to be something like: VB 6.0, or VB 6.3, or VB 2008, etc)

  5. #5
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Help!!!! Please !!

    Quote Originally Posted by si_the_geek View Post
    It isn't clear from your post which version of VB you are using for this
    I've not used VB6 but I don't think "lstbox1.items.add(txtbox1.text)" would be valid in anything other than VB.NET would it?
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  6. #6
    Frenzied Member TheBigB's Avatar
    Join Date
    Mar 2006
    Location
    *Stack Trace*
    Posts
    1,511

    Re: Help!!!! Please !!

    Works the same for VB6
    Delete it. They just clutter threads anyway.

  7. #7

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by vb_ftw View Post
    this should be simple enough
    i assume listbox is called ListBox1 and textbox is called TextBox1 and also that ur textbox is multiline
    vb Code:
    1. For Each item In ListBox1.Items
    2.             TextBox1.Text = TextBox1.Text & item & Environment.NewLine
    3.         Next

    hmm i tried this just now and this line:

    txtalpha.Text = txtalpha.Text & item & Environment.NewLine

    got highlighted and an error saying:

    Operator '&' is not defined for string "" and type 'ObjectCollection'.


    idk what most errors mean, i'm not the best in vb and im still just starting

  8. #8
    Frenzied Member TheBigB's Avatar
    Join Date
    Mar 2006
    Location
    *Stack Trace*
    Posts
    1,511

    Re: Help!!!! Please !!

    If you could tell us what VB version you are using, that would be a start.
    Delete it. They just clutter threads anyway.

  9. #9

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Me.ListBox1.Items.CopyTo(lines, 0)
    Me.TextBox1.Lines = lines[/HIGHLIGHT][/QUOTE]

    i also tried your code and changed listbox1 and textbox1 to my names of those items

    Code:
    Dim lines(Me.lstalpha2.Items.Count - 1) As String
    
            Me.lstalpha2.Items.CopyTo(lines, 0)
            Me.txtalpha.Lines = lines
    and with that i got this highlighted:

    Me.lstalpha2.Items.CopyTo(lines, 0)


    with the error message:

    "Attempted to access an element as a type incompatible with the array."

    the code makes sense though, i just cant figure out whats wrong

  10. #10

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by si_the_geek View Post
    Welcome to VBForums

    It isn't clear from your post which version of VB you are using for this... can you tell us which version the Help -> About screen shows? (likely to be something like: VB 6.0, or VB 6.3, or VB 2008, etc)
    im using VB 2008 express edition

    thanks for the reminder btw i meant to put that in my thread but i just forgot :P i'll update it now

  11. #11

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by TheBigB View Post
    If you could tell us what VB version you are using, that would be a start.
    just updated the thread to include that thanks for reminding me

  12. #12
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: Help!!!! Please !!

    Thread moved to 'VB.Net' (VB2002 and later) forum

  13. #13

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    thanks for moving the thread i'm kinda new to the forums so i didnt know exactly where to put it :P.

    anyways, anyone know how i can do this? the other 2 comments regarding code didnt work

  14. #14
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    how do you load your listbox? manually or from a datasource?

    here's 3 possibilities:

    vb Code:
    1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    2.     'databound
    3.     TextBox1.Lines = Array.ConvertAll(ListBox1.Items.Cast(Of DataRowView).ToArray, Function(d As DataRowView) d.Item(ListBox1.DisplayMember).ToString)
    4. End Sub
    5.  
    6. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    7.     'integer
    8.     TextBox2.Lines = Array.ConvertAll(ListBox2.Items.Cast(Of Integer).ToArray, Function(i) i.ToString)
    9. End Sub
    10.  
    11. Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    12.     'string
    13.     TextBox3.Lines = ListBox3.Items.Cast(Of String).ToArray
    14. End Sub

  15. #15

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by .paul. View Post
    how do you load your listbox? manually or from a datasource?
    [/HIGHLIGHT]

    im using a textbox to input what i want into the listbox... then i hit a button to alphabetize the listbox and take the words (now alphabetized) and insert them into the textbox...

    I tried to use your code:
    Code:
    'string
            txtalpha.Lines = lstalpha2.Items.Cast(Of String).ToArray
    because the "string" option seemed most fitting...

    anyways once i copied it and inputted the names of my textbox and lstbox and ran the program i got this part highlighted:

    txtalpha.Lines = lstalpha2.Items.Cast(Of String).ToArray

    and the error read:

    Unable to cast object of type 'ObjectCollection' to type 'System.String'.

    your code seems to make sense to me, but i dont understand why it doesnt work...

  16. #16
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    which framework are you targetting?

  17. #17

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by .paul. View Post
    which framework are you targetting?
    what do you mean framework?....

  18. #18
    Frenzied Member TheBigB's Avatar
    Join Date
    Mar 2006
    Location
    *Stack Trace*
    Posts
    1,511

    Re: Help!!!! Please !!

    You can find it in project properties.
    It's either 2.0, 3.0, 3.5 or 4 client profile (or something like it).
    Delete it. They just clutter threads anyway.

  19. #19

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by TheBigB View Post
    You can find it in project properties.
    It's either 2.0, 3.0, 3.5 or 4 client profile (or something like it).
    i checked the properties, couldnt find it... i cant see why it would be important though?

  20. #20
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    what sort of size is your project? could you zip it + upload it + i'll find the problem for you?

  21. #21

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by .paul. View Post
    what sort of size is your project? could you zip it + upload it + i'll find the problem for you?
    it's super small, not even like a full page of code... but yea, i'll see if i can upload it.. can i upload it to the thread? or what exactly would be the easiest way for this?

  22. #22
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    below the message editor window, click Go Advanced. then click (see image) to upload.
    Attached Images Attached Images  

  23. #23

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    Quote Originally Posted by .paul. View Post
    below the message editor window, click Go Advanced. then click (see image) to upload.
    heres the file , sorry this takes so much time dude :P thank you so much for this
    Attached Files Attached Files

  24. #24
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    which button should add the list items to the textbox?

  25. #25
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    this worked for me:

    vb Code:
    1. Public Class crmalpha
    2.  
    3.     Private Sub cmdalpha_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdalpha.Click
    4.  
    5.         lstalpha2.Items.Add(lstalpha.Items)
    6.  
    7.         lstalpha2.Sorted = True
    8.  
    9.         txtalpha.Lines = lstalpha.Items.Cast(Of String).ToArray
    10.  
    11.     End Sub
    12.  
    13.     Private Sub cmdadd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdadd.Click
    14.  
    15.         lstalpha.Items.Add(txt1.Text)
    16.  
    17.         txt1.Text = ""
    18.         txt1.Focus()
    19.  
    20.  
    21.     End Sub
    22.  
    23.     Private Sub cmddelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmddelete.Click
    24.  
    25.         lstalpha.Items.Remove(txt1.Text)
    26.  
    27.         txt1.Text = ""
    28.         txt1.Focus()
    29.  
    30.     End Sub
    31.  
    32.     Private Sub lstalpha_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lstalpha.Click
    33.  
    34.         txt1.Text = lstalpha.Text
    35.  
    36.     End Sub
    37.  
    38. End Class

  26. #26
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    ok i found it. you want to display the sorted items from lstalpha2 in the textbox:

    vb Code:
    1. Private Sub cmdalpha_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdalpha.Click
    2.  
    3.     lstalpha2.Items.AddRange(lstalpha.Items.Cast(Of String).ToArray)
    4.  
    5.     lstalpha2.Sorted = True
    6.  
    7.     txtalpha.Lines = lstalpha2.Items.Cast(Of String).ToArray
    8.  
    9. End Sub

  27. #27
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help!!!! Please !!

    working better now?

  28. #28

    Thread Starter
    New Member
    Join Date
    Jan 2011
    Posts
    12

    Re: Help!!!! Please !!

    thanks so much dude, your code worked and at first it didnt... but then i figured it out... it was my fault xD my code was pretty dumb :P anyways... as promised:

    <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3

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