foto51
Feb 14 2007, 03:50 AM
| | Hello, I have a project that I am doing. I have a list box that you can enter data in, and I need it to have the ability to save that list into a text file (Names.txt). The txt file should have each entry on it's own line. Any help would be appreciated. |
Reply
Galahad
Feb 17 2007, 05:59 PM
I'm not sure about Vb.Net, I haven't touched it in couple of years, but I can give you code, how it would look in VB6, and you can go from there: CODE Dim i As Long
Open "Names.txt" For Output As #1 For i = 0 To List1.ListCount - 1 Print #1, List1.List(i) Next i Close #1
And that's it... I believe it should be fairly simple in Vb.Net too... Probably very similar...
Reply
Galahad
Mar 26 2007, 10:23 AM
OK, I'm sure you already found what you were looking for, but I'll post an example code, of how to write text files in VB.NET... Maybe someone in the future would find it usefull: CODE Imports System Imports System.IO
Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim f As StreamWriter, i As Long, obj As Object For i = 1 To 10 ListBox1.Items.Add("Item " & i.ToString) Next i f = New StreamWriter("C:\Test.txt") For i = 0 To ListBox1.Items.Count - 1 f.WriteLine(ListBox1.Items.Item(i).ToString) Next i f.Close() End Sub End Class That's the full working code, just copy and paste it in your project, and voila... Hope it helped a bit 
Reply
Recent Queries:--
how to save text file in vb.net - 348.10 hr back.
-
simfatic forms rapidshare.com - 1185.34 hr back.
Similar Topics
Keywords : save, files, txt, vb, net
- Search For Video Files And Display Them
Using a batch file in windows (0)
Deleted Some Important Files In Your Usb/ Mem Stick?
(1) if you did then use a file recovery program. there are recovery programs unique to your brand like
sony's recovery program for their memory sticks. i have heard so many people just pity
themselves because of this one.....
Acessing Files In Mac Os X
How to access your files from a different machine? (0) I have a mac book pro and an imac at home. I have accounts of user 'sone' on both machines
and I scan most of my on the imac and it gets saved automatically in my home/pictures folder. I know
its not shared by default here but is there any way I can be able to mount that folder or even give
access to myself from my macbook pro to it? It would save a lot of tedious steps to share it other
wise i.e copying it to another shared folder. Any information much appreciated thank you. ***** OK
never mind I just learned I can do it easily enough. OS X already provided ac....
Need Some Help In File Browser
listing all sub folders and files in them. (8) Hey I want to create a very simple file browser, so that, it reads all the sub-folders which are
places in a directory, and the files inside the sub-folders (It reads only files inside sub-folders
and list them in simply. ) Also, it creates a directory (any name) inside each sub folder. My
Following code reads on the files inside the main directory, it does not read the files inside the
sub-folders.. I appreciate any help. CODE <? $path = "./"; $dir_handle =
@opendir($path) or die("Unable to open $path"); whil....
Save Youtube Files
(21) Hi, I'm running a tool called MelodyCan for my Napster library and recently discovered 1 perfect
feature - YouTube downloader! It allows to download YouTube videos from the site and convert to
various video formats. Install the trial version from http://www.convert-any-media.com/ and go to
your Internet Explorer. All you need is to load Youtube page with a video clip and click on "Save
Youtube video" button or something like that.. and the clip will be saved to the desired location
/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif"....
Download Files Off Esnips.com
even now that the download button is gone! (0) hey everyone, i am sure that many of you may have heard of esnips , which is basically online file
storage/sharing. you can now find almost any file imaginable on esnips, and in many ways it is
better than rapidshare. previously, once you are signed in to esnips, you were able to download any
esnips file via a button only viewable to members. back then, there was a method to download any
file without even signing in. then, probably due to legal issues, users were able to choose whether
or not people could download their files. the hack mentioned above, though, still....
Do Not Conceal! Just Confess
Christ alone can save the sinner (2) People do not like to hear about their sins, nor do they like to be called as sinners. Let me
narrate a story which strongly reveals to us the awfulness of sin. “A church officer came to
talk to the church minister one day about sin. He said to the minister, ‘Sir, we of the
congregation wish you would not talk so much or so plainly about sin. We feel that if our boys and
girls hear you discus the subject so much, they will all the more easily become sinners. Why
don’t you call it a ‘mistake’ or ‘poor judgment’ – but ple....
Care For The Poor
save something for the needy (0) During the Lenten season ( those 40 days ) every year we are advised by the pastors and servants of
God to sacrifice some of our interests so that we can help people who are in want. Have we really
felt the need of charity in our hearts and have we prepared ourselves to lend a helping hand?
Unfortunately, those of us who are left with surplus still want to build up treasures for us and our
children. In short we make an idol out of money. Andrew Carnegie, a Scottish born American
industrialist who made a great fortune in Steel business said, “No idol is more debasing th....
Download Script For Mp3 Files
(0) Hello, I'm looking for a download script for sound files (e.g. mp3, avi, wma, and other ones).
i have found a few download scripts but they would not work for sound files for some reason. also
this will not be used for allowing downloading of illegal or riped music, what i will be using this
script for is i'm making a site for my church and the pastor wants to be able to recored the
services and then have me upload them to the site so that the church members can download them for
what ever reason. If some one could tell me how to make one or could show me a plac....
Freeware Game Files
My topic for free games to d/l (1) All free games on sites should be posted here no virus/spyware here /rolleyes.gif"
style="vertical-align:middle" emoid=":rolleyes:" border="0" alt="rolleyes.gif" /> this is for those
who can make free games and want to give them to the community /ph34r.gif"
style="vertical-align:middle" emoid=":ph34r:" border="0" alt="ph34r.gif" />....
Css Problem On Website
I've uploaded the html/css files but the css isn't working/ (8) Help? I've uploaded all of the html files and css files into the public_html folder , but the
css isn't taking effect. I've checked both the css and te html files , nothing wrong with
them. Halp me? www.genesis.trap17.com/home.html /sad.gif" style="vertical-align:middle" emoid=":("
border="0" alt="sad.gif" />....
Treating .csv Files As Database Data
Showing .CSV data on a web page (2) I use a nice program (which I helped to beta test) called ' Simfatic Forms ' to generate
forms on web pages. The only problem is that it does not (yet) support MySQL databases, it saves the
form data as a .CSV file. Now I was wondering if you can do the same with a .CSV file as you do
with a MySQL databse, ie. displaying the data in that file on a web page which adjusts automatically
as data are added to the file. To clarify: eg. if I make a form to sign a petition online, the data
are saved to a .CSV file every time someone fills in the form, is it now possibl....
Where Do I Upload My Ftp Files? [resolved]
As in, which directory? (1) I recently got approved for hosting. I have an account right now, but I don't know which
directory to post my FTP stuff in. (I don't know if this is in support or not; the search
results didn't return anything.) I remember with my last host that had CPanel that you had to
upload it into the "public_html" folder. So I do that, or do I just upload it into the root
directory? Thanks in advance! (EDIT: Oh, never mind, it is /public_html.)....
How To Hide Your Important Files And Folders
In Ms. Windows, Without Using Programmes. (7) Most of people share their computers with others -family, mates, buddy or whoever- and that sharing
threatens their secrets and private file to be revealed, letting some people to know things they
shouldn't know.. My Securing Way: Operation - Camouflage Use an Icon
Editor to generate a 1x1 Transparent Icon and Save it .. > 1 Open CMD.. Start >> Run or Press
WindowsLogo+R.. Lets Say you wanna hide a Folder named " secure " and it's located in
E:\folder\ so Write E: and Press Enter then Write Cd folder and Enter then At....
Supported Files
(2) what are suported files on this hosting? does it supports types like info? because i want to install
the CMS....
Save The World... One Click At A Time!
20 seconds of clicking will help make a world of difference! (6) I encourage everyone to spread the word on this site... do your clicks and post this on your
bulletin spaces on your social networks. It's an easy way to help make a difference... and it
literally takes less than 20 seconds. /biggrin.gif" style="vertical-align:middle" emoid=":D"
border="0" alt="biggrin.gif" /> QUOTE Save The World - One Click At A Time!
On each of these websites, you can click a button to support the cause -- each click creates
funding, and costs you nothing! Bookmark these sites, and click once a day! ....
Decoration
How to Decorate your house with recycle things to save your money (1) Hi, Everyone has different idea. I get wonderful idea and forget quickly. It happens all the time.
Finally, I got an idea to post my idea in the forum. I think you may be interested to know. Now, I
would like to share how I decorate my clothing cupboard. Most of the time my underwears are messed
in my cupboard. It looks really ugly when someone come and visit my room. Last week, I saw an empty
tissue box on the table. I got an idea and took that tissue box. I folded my underwears, and rolled
them as spring rolls, then put in the tissue box one by one. I could put 12 ....
Sharing Files And Printer Between Windows Vista And Xp
Networking Problem (8) I have set up a wireless network between my two computers one vista and one XP I can access the
shared files from the vista machine on the XP PC but I cannot access the shared files or printer
which are on the XP PC via the vista one I don' think it is a firewall issue. Can anyone help
please it is driving me mad?? /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0"
alt="biggrin.gif" />....
Firefox Dictionary Word Edit
Oops! Accidentally selected "Save to dictionary" on a mis- (3) So I've done this twice now. If I keep it up, I'll never find another typo or misspelled
word when I'm going through searching for them. When I right-clicked on the wrongly spelled word
I accidentally clicked on the "save to dictionary" choice instead of the corrected word when it came
up. Now, how do I go in and find that new addition to my dictionary and delete it? I'm using the
latest version of OSX for Mac, by the way. I have a feeling if I go searching through the "library"
file under FF, I might find the answer and if that's the case, I'll p....
Delete A Bunch Of Files Using Dos Statement
DOS Delete Command (4) when we are running a program.they usually create many files that we don't need.Anyone knows the
dos commands that we can delete those file at once?if you know could you please tell me that.thanks
Edit title for spelling error. ....
How To Fix Problems With Shareaza
ONLY for people to download LEGAL files with. (1) Can't run shareaza and surf the internet at the same time? There could be two
problems: Your uploads are killing your downloads and/or you are using Windows 95/98/ME. If you
are uploading constantly and havent limited the bandwidth then it is likely that you are killing
your download speed which is affecting your ability to surf the web and do other tasks. If you
are uploading lots and download speeds are suffering: Start Shareaza. Click on the Tools menu,
then click Shareaza Settings. In the box that just popped up, there is a list of men....
Software That Will Convert .cue/.bin Files To A Different Format Like .avi
(10) Ok, well recently i downloaded a little snippet of somthing that i couldn't find anywhere else,
and i wish i could have found it somewhere else because the snippet is in .cue/.bin video image
format.. and that is not exactly what i want... i know how to play it, i used VLC media player to
play the file, but now i want to write it to a CD but i do not want to keep VLC media player on my
computer or install it on any computer i want to play this file on... so i was hoping to convert
icue/.bin files to somthing like what the rest of what i have is which is .avi i h....
Flatfile User Login/signup
Uses text files only (compatable with forums and message system) (23) With this tutorial, you will learn how to create a textfile login script. This user membership
script is for use also with my forums and message system scripts. I will also give you the scripts
to make it so that people can change their profiles. Ok, The first thing we need to do is make the
database. To do this, create a blank text file called 'userdata.txt' , make sure it is ALL
LOWER-CASE. Edit this file and put
'**username|##|password|##|email|##|rank|##|userid|##|name|##|picture**'. This will not be
used, however it will give you an idea of how the....
The Icons Of Zip Files Are Wrong Everytime!
Windows 2000 (3) Hello! I am going crazy for a silly little thing. Please help me anyone! The icon for
ZIP files never shows the way it is supposed to. Instead it insists on displaying the Windows
'default document' icon for ZIP files. If I rightclick a zip and choose icon properties, I
can set the icon to be fetched from the winzip executable instead, and all looks fine and dandy
inside the properties dialog, but after refreshing or repairing icon cache it is still the default
document icon that is displayed. If I try to change the icon enough times it will ev....
How To Save *.swf From A Web Site?
freeware or shareware... (28) Greetings, Does anyone know how to grab *.SWF file from web? I've found one software named
LIATRO SWF DECODER.. anyone have tried it? Is it good? Thanks /biggrin.gif' border='0'
style='vertical-align:middle' alt='biggrin.gif' /> ....
Delete Files And Directories Using Php
following up from creating and writing (7) How To Delete Files and Directories follow up from creating them Hello all and
welcome to my second tutorial involving file management. In my previous tutorial , I explained how
to create, write and read files. In this tutorial I'll explain how to remove the files and
directories you took so long to create. I did not explain last time how to create directories as I
did not know, now I do, you can use the mkdir() function. Now with this tutorial.... Removing
Files Removing files can easily be done with the unlink() function: CODE <? un....
Cutting Mp3 And Midi Files
It it possible (12) Hi all, I have a cell phone that can play mp3 ringones and midi ringtones. I have much mp3's on
my computer and also a few mdi's. Is there a way I can cut peices out of them, so i have short
pieces for ringtones. Then i can send them to my cellphone and use. Thanx in advance Moody....
Xbox-save-games
(9) I am curious as to how you get a save game off the Xbox hard drive and onto a computer. I am sure
that brienj could answer this. I am assuming by somehow browsing the network to find the Xbox hard
drive. Is there a tool needed to do this? I am assuming that the Xbox drive is hidden to normal
network browsing.....
Does Anyone Know How To Make Exe Files
(16) Does anyone know any software for making exe files, I want to make simple programs not propper
one's. Thanks.....
Defragment: Cannot Defrag All Fragmented Files
What can I do about this? (9) This is what I get after I defrag, "all files could not be defragged". I think this is slowing
down my computer, so what can I do? I have a couple movies on my hard drive that are about 700MB
and 900MB. Does this have something to do with this big red area? Thanks.....
Looking for save, files, txt, vb, net
|
|
Searching Video's for save, files, txt, vb, net
|
advertisement
|
|