How To Conger Up File1.ListCount
Jan 16, 2012
From a VB3 program, the user could select an old game from a list. The list was read from a subdirectory by using a FileListBox Since the file extensions were extraneous to the user, I read them from the FileListBox by using:
[Code]...
View 4 Replies
Oct 12, 2010
I have made a program with 2 files, say (file1 and file2). Here I need to make an object of file2 in file1 where I need help from file2. And file2 needs the display text from file1 again to execute the enquiry. So I made an object of file1 in file2 to get the content in display text. But I get stack overflow exception when compiling. I do somehow understand why I get this information. But how do I solve this problem. I thought if I made this display variable to be public, I might reach it from file2. But I couldn't get the content.
View 4 Replies
May 14, 2009
i am trying to put the contents of a listbox into an array using listcount so i can sort and manipulate the data in the listbox using linq. Everytime I try to use list**** it errors and tells me that listcount is not a member of systems.windows.forms.listbox It also gives this error or list. Here is the for loop i am trying to use to put the data into the array.
[code]
For i = 0 To displayListBox1.Listcount - 1
sorting(i) = displayListBox1.list(i)
Next
[code]
i dim'd i as an integer and sorting() as a string early in the program as class level variables. displayListBox1 is the name of the listbx containing the data I need to use in my LINQ inquiry.
View 2 Replies
Mar 22, 2011
This time I would like to ask you how to keep count of files, without keeping count of them Let's say that in my folder I have file0.txt and file1.txt, next file I would like to write is file2.txt. I would open file file1.txt and save it as a successor (file2.txt).
[Code]...
View 1 Replies
Nov 9, 2009
Got this error: Error2'ListCount' is not a member of 'System.Windows.Forms.ListBox'.C:STRCC Network AdminNetworkAdminRoomPlan.vb522NetworkAdmin
When trying to do the following:
For i = 0 To ListBox1.ListCount - 1
Next
referecnes to System.Windows.Forms have been added
View 6 Replies