473,385 Members | 1,396 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

PDF to RTF in Access VBA

Hello,
Can anyone post VBA code for MSAccess to open a PDF file from Access
then save it out to a RTF file? I'm going to use this code to loop
through a table with 100's of paths to PDF's and save them as RTF's.

Thanks in advance for any help.

Vaughn

Jun 1 '06 #1
4 3230
You might start at Adobe site to see if they post enough info about their
object model to tell you whether it supports that or not, and what the
operations would be. Something along this line, except that I don't know
Adobe's object model
dim aa as adobe.application
set aa = new adobe.application

(use your directory crawling loop here)
For each directory in path
for each file in directory
aa.open file
aa.????????? (maybe aa.export acFormatRTF, strMyOutputPath
next file
next directory

Obviously all this is pseudo code, big time. I don't know adobe's object
model, consants, or methods, but you're looking to do something along this
line. It'll be interesting to learn if adobe supports something like this.
It must.

Would you post back any links you find that offer details?
Jun 1 '06 #2
If you need to preserve the formatting of the original PDF then you would be
better off purchasing a 3'rd party tool that converts from PDF to RTF. I
must note that I have not yet found a converter that is 100% accurate in the
conversion process.

If you simply need the plain text of the PDF document then you can purchase
a VB compatible PDF Library or even an ActiveX control that exposes methods
to access the text of the PDF doc.

A Web search will yield a host of solutions from third party vendors. If you
decide to use an ActiveX control make the sure the vendor affirms that the
control will work on a Access form.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
<va******@msn.com> wrote in message
news:11**********************@g10g2000cwb.googlegr oups.com...
Hello,
Can anyone post VBA code for MSAccess to open a PDF file from Access
then save it out to a RTF file? I'm going to use this code to loop
through a table with 100's of paths to PDF's and save them as RTF's.

Thanks in advance for any help.

Vaughn

Jun 1 '06 #3

Rick Wannall wrote:
You might start at Adobe site to see if they post enough info about their
object model to tell you whether it supports that or not, and what the
operations would be. Something along this line, except that I don't know
Adobe's object model
dim aa as adobe.application
set aa = new adobe.application

(use your directory crawling loop here)
For each directory in path
for each file in directory
aa.open file
aa.????????? (maybe aa.export acFormatRTF, strMyOutputPath
next file
next directory

Obviously all this is pseudo code, big time. I don't know adobe's object
model, consants, or methods, but you're looking to do something along this
line. It'll be interesting to learn if adobe supports something like this.
It must.

Would you post back any links you find that offer details?


Thanks for your response. I'm getting pretty close to what you
referenced above. It has been a pain working with Adobe's methods and
properties. Once I have it 100% I'll post it on here.

Jun 6 '06 #4
That would be great.
Jun 6 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

63
by: Jerome | last post by:
Hi, I'm a bit confused ... when would I rather write an database application using MS Access and Visual Basic and when (and why) would I rather write it using Visual Studio .Net? Is it as easy...
13
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded....
1
by: Dave | last post by:
Hello NG, Regarding access-declarations and member using-declarations as used to change the access level of an inherited base member... Two things need to be considered when determining an...
13
by: Simon Bailey | last post by:
I am a newcomer to databases and am not sure which DBMS to use. I have a very simplified knowledge of databases overall. I would very much appreciate a (simplifed) message explaining the advantages...
0
by: Frederick Noronha \(FN\) | last post by:
---------- Forwarded message ---------- Solutions to Everyday User Interface and Programming Problems O'Reilly Releases "Access Cookbook, Second Edition" Sebastopol, CA--Neither reference book...
20
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to...
64
by: John | last post by:
Hi What future does access have after the release of vs 2005/sql 2005? MS doesn't seem to have done anything major with access lately and presumably hoping that everyone migrates to vs/sql. ...
1
by: com | last post by:
Extreme Web Reports 2005 - Soft30.com The wizard scans the specified MS Access database and records information such as report names, parameters and subqueries. ......
17
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting...
37
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.