VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This is a code for saving into a file what is in listbox

by Eleoson Gonzales (2 Submissions)
Category: Databases/Data Access/DAO/ADO
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Originally Published: Thu 25th November 1999
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This is a code for saving into a file what is in listbox

Rate This is a code for saving into a file what is in listbox



 for i = 0 to list.listcount -1
       data$ = list.list(i)
        open name for output as #1
          print #1, data$
            close 1
 next i

End Sub

Download this snippet    Add to My Saved Code

This is a code for saving into a file what is in listbox Comments

No comments have been posted about This is a code for saving into a file what is in listbox. Why not be the first to post a comment about This is a code for saving into a file what is in listbox.

Post your comment

Subject:
Message:
0/1000 characters