SelectAllObjects

The PDF Creator enables you to create secure PDF documents and to view, print and process existing PDF documents.
If you have any questions about the installation and usage of the PDF Creator please post them here.
Post Reply
jim90291
Posts: 13
Joined: Wed Nov 12 2003

SelectAllObjects

Post by jim90291 »

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.
Jose
Amyuni Team
Posts: 553
Joined: Tue Oct 01 2002
Contact:

Post by Jose »

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?
jim90291
Posts: 13
Joined: Wed Nov 12 2003

more...

Post by jim90291 »

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.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

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.
Post Reply