Quote Originally Posted by dglienna
VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Form_Load()
  4.   Dim x As Integer, str$
  5.   For x = 0 To 3
  6.     List1.AddItem x * 7
  7.   Next x
  8.   For x = 0 To List1.ListCount - 1
  9.     str = str & List1.List(x) & ";"
  10.   Next x
  11.   MsgBox str
  12.   str = Left(str, Len(str) - 1)
  13.   MsgBox str
  14. End Sub
im not understanding what that is for or where to put it, i did for forget to mention that i am taking info from one form and this is saved to the ini, then it can only be viewable on form2 which has the same setup and it all works but the only thing is that the listbox doesnt recieve all the info that is in the ini file