Hello Al
I'm really sorry for the confusion. We really do it a little differently and I always thought the two ways are the same:
We have a script that essentially does
Application.SaveAsText acForm, "History_View", "c:\temp\History_View.form"
for each form. That WILL export the form definition with everything else, akin to a real VB form. After your changes, you can import it again by using:
Application.LoadFromText acForm, "History_View", "c:\temp\History_View.form"
Take care to omit the leading "Form_" in the names, else it won't find the form.
We use that technique to "decompose" the entire Application (Forms, Reports, Modules, Classes) into files, so we can check them into Source Control (SVN, Git, VSS, whatever...). The functions are undocumented and only visible in the object browser when you enable the "show hidden elements" option. But these are essentially the functions that are used by Microsoft's own VSS plugin, so they aren't going to be removed soon.
My full post on that topic is here:
http://stackoverflow.com...evelopment/211210#211210 Hope that helps. :)
Regards,
Oliver