Ask a Question related to Microsoft Access, Design and Development.
-
Frank Dulk #1
exporting a table for a format txt
I need to create a form of exporting a table for a format txt. I know that
can create a macro for that and tie I already did. Only that to macro
already defines the name of the file destiny, while I need that the user has
the option of typing the name of the file that will be generated by that
export, Jan2003.txt, Balancete.txt, for instance. Do I imagine then that she
can make that road some I modulate, once I found modules that copy or do
they move files, why some not to exist to name? Like this, it could export
the table with the fixed name for the same macro and to use that I modulate
to name for the name that the user wanted.
I know that that and a super task, but I believe that is not something
impossible.
I thank the attention
Frank Dulk Guest
-
Exporting to HPGL/PLT format
Is it possible to export Illustrator to HPGL/PLT format without going through coreldraw? -
Exporting compound paths to dxf format
Our CAD team are pulling their hair out because every time I supply them with a DXF or DWG export from Illustrator CS, the compound paths disappear.... -
exporting Adobe 6.0 to another format
I have created a text editing (fill in the blanks) file using 6.0 pro. However, this file can not be filled in with Adobe reader 4.0. So, how do i... -
Exporting from PDF to MS Word format (.doc or RTF) ?
Hi, I am using the Adode PDF Printer for converting the Word doc to PDF. I am using the code as Application.PrintOut FileName:="",... -
exporting to gif or jpeg format
HI there, I am having a problem exporting designs that i have worked on using freehand to gif or jpeg format....some fo the effects completely... -
Allen Browne #2
Re: exporting a table for a format txt
Frank,
This link has the code to allow the user to select the folder and file name:
[url]http://www.mvps.org/access/api/api0001.htm[/url]
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - [url]http://allenbrowne.com/tips.html[/url]
Reply to the newsgroup. (Email address has spurious "_SpamTrap")
"Frank Dulk" <fdulk@bol.com.br> wrote in message
news:OFOiYfhRDHA.1920@TK2MSFTNGP11.phx.gbl...has>
> I need to create a form of exporting a table for a format txt. I know that
> can create a macro for that and tie I already did. Only that to macro
> already defines the name of the file destiny, while I need that the usershe> the option of typing the name of the file that will be generated by that
> export, Jan2003.txt, Balancete.txt, for instance. Do I imagine then thatmodulate> can make that road some I modulate, once I found modules that copy or do
> they move files, why some not to exist to name? Like this, it could export
> the table with the fixed name for the same macro and to use that I> to name for the name that the user wanted.
> I know that that and a super task, but I believe that is not something
> impossible.
> I thank the attention
Allen Browne Guest
-
Bish #3
exporting a table for a format txt
You need to know some VBA to solution this. The MS
example is:
DoCmd.OutputTo acOutputTable, "Employees",
acFormatTXT, "C:\Employee.txt", True
this exports the table Employees to text file called
Employee.txt to the root of the C drive. You can
dynamically create the file name and path for the export
but you have to undestand VBA to gether the values from
the user and then concatenate these values to create the
file name and path.
the True statement at the end of this code opens the newly
created file
txt. I know that>-----Original Message-----
>
>I need to create a form of exporting a table for a formatthat to macro>can create a macro for that and tie I already did. Onlyneed that the user has>already defines the name of the file destiny, while Igenerated by that>the option of typing the name of the file that will beimagine then that she>export, Jan2003.txt, Balancete.txt, for instance. Do Ithat copy or do>can make that road some I modulate, once I found modulesthis, it could export>they move files, why some not to exist to name? Likeuse that I modulate>the table with the fixed name for the same macro and tonot something>to name for the name that the user wanted.
>I know that that and a super task, but I believe that is>impossible.
>I thank the attention
>
>
>.
>Bish Guest



Reply With Quote

