dim cdi As New CDIntfEx.CDIntfEx
dim NoPrompt = &H1&
dim ConvertHyperlinks = &H100000
cdi.PDFDriverInit(sPrinter)
cdi.EnablePrinter(LicensedTo, License)
cdi.SetDefaultPrinter()
cdi.FileNameOptionsEx = NoPrompt + ConvertHyperlinks
cdi.HorizontalMargin = 0
cdi.Orientation = 2
cdi.PaperSize = 5
cdi.SetDefaultConfigEx()
cdi.BatchConvert("c:\docs\test.doc")
cdi.RestoreDefaultPrinter()
cdi.DriverEnd()
cdi = Nothing
The only thing the test.doc file has in it is some text and 2 hyperlinks like so:
Hyperlink 1 works when using the above code.Here are some links:
Hyperlink 1 is like so: http://www.amyuni.com
Hyperlink 2 is like so: Amyuni Tech
Hyperlink 2 does NOT.
Am I missing something here?