Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get code?

Status
Not open for further replies.

chirpyform

Programmer
Jun 20, 2003
202
FR
Hi,
I want to stock code of module named strModuleName in a variable or in a table field .
Have you any idea for that?

Sincerly
 
chirpyform,

Export the module as text file
Code:
DoCmd.OutputTo acModule, "ModuleName", "MS-DOSText(*.txt)", "C:\", False, ""
and read the file to your variable!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top