i see this command taks a value as an input, what is it?
my documenation for the PDFCreator seems to be missing explanations of a lot of fxns. is there an updated one?
thanks.
SelectAllObjects
Hello,
The SelectAllObjects() function selects all the objects in the currently displayed page while the document is in Design mode.
Below is a snippet of visual basic code that illustrates this:
Private Sub cmdLoadFile_Click()
Dim strPassword As String
strPassword = ""
With PDF1
.OpenEx "c:\temp\PDF1.pdf", strPassword
.ReportState = acReportStateDesign
.SelectAllObjects (1)
.Refresh
End With
End Sub
Hope this helps?
The SelectAllObjects() function selects all the objects in the currently displayed page while the document is in Design mode.
Below is a snippet of visual basic code that illustrates this:
Private Sub cmdLoadFile_Click()
Dim strPassword As String
strPassword = ""
With PDF1
.OpenEx "c:\temp\PDF1.pdf", strPassword
.ReportState = acReportStateDesign
.SelectAllObjects (1)
.Refresh
End With
End Sub
Hope this helps?
more...
i understand the fxn, my problem is that whenever i use it, i get the following error:
Warning: constructing COleException, scode = DISP_E_MEMBERNOTFOUND ($80020003).
what does this mean? does my pdf creator dll not contain that fxn? if so, how do i get it, and how do i know what version of the creator that i have?
regards.
Warning: constructing COleException, scode = DISP_E_MEMBERNOTFOUND ($80020003).
what does this mean? does my pdf creator dll not contain that fxn? if so, how do i get it, and how do i know what version of the creator that i have?
regards.
Hello,
You can check the version of the PDF Creator you have by right clicking on acpdfcreativex.dll and choosing Properties --> Version --> License.
The latest version of the PDF Creator is 1.50b, if you have an older version you can download the latest update from our site www.amyuni.com
Hope this helps.
You can check the version of the PDF Creator you have by right clicking on acpdfcreativex.dll and choosing Properties --> Version --> License.
The latest version of the PDF Creator is 1.50b, if you have an older version you can download the latest update from our site www.amyuni.com
Hope this helps.