Similar Threads:
1.Word issue with embedded url in Header while converting it to PDF
I've word doc with embedded url into text in a protected Header of
document everything fine so far, when i generate PDF through Adobe pdf
writer its not picking-up and converting embedded url into link in pdf
file it simply showing as normal text
if i try the same think normal area of word its working fine
does any one have any idea why its behaving like this?
2.VBA: Printing Excel to PDF issue
Greetings,
New to VBA, and would appreciate some help on the following:
I am trying to modify an Excel macro to automate printing a bunch of
Excel files to PDF.
My printer settings is set such that in the Adobe PDF Settings tab of
the Printing Preferences, the "View Result in Acrobat" and "Prompt for
PDF Filename" checkboxes are disabled, and this is what I want because
I don't want the dialog box to pop up when I'm printing the files.
However, there are some Excel files that appear to have these settings
saved into them. I have tried recording a macro to disable these
settings but the macro does not appear to record these actions. I
suspect it's because the macro is unable to access the printer object
outside its "jurisdiction".
My problem is that due to certain requirements that I have to meet, I
am not allowed to save the Excel files before I print them to PDF. Is
there any way to access the printer settings from within the VBA macro
so that I can turn off the "View results in Acrobat" and "Prompt for
PDF Filename" settings?
Thank you.
Arturs
3.Export to PDF Issue!
Using .NET and have a hierarchical dataset binding to a report object -
works just fine. The export to PDF actually works just fine as well for
smaller datasets. The problem is with a larger dataset (i.e., about 1700
rows with less than half-dozen child rows) - it churns and churns and times
out on the export to PDF. It uses about 98% CPU on this larger dataset as
well. Even on the web server itself it is having this problem. Any help or
pointers will be much appreciated!
4.Export to PDF - Smaller Fonts - Known Issue
We develop our applications and reports using Visual Studio 2008 with
Crystal Reports Basic for Visual Studio 2008. The same issue that's been
around for years, where you export a report to PDF and during the export
process, CR shrinks the fonts of text and field objects on the report.
Simply put, this is overly annoying. Now that we've upgraded our
application to use VS2008 (from VS2003).
When we use larger fonts, the font size appear (but upon closer inspection,
are not exactly) very close to the right size, but they are not. Not only
that, the size of the fields in question still shrink! The field width
shrinks but the font does not....so, either we have smaller font sizes that
really makes the reports look ugly, or larger font sizes with LOTS of
clipping of the text within the object.
How can we get around this to where the exported report actually looks like
the report in the designer? #1, we have to use crystal reports and #2, we
have to export to PDF....
As a side question, why hasn't BO fixed this problem? It's been a known
problem for many years...they had a hotfix which fixed it by truncating
text....but in the designer, the text fits perfectly...so they provided a
hotfix for the hotfix which just removes the previous hotfix and the
developer is back to square 1! This is a hurdle that stinks....
Mythran
5.Word to PDF Issue with Acrobat Distiller
I am trying to convert word document to PDF using Acrobat Distiller. Acrobat
Distiller showing status as printing but never converts the document to PDF.
What is wrong with the below mentioned C# code. Am I passing wrong
parameters to ActiveDocument.PrintOut method?
Object printRange = WdPrintOutRange.wdPrintCurrentPage;
Object background = false;
Object append = false;
Object printFile = true;
Word.Application oWord = new Word.Application();
oWord.DisplayAlerts = WdAlertLevel.wdAlertsNone;
oWord.Visible = false;
oWord.WindowState = WdWindowState.wdWindowStateMinimize;
oWord.Documents.Open(ref wordFileName, ref missing, ref
missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing, ref missing);
oWord.ActivePrinter = "Acrobat Distiller";
oWord.ActiveDocument.PrintOut(ref background, ref append,
ref printRange, ref pdfFileName, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing, ref
missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing);
oWord.ActiveDocument.Close(ref saveChanges, ref missing, ref missing);
oWord.Quit(ref saveChanges, ref missing, ref missing);
6. Converting .pdf to .tif using Visual Basic to access Adobe Acrobat
7. converting a word doc into a pdf from a vb.net form
8. Web service to Convert WORD DOC to PDF VB.NET