Not implemented problem

If you are a Delphi developer and have any questions about using our products from Delphi here is the place to post them.
Post Reply
systweakamol
Posts: 16
Joined: Fri Sep 09 2005
Contact:

Not implemented problem

Post by systweakamol »

I am using the pdfsuite250.exe a license verison with delphi when i try to add field, command button and selection control on pdf creator and viewer a message appears Not implemented.
I have written this code:
PDFCreator.SetLicenseKey(StrLicenseName,StrLicenseCode);
PDFCreator.DoCommandTool($00000006);
PDFCreator.DoCommandTool($00000015);

Whats wrong please help me out fast
Jose
Amyuni Team
Posts: 553
Joined: Tue Oct 01 2002
Contact:

Post by Jose »

Hello,


I suspect that the situation you are encountering occurs because you are not providing the correct licensing information.


I have included below a code snippet which illustrates this.




begin

PDFCreactiveX1.setlicensekey ('Amyuni Eval','07EFCDAB010001003603981D49EDBABC491DE6BAE5D8B78C20EEDE5F8BA4A978E56027E48DED7954CEBE795D4D22FF42988E30854D8A3FA7D5B695478B85980A759A93A018CF9B458D46C432B8249AAD36C77B4916185C1D16EB28B3');

‘Put the control in design state

PDFCreactiveX1.ReportState := 1 ;
PDFCreactiveX1.DoCommandTool(acCommandToolField);

// PDFCreactiveX1.DoCommandTool(acCommandToolCheckBox);
// PDFCreactiveX1.DoCommandTool(acCommandToolSelection);

end;



Hope this helps?
Post Reply