473,396 Members | 1,864 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,396 software developers and data experts.

Winfax vs mail

Hi
My A2k db generates faxes through Winfax. Is there a possibility to replace
this by mail, taking into account the layout must be the same as on the
faxes ?
It's used mainly used for price-inquiries from suppliers, and make
quotations to customers.
Tanx in advance !
D
Nov 12 '05 #1
4 1884
Simplest would be to use File Send to generate a RTF file as a email
attachment, you will lose any graphical elements of your report.

Use File Send to generate a Access viewer file as a email attachment. Your
vendors will need to install the viewer but they will see the report as you
formatted it. I recall some problems posted here about availability of this
view.

If you have Acrobat distiller you could print a Acrobat file and have Access
send it as a attachment. It is very likely your vendors have Acrobat reader.
"Daedalus" <FD********@hotmail.com> wrote in message
news:eI**********************@phobos.telenet-ops.be...
Hi
My A2k db generates faxes through Winfax. Is there a possibility to replace this by mail, taking into account the layout must be the same as on the
faxes ?
It's used mainly used for price-inquiries from suppliers, and make
quotations to customers.
Tanx in advance !
D

Nov 12 '05 #2
You could also generate an HTML file, but I have not done this myself.

"Daedalus" <FD********@hotmail.com> wrote in message
news:eI**********************@phobos.telenet-ops.be...
Hi
My A2k db generates faxes through Winfax. Is there a possibility to replace this by mail, taking into account the layout must be the same as on the
faxes ?
It's used mainly used for price-inquiries from suppliers, and make
quotations to customers.
Tanx in advance !
D

Nov 12 '05 #3
Hi Ron
Tanx 4 your reply. I happen 2 have Acrobat Distiller version 6.0. I hope u
can provide me with a sample showing how to do it exactly, since I really
don't know how 2 pass the report to the Distiller. I just tried to a report
using docmd.openreport and docmd.outputto, but I don't manage 2 produce a
file. I guess that's the way 2 do it : create a temp file, and then attach
it ?

Tanx already !
D

"paii, Ron" <pa**@packairinc.com> wrote in message
news:vq************@corp.supernews.com...
Simplest would be to use File Send to generate a RTF file as a email
attachment, you will lose any graphical elements of your report.

Use File Send to generate a Access viewer file as a email attachment. Your
vendors will need to install the viewer but they will see the report as you formatted it. I recall some problems posted here about availability of this view.

If you have Acrobat distiller you could print a Acrobat file and have Access send it as a attachment. It is very likely your vendors have Acrobat reader.

"Daedalus" <FD********@hotmail.com> wrote in message
news:eI**********************@phobos.telenet-ops.be...
Hi
My A2k db generates faxes through Winfax. Is there a possibility to

replace
this by mail, taking into account the layout must be the same as on the
faxes ?
It's used mainly used for price-inquiries from suppliers, and make
quotations to customers.
Tanx in advance !
D


Nov 12 '05 #4
I have not tried this before but this is what I came up with.

Setup your report to print to your distiller.
Setup the distiller to not ask for a file name or warn about overwriting. It
should create a file name on your local drive based on the report name.

Use one of the next 2 function to print and email the report

*************

Public Function PrintPDFemail1()

' This will create the PDF if the report is setup for it
DoCmd.OpenReport "rptJobItemStat", acViewNormal

' This command will create the email message and preview it but will NOT
attach the pdf file

DoCmd.SendObject , , acFormatTXT, "so*****@email.com", , , "Job Items",
"Attached is a PDF file", True

End Function

******************
This function will send the attachement without allowing you to preview it
or the email. Maybe someone in this group knows how to setup the email and
open the message for preview.

Public Function PrintPDFemail2()

' This will create the PDF if the report is setup for it

DoCmd.OpenReport "rptJobItemStat", acViewNormal

' The following I got from others in this group to send the email with
the attachment

Dim strEmail As String
Dim strMsg As String
Dim oLook As Object
Dim oMail As Object

Set oLook = CreateObject("Outlook.Application")
Set oMail = oLook.createitem(0)
With oMail
.to = "so*****@email.com"
.body = "Attached is a PDF file for your viewing"
.Subject = "Job Item"
.Attachments.Add ("C:\Documents and
Settings\ron_m\Desktop\rptJobItemStat.pdf")
.Send
End With

Set oMail = Nothing
Set oLook = Nothing
End Function
"Daedalus" <FD********@hotmail.com> wrote in message
news:cJ**********************@phobos.telenet-ops.be...
Hi Ron
Tanx 4 your reply. I happen 2 have Acrobat Distiller version 6.0. I hope u
can provide me with a sample showing how to do it exactly, since I really
don't know how 2 pass the report to the Distiller. I just tried to a report using docmd.openreport and docmd.outputto, but I don't manage 2 produce a
file. I guess that's the way 2 do it : create a temp file, and then attach
it ?

Tanx already !
D

"paii, Ron" <pa**@packairinc.com> wrote in message
news:vq************@corp.supernews.com...
Simplest would be to use File Send to generate a RTF file as a email
attachment, you will lose any graphical elements of your report.

Use File Send to generate a Access viewer file as a email attachment. Your vendors will need to install the viewer but they will see the report as

you
formatted it. I recall some problems posted here about availability of

this
view.

If you have Acrobat distiller you could print a Acrobat file and have

Access
send it as a attachment. It is very likely your vendors have Acrobat

reader.


"Daedalus" <FD********@hotmail.com> wrote in message
news:eI**********************@phobos.telenet-ops.be...
Hi
My A2k db generates faxes through Winfax. Is there a possibility to

replace
this by mail, taking into account the layout must be the same as on the faxes ?
It's used mainly used for price-inquiries from suppliers, and make
quotations to customers.
Tanx in advance !
D



Nov 12 '05 #5

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

Similar topics

0
by: Sylvain Provencher | last post by:
Do someone have develop some code or wrapper to send fax via winfax in .NET ?
6
by: DigitalRick | last post by:
I have been running CDONTS in my ASPpages to send emails to me sent from my guestbook. It had been working fine untill I upgraded to Server 2003 (I am also running Exchange 2003) all locally. I...
0
by: ML | last post by:
Preface: I have looked at both "fax2k.mdb" courtesy of Michael Blake and John McKee et al. and "faxing.mdb" courtesy of Helen Feddema and thank them all for their good will and advice. ...
0
by: K Dahl | last post by:
Has any one experience errors when printing reports to WINFAX such as; missing graphics or erring out? I am using XP, WinFax Pro10.2, and Access 97. Thanks Kris
0
by: Terry M | last post by:
I could use some help to get me started on the right foot automating WinFax Pro.
0
by: Andy Sze | last post by:
How to send PrintDocument(does not a file) to WinFax ? Regards.
34
by: antonyliu2002 | last post by:
I've set up the virtual smtp server on my IIS 5.1 like so: 1. Assign IP address to "All Unassigned", and listen to port 25. 2. Access Connection granted to "127.0.0.1". 3. Relay only allow...
1
by: live | last post by:
Hi, How I can manage logs file for winfax pro 10 with vb.net Thanks.
4
by: William Purdie | last post by:
I am having heaps of trouble with winfax pro,so I decided to try xpfax. It all set up great & i have found out that I am receiving faxes. When i sen a fax it dials, answers & a blank page comes out...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...

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.