473,659 Members | 3,082 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

TIF Files From Reports (programmatic?)

I have a very unusual request.

I need to be able to generate reports and save them as TIF
files, with full programmatic control. The application will
provide the filenames. Each page of the report will be saved
as a seperate file. All the user should have to do is press a
button to generate the TIFs, without having to "touch the meat"
of viewing the report, choosing a file path/name, answering
prompts, etc.

The end client (of a client) needs TIFs rather than PDFs. TIFs
use little space, for one. There do exist facilities (such as the
non-programmatic Adobe Acrobat) that save reports as PDF files.
I need TIFs; but if the best that can be done is a programmatic
PDF exporter followed by a PDF to TIF converter; it will have
to do.

- Blaine
(Remove all S and change r's to n's to reply.)
Apr 4 '06 #1
6 4160
hi Blaine,

couldn't you just print to Microsoft Office Document Image Writer,
having set
Properties>Adva nced>TIFF ?

-t

Blaine Manyluk ha scritto:
I have a very unusual request.

I need to be able to generate reports and save them as TIF
files, with full programmatic control. The application will
provide the filenames. Each page of the report will be saved
as a seperate file. All the user should have to do is press a
button to generate the TIFs, without having to "touch the meat"
of viewing the report, choosing a file path/name, answering
prompts, etc.

The end client (of a client) needs TIFs rather than PDFs. TIFs
use little space, for one. There do exist facilities (such as the
non-programmatic Adobe Acrobat) that save reports as PDF files.
I need TIFs; but if the best that can be done is a programmatic
PDF exporter followed by a PDF to TIF converter; it will have
to do.

- Blaine
(Remove all S and change r's to n's to reply.)


Apr 4 '06 #2
Access does not have a native capability to save Reports in TIF format. All
the people working on report converters that I have seen have, in fact,
concentrated on PDF. That is, I am sure, because of the widespread
availability of Acrobat readers for free. Perhaps you might search for a PDF
to TIF converter, and cross your fingers for luck.

Larry Linson
Microsoft Access MVP

"Blaine Manyluk" <bs******@corre ct.ab.ca> wrote in message
news:hHpYf.3350 6$%H.31283@clgr ps13...
I have a very unusual request.

I need to be able to generate reports and save them as TIF
files, with full programmatic control. The application will
provide the filenames. Each page of the report will be saved
as a seperate file. All the user should have to do is press a
button to generate the TIFs, without having to "touch the meat"
of viewing the report, choosing a file path/name, answering
prompts, etc.

The end client (of a client) needs TIFs rather than PDFs. TIFs
use little space, for one. There do exist facilities (such as the
non-programmatic Adobe Acrobat) that save reports as PDF files.
I need TIFs; but if the best that can be done is a programmatic
PDF exporter followed by a PDF to TIF converter; it will have
to do.

- Blaine
(Remove all S and change r's to n's to reply.)

Apr 4 '06 #3
On Tue, 04 Apr 2006 07:59:09 GMT, "Blaine Manyluk" <bs******@corre ct.ab.ca> wrote:
I have a very unusual request.

I need to be able to generate reports and save them as TIF
files, with full programmatic control. The application will
provide the filenames. Each page of the report will be saved
as a seperate file. All the user should have to do is press a
button to generate the TIFs, without having to "touch the meat"
of viewing the report, choosing a file path/name, answering
prompts, etc.

The end client (of a client) needs TIFs rather than PDFs. TIFs
use little space, for one. There do exist facilities (such as the
non-programmatic Adobe Acrobat) that save reports as PDF files.
I need TIFs; but if the best that can be done is a programmatic
PDF exporter followed by a PDF to TIF converter; it will have
to do.

- Blaine
(Remove all S and change r's to n's to reply.)


You can save to EMF see
http://www.lebans.com/ReportUtilities.htm

EMF could easily be converted to TIF or may be just as good for your purpose.
Apr 4 '06 #4
----- Original Message -----
From: "polite person" <si*****@ease.c om>
Newsgroups: comp.databases. ms-access
Sent: Tuesday, April 04, 2006 2:31 PM
Subject: Re: TIF Files From Reports (programmatic?)

You can save to EMF see
http://www.lebans.com/ReportUtilities.htm

EMF could easily be converted to TIF or may be just as good for your
purpose.
Of all the replies, yours has been the most useful.
(But thanks to everyone who replied :) )

I have already made a prototype application from the ReportUtilities code,
which does as I have requested, except that it generates EMFs not TIFs.
This gives me all the programmatic control that I need.

What I need now is a command-line EMF to TIF converter, unless I can
convince my client to use EMFs. Any good (and not too expensive) ideas?
On Tue, 04 Apr 2006 07:59:09 GMT, "Blaine Manyluk"
<bs******@corre ct.ab.ca> wrote:
I have a very unusual request.

I need to be able to generate reports and save them as TIF
files, with full programmatic control. The application will
provide the filenames. Each page of the report will be saved
as a seperate file. All the user should have to do is press a
button to generate the TIFs, without having to "touch the meat"
of viewing the report, choosing a file path/name, answering
prompts, etc.

The end client (of a client) needs TIFs rather than PDFs. TIFs
use little space, for one. There do exist facilities (such as the
non-programmatic Adobe Acrobat) that save reports as PDF files.
I need TIFs; but if the best that can be done is a programmatic
PDF exporter followed by a PDF to TIF converter; it will have
to do.

=============== =============== =============== =============== ==========
[To reply, remove the S's from my address, and change the R's to N's.]
Apr 6 '06 #5
On Thu, 06 Apr 2006 05:00:06 GMT, "Blaine Manyluk" <bs******@corre ct.ab.ca> wrote:

What I need now is a command-line EMF to TIF converter, unless I can
convince my client to use EMFs. Any good (and not too expensive) ideas?


I use IrfanView which is free at least for personal use, and I see it has both batch and command
line options and can do most formats including EMF and TIF.
Google "convert emp tif" will find others.

Apr 6 '06 #6
You really should change over to PDF files. There is a free Report to PDF
converter on my site.

As for converting EMF's or Snapshot to TIF files there is a German Developer
who created such functionality. I'm not sure if he ever released it though.
Check the NG's via GoolgeGroups and focus on the German Access related NG's.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Blaine Manyluk" <bs******@corre ct.ab.ca> wrote in message
news:qf1Zf.2813 6$Ph4.21968@edt nps90...
----- Original Message -----
From: "polite person" <si*****@ease.c om>
Newsgroups: comp.databases. ms-access
Sent: Tuesday, April 04, 2006 2:31 PM
Subject: Re: TIF Files From Reports (programmatic?)

You can save to EMF see
http://www.lebans.com/ReportUtilities.htm

EMF could easily be converted to TIF or may be just as good for your
purpose.


Of all the replies, yours has been the most useful.
(But thanks to everyone who replied :) )

I have already made a prototype application from the ReportUtilities code,
which does as I have requested, except that it generates EMFs not TIFs.
This gives me all the programmatic control that I need.

What I need now is a command-line EMF to TIF converter, unless I can
convince my client to use EMFs. Any good (and not too expensive) ideas?
On Tue, 04 Apr 2006 07:59:09 GMT, "Blaine Manyluk"
<bs******@corre ct.ab.ca> wrote:
I have a very unusual request.

I need to be able to generate reports and save them as TIF
files, with full programmatic control. The application will
provide the filenames. Each page of the report will be saved
as a seperate file. All the user should have to do is press a
button to generate the TIFs, without having to "touch the meat"
of viewing the report, choosing a file path/name, answering
prompts, etc.

The end client (of a client) needs TIFs rather than PDFs. TIFs
use little space, for one. There do exist facilities (such as the
non-programmatic Adobe Acrobat) that save reports as PDF files.
I need TIFs; but if the best that can be done is a programmatic
PDF exporter followed by a PDF to TIF converter; it will have
to do.

=============== =============== =============== =============== ==========
[To reply, remove the S's from my address, and change the R's to N's.]

Apr 6 '06 #7

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

Similar topics

0
3625
by: Danny J. Lesandrini | last post by:
First, this is _not_ a question about how to get Crystal Reports to run on a client machine. I've got all the merge modules added to the project and it's working fine. The question is about distributing my .RPT files. 1) Initial Setup Project inclusion of .rpt files: My folder of new .RPT files keeps growing. Is there a way to point my deployment/setup project to the folder containing these .RPT files so they are added...
1
2998
by: Hank Reed | last post by:
For about a year I have been printing pdf files from Access 2000 using the ShellExecute Me.hWnd, "print", FileName, "", 0, SW_SHOWNORMAL We normally print, from 1 to 100 engineering documents in this way. Now I would like to intermingle (Collate) the pdf files with the Access reports: i.e. Access Report - pdf file - Access Report - pdf file When I loop though the list of reports - pseudo code here:
3
6906
by: Gheaci Maschl | last post by:
Hi all! I would like to have your opinion about my problem and my proposal how to solve it: Ingredients: - BTriev database - Crystal Reports - maybe MS Access - Liinos6 (small ERP software)
4
4640
by: ZRexRider | last post by:
Hi, I have an MS-Access 2000 application that is connected to a MS-SQL Server 2000 backend by linking tables through a DSN-Less connection. No problems at all with that part. This application executes various Crystal Reports that have their own built in SQL. These reports have no need for the MS-Access Linked tables and can function stand-alone against MS-SQL.
0
2627
by: Danny J. Lesandrini | last post by:
Didn't get any takers on this post this morning at dotnet.General, so I'm reposting here. First, this is _not_ a question about how to get Crystal Reports to run on a client machine. I've got all the merge modules added to the project and it's working fine. The question is about distributing my .RPT files. 1) Initial Setup Project inclusion of .rpt files: My folder of new .RPT files keeps growing. Is there a way to point
0
2388
by: richardkreidl | last post by:
I have the following hash script that I use to compare two text files. 'Class Public Class FileComparison Public Class FileComparisonException Public Enum ExceptionType U 'Unknown A 'Add D 'Delete
1
1377
by: badwal | last post by:
One of the requirements of our ASP.NET 2.0 web application (developed with visual studio 2005) is to create reports in form of excel spreadsheets with data coming from Sql Server 2005 database. Some points are as follows: 1) User should be able to filter data included in reports like choose among cycles, cars etc or all of them (I.e. Sql query is generated dynamically based on user choice) 2) Data is retrieved from database and...
0
1369
by: Shat T. Cat | last post by:
Hello, I have a program that I originally wrote in VB6 that breaks down plain-text Profit & Loss reports from my organization's Accounting system into separate files for each Cost Center (office or section). I post the output files on our local intranet web site for the managers to access. The brain surgeons at our headquarters reformatted the original reports so they don't fit on normal 8.5 x 11 inch paper. So, I wrote another little...
4
3298
by: Miro | last post by:
<i have also added this reply to the other newsgroup - now that I have realizd ( and assuming ) it is not a localized error directly to vb.> I have found this link on the website: https://www.sdn.sap.com/irj/sdn/businessobjects-downloads ..NET Utility CR 2008 Merge Modules for the .NET Framework ZIP 74.716 Windows English 12.03.2008 and it states:
0
8428
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8747
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7356
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6179
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2752
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1737
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.