|
-
Dec 4th, 2005, 12:34 AM
#10
Thread Starter
Addicted Member
Re: ini file and listbox
 Originally Posted by dglienna
VB Code:
Option Explicit
Private Sub Form_Load()
Dim x As Integer, str$
For x = 0 To 3
List1.AddItem x * 7
Next x
For x = 0 To List1.ListCount - 1
str = str & List1.List(x) & ";"
Next x
MsgBox str
str = Left(str, Len(str) - 1)
MsgBox str
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
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
|