View Single Post
  #2  
Old January 4th, 2010, 03:12 PM posted to microsoft.public.access.forms
Dorian
external usenet poster
 
Posts: 542
Default Unbound text control, read from/write to text file

Why not use a table instead of a text file? Access is designed to use tables.
To use a text file you need to reference the File System Object. Google it to
find out the details of using it.
Since the control is unbound you can read the data in the Current event
based on the primary key of your table record.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".


"Song Su" wrote:

How to have unbound txtMailBody read content from a txt file and write to a
txt file? I want user to have his own default content of email body which is
from last time he run it.

Thanks