creating a notepad

Hai,
I have one database containing Names,Address and Mailid, and some other details.
I want to extract all email id from the database and save it into the notepad.
Can anybody help to solve this.
Database is Ms Access 2000.
I need help in Vb.net 2005.
[272 byte] By [g1m0v0n5] at [2007-11-20 11:50:21]
# 1 Re: creating a notepad
Notepad is an application, not a file. It is simply a text file editor. You want to save your data to a text file. That text file can then be viewed in Notepad or any other text editor.

See this thread (http://www.vbforums.com/showthread.php?t=469872) for examples of data access. Once you've got the data from your database you can write it to a text file in a number of ways. Most likely you'd create a StreamWriter and call its Write and/or WriteLine methods repeatedly.
jmcilhinney at 2007-11-10 3:08:11 >