Access is quite different from pure VB, in that the forms exist within the
database (MDB) file, not as separate text files on the drive.
The closest approach to what you ask for might be to export the form as a
text file, using
SaveAsText acForm, "Form1", "C:\MyFolder\Form1.txt"
Then try editing the form, delete it from the database, compact, and ask
Access to import it again:
LoadFromText acForm, "Form1", "C:\MyFolder\Form1.txt"
(You may need to experiment with this: it is undocumented, and version
sensitive.)
Some alternative approaches:
a) Select several objects at once in design view, and change the Properties
for them all at once.
b) Change the properties of the objects in the Toolbox. This sets the
default properties when you create new objects on this form.
c) Set up your MDB so that new forms get the properties you want. See:
Default forms, reports and databases
at:
http://allenbrowne.com/ser-43.html
(This one is *really* good in Access 2007, where new databases automatically
get and use the default forms you set up.)
d) Programmatically manipulate the objects on the form.
This kind of thing:
Function ShowControls(strForm As String)
Dim frm As Form
Dim ctl As Control
DoCmd.OpenForm strForm
Set frm = Forms(strForm)
For Each ctl In frm.Controls
Debug.Print ctl.Name, ctl.ControlType
Next
DoCmd.Close acForm, strForm
End Function