Amyuni pdf creator
Author: u | 2025-04-23
Amyuni PDF Creator is a Shareware software in the category Miscellaneous developed by Amyuni PDF Creator. The latest version of Amyuni PDF Creator is currently unknown. It was
Amyuni Pdf Creator Software - Free Download Amyuni Pdf Creator
Right before each print job. // and before the configuration // Calling the EnablePrinter() method will start a 20 second time-out value Dispatch.call(pdf,"EnablePrinter", strLicenseTo, strActivationCode); // Resulting PDF document stored here Dispatch.put(pdf,"DefaultDirectory","c:\\Temp"); // Set Printer options Dispatch.put(pdf,"FileNameOptionsEx",acFileNameOptions.NoPrompt.value); // Set Document Author Dispatch.put(pdf,"DocumentAuthor", "Amyuni"); // Set Document Creator Dispatch.put(pdf,"DocumentCreator", "Amyuni Technologies"); // Resulting PDF document stored here Dispatch.put(pdf,"DocumentAuthor", "Amyuni"); // Set Document Subject Dispatch.put(pdf,"DocumentSubject", "Sample Code"); // Set Document Keywords Dispatch.put(pdf,"DocumentKeywords", "Amyuni, Sample, Code"); // Set the Values Dispatch.call(pdf,"SetDefaultConfig"); // The BatchConvert method converts a number of files to PDF. Dispatch.call(pdf,"BatchConvert","c:\\temp\\*.docx"); // The RestoreDefaultPrinter function resets the system default printer // to the printer that was the default before the call to SetDefaultPrinter. Dispatch.call(pdf,"RestoreDefaultPrinter"); // This function will simply detach from an existing printer because the handle was created using DriverInit Dispatch.call(pdf,"DriverEnd"); // Destroy PDF object pdf = null; }}$acFileNameOptions = @{ NoPrompt = 0x00000001 UseFileName = 0x00000002 Concatenate = 0x00000004 DisableCompression = 0x00000008 EmbedFonts = 0x00000010 BroadcastMessages = 0x00000020 PrintWatermark = 0x00000040} #Please check FileNameOptions for the complete flags version# Constants for Activation codes$strLicenseTo = "Amyuni PDF Converter Evaluation"$strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"$AMYUNIPRINTERNAME = "Amyuni PDF Converter"#Declare a new cdintfex object if it does not exist in the form.$PDF = New-Object -ComObject CDIntfEx.CDIntfEx.6.5#Get a reference to the installed printer.#This will fail if the printer name passed to the DriverInit method is #not found in the printer’s folder[System.__ComObject].InvokeMember('DriverInit', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$AMYUNIPRINTERNAME) #The SetDefaultPrinter function sets the system default printer to the one#initialized by the DriverInit functions.[System.__ComObject].InvokeMember('SetDefaultPrinter', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$null) #The EnablePrinter() method needs to be called right Will start a 20 second time-out value PDF.EnablePrinter(strLicenseTo, strActivationCode); // Resulting PDF document stored here PDF.DefaultDirectory = @"C:\Temp"; // Set Printer options PDF.FileNameOptionsEx = (int)acFileNameOptions.NoPrompt; // Set Document Author PDF.DocumentAuthor = "Amyuni"; // Set Document Creator PDF.DocumentCreator = "Amyuni Technologies"; // Set Document Subject PDF.DocumentSubject = "Sample Code"; // Set Document Keywords PDF.DocumentKeywords = "Amyuni, Sample, Code"; // Set the Values PDF.SetDefaultConfig(); // The BatchConvert method converts a number of files to PDF. PDF.BatchConvert(@"c:\\Temp\\*.docx"); // The RestoreDefaultPrinter function resets the system default printer // to the printer that was the default before the call to SetDefaultPrinter. PDF.RestoreDefaultPrinter(); // This function will simply detach from an existing printer because the handle was created using DriverInit PDF.DriverEnd();}// PDF Converter Cpp.cpp : Defines the entry point for the console application.// #include #include #include #include "CdIntf.h"#pragma comment (lib, "CDIntf.lib")using namespace std;int main(){ // Constants for Activation codes #define strLicenseTo "Amyuni PDF Converter Evaluation" #define strActivationCode "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA" #define AMYUNIPRINTERNAME "Amyuni PDF Converter" // Get a reference to the installed printer. // This will fail if the printer name passed to the DriverInit method is // not found in the printer’s folder HANDLE PDF = DriverInit(AMYUNIPRINTERNAME); // The CDISetDefaultPrinter function sets the system default printer to the one // initialized by the DriverInit functions. CDISetDefaultPrinter(PDF); // The EnablePrinter() method needs to be called right before each print job. // and before the configuration // Calling the EnablePrinter() method will start a 20 second time-out value EnablePrinter(PDF, strLicenseTo, strActivationCode); // Resulting PDF document stored here SetDefaultDirectory(PDF, "c:\\Temp");Amyuni PDF Creator Software files list - Download Amyuni PDF Creator
// Set Printer options SetFileNameOptions(PDF, NoPrompt); // Set Document Author SetAuthor(PDF, "Amyuni"); // Set Document Creator SetCreator(PDF, "Amyuni Technologies"); // Set Document Subject SetSubject(PDF, "Sample Code"); // Set Document Keywords SetKeywords(PDF, "Amyuni, Sample, Code"); // Set the Values SetDefaultConfig(PDF); // The BatchConvert method converts a number of files to PDF. BatchConvertEx(PDF, "c:\\Temp\\*.docx"); // The RestoreDefaultPrinter function resets the system default printer // to the printer that was the default before the call to SetDefaultPrinter. RestoreDefaultPrinter(PDF); // This function will simply detach from an existing printer because the handle was created using DriverInit DriverEnd(PDF); // Destroy PDF object PDF = nullptr; return 0;}package Example;import com.jacob.activeX.ActiveXComponent;import com.jacob.com.Dispatch;public class Sample { public enum acFileNameOptions { // Please check FileNameOptions for the complete flags version NoPrompt(0x00000001), UseFileName(0x00000002), Concatenate(0x00000004), DisableCompression(0x00000008), EmbedFonts(0x00000010), BroadcastMessages(0x00000020), PrintWatermark(0x00000040); public int value; public acFileNameOptions(int value) { this.value = value; } public Object value(){ return value; } } public static void main(String[] args) { // Constants for Activation codes String strLicenseTo = "Amyuni PDF Converter Evaluation"; String strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"; String AMYUNIPRINTERNAME = "Amyuni PDF Converter"; // Declare a new cdintfex object if it does not exist in the form. ActiveXComponent pdf = new ActiveXComponent("CDIntfEx.CDIntfEx.6.5"); // Get a reference to the installed printer. // This will fail if the printer name passed to the DriverInit method is // not found in the printer’s folder Dispatch.call(pdf,"DriverInit",AMYUNIPRINTERNAME); // The SetDefaultPrinter function sets the system default printer to the one // initialized by the DriverInit functions. Dispatch.call(pdf,"SetDefaultPrinter"); // The EnablePrinter() method needs to be called. Amyuni PDF Creator is a Shareware software in the category Miscellaneous developed by Amyuni PDF Creator. The latest version of Amyuni PDF Creator is currently unknown. It was TN12: Using the Amyuni PDF Creator libraries to flatten a PDF document. TN11: Using the Amyuni PDF Creator libraries to redact a PDF document. TN10: Ready for AJAX with PDF Creator .NET! TN09b: Using the Amyuni PDF Creator.Net with Microsoft C TN05b: Using the Amyuni PDF Creator with Microsoft Access TN03b: Using the Amyuni PDF Creator withAmyuni PDF Creator for - ComponentSource
AcFileNameOptions.NoPrompt ' Set Document Author PDF.DocumentAuthor = "Amyuni" ' Set Document Creator PDF.DocumentCreator = "Amyuni Technologies" ' Set Document Subject PDF.DocumentSubject = "Sample Code" ' Set Document Keywords PDF.DocumentKeywords = "Amyuni, Sample, Code" ' Set the Values PDF.SetDefaultConfig() ' The BatchConvert method converts a number of files to PDF. PDF.BatchConvert("C:\Temp\*.docx") ' The RestoreDefaultPrinter function resets the system default printer ' to the printer that was the default before the call to SetDefaultPrinter. PDF.RestoreDefaultPrinter() ' This function will simply detach from an existing printer because the handle was created using DriverInit PDF.DriverEnd() ' Destroy PDF object PDF = Nothing End Sub[Flags]public enum acFileNameOptions{ // Please check FileNameOptions for the complete flags version NoPrompt = 0x00000001, UseFileName = 0x00000002, Concatenate = 0x00000004, DisableCompression = 0x00000008, EmbedFonts = 0x00000010, BroadcastMessages = 0x00000020, PrintWatermark = 0x00000040}public void Sample(){ // Constants for Activation codes const string strLicenseTo = "Amyuni PDF Converter Evaluation"; const string strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"; const string AMYUNIPRINTERNAME = "Amyuni PDF Converter"; // Declare a new cdintfex object if it does not exist in the form. CDIntfEx.CDIntfEx PDF = new CDIntfEx.CDIntfEx(); // Get a reference to the installed printer. // This will fail if the printer name passed to the DriverInit method is // not found in the printer’s folder PDF.DriverInit(AMYUNIPRINTERNAME); // The SetDefaultPrinter function sets the system default printer to the one // initialized by the DriverInit functions. PDF.SetDefaultPrinter(); // The EnablePrinter() method needs to be called right before each print job. // and before the configuration // Calling the EnablePrinter() method Before each print job.#and before the configuration#Calling the EnablePrinter() method will start a 20 second time-out value[System.__ComObject].InvokeMember('EnablePrinter', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF, @($strLicenseTo, $strActivationCode))#Resulting PDF document stored here[System.__ComObject].InvokeMember('DefaultDirectory', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"C:\Temp") #Set Printer options[System.__ComObject].InvokeMember('FileNameOptionsEx', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,$acFileNameOptions::NoPrompt)#Set Document Author[System.__ComObject].InvokeMember('DocumentAuthor', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Amyuni") #Set Document Creator[System.__ComObject].InvokeMember('DocumentCreator', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Amyuni Technologies")#Set DocumentSubject[System.__ComObject].InvokeMember('DocumentSubject', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Sample Code")#Set Document Keywords[System.__ComObject].InvokeMember('DocumentKeywords', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Amyuni, Sample, Code") #Set the Values[System.__ComObject].InvokeMember('SetDefaultConfig', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,$null) #The BatchConvert method converts a number of files to PDF.[System.__ComObject].InvokeMember('BatchConvert', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF, "C:\temp\*.docx")#The RestoreDefaultPrinter function resets the system default printer #to the printer that was the default before the call to SetDefaultPrinter.[System.__ComObject].InvokeMember('RestoreDefaultPrinter', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$null) #This function will simply detach from an existing printer because the handle was created using DriverInit [System.__ComObject].InvokeMember('DriverEnd', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$null) #Destroy PDF object$PDF = $null' FileNameOptions constants' Please check FileNameOptions for the complete flags versionConst NoPrompt = &H1Const UseFileName = &H2Const Concatenate = &H4Const DisableCompression = &H8Const EmbedFonts = &H10Const BroadcastMessages = &H20Const PrintWatermark = &H40Const MultilingualSupport = &H80Const EncryptDocument = &H100Const FullEmbed = &H200' Constants for Activation codesConst strLicenseTo = "Amyuni PDF Converter Evaluation"Const strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"Const AMYUNIPRINTERNAME = "Amyuni PDF Converter"' Declare a new cdintfex objectDim PDFSet PDF = CreateObject("CDIntfEx.CDIntfEx.6.5")' Get a reference to the installed printer.' This will fail if the printer name passed to the DriverInit method is' not found in the printer’s folderPDF.DriverInit AMYUNIPRINTERNAME' The SetDefaultPrinter function sets the system default printer to the one' initialized by the DriverInit functions.PDF.SetDefaultPrinter' The EnablePrinter() method needs to be called right before each print job.' and before the configuration' Calling the EnablePrinter() method will start a 20 second time-out valuePDF.EnablePrinter strLicenseTo, strActivationCode' Resulting PDF document stored herePDF.DefaultDirectory = "C:\Temp"'PDF Creator ActiveX - Amyuni Technologies
Phiếu bầuSử dụng: Miễn phí 1.311 Tải về FortiClien Endpoint Security Suite (32 bit ) FortiClient standard edition cung cấp một trong những gói an ninh hoàn chỉnh nhất cho máy tính - bao gồm hàng loạt các chức năng bảo vệ mối đe dọa Fortinet cho máy tính để bản và xách tay, ngay cả khi sử dụng ở các mạng công cộng không bảo mật. Xếp hạng: 5 2 Phiếu bầuSử dụng: Miễn phí 618 Tải về G Suite Bộ ứng dụng thông minh của Google G Suite là bộ ứng dụng doanh nghiệp toàn diện để bạn đăng nhập Gmail, Docs, Drive và Calendar trong cùng 1 vị trí, phục vụ tốt cho việc quản lý doanh nghiệp, chăm sóc khách hàng và phát triển kinh doanh hiệu quả. Xếp hạng: 5 1 Phiếu bầuSử dụng: Miễn phí 274 Truy cập Amyuni PDF Suite Desktop Edition Amyuni PDF Suite kết hợp giữa Amyuni PDF Converter và PDF Creator. Xếp hạng: 3 1 Phiếu bầuSử dụng: Dùng thử 437 Tải về Web Log Suite Enterprise Edition Web Log Suite Enterprise Edition 4.1 là một trình phân tích bản ghi server trang web mạnh mẽ. Chương trình này được chi tiết hóa cao và các báo cáo rất dễ để cấu hình được thực hiện bởi rất nhiều ngôn ngữ, FTP, sổ địa chỉ file hoặc email. Xếp hạng: 3 1 Phiếu bầuSử dụng: Dùng thử 308 Tải về Web Log Suite Standard Edition Web Log Suite Standard Edition 4.1 là một trình phân tích bản ghi server trang web mạnh mẽ. Chương trình này được chi tiết hóa cao và các báo cáo rất dễ để cấu hình được thực hiện bởi rất nhiều ngôn ngữ, FTP, sổ địa chỉ file hoặc email. Xếp hạng: 3 1 PhiếuAmyuni PDF Creator for ActiveX - ComponentSource
Audio Reader XL 2025 25.0.7 ... PDF - Acrobat Reader, EPUB, DOC - Microsoft Word Document, RTF, eBook, texts from the Clipboard, HTML ... the PC with an MP3 player or smartphone. Combine leisure and work: If you are preparing for ... Shareware | $19.90 Adolix Split and Merge PDF 3.0.4 ... multiple files following a custom pattern similar to Word printing. Using our freeware you can combine encrypted PDF files with just a few mouse ... Freeware FlexiPDF 2025 ... edit PDF documents as you would in a word processor - Comment, draw and highlight on your ... - insert pages from other PDF files or combine several PDF files into one - Convert PDFs ... Shareware | $79.95 tags: flexipdf, softmaker, binarynow, pdf editor, adobe, acrobat, pdf, encrypt, distiller, pdf/a, 19005-1, converter, merge, create, creator, convert, sign, digital id, driver, edit, security, print, certificate, metadata, printer, watermark, stamp, printer, pdf impress, amyuni Ashampoo PDF Pro 4 4.0.0 ... software, users can work with PDFs just like Word documents, making additions, comments, layout changes, and editing ... software easily converts to popular formats like Microsoft Word, RTF, HTML, EPUB, and JPEG, so content can ... Shareware | $80.00 tags: pdf to word, pdf to excel, pdf converter, compress pdf, combine pdf, word to pdf, excel to pdf, pdf to jpg, jpg to pdf, split pdf, edit pdf, Convert PDF, Create PDF, PDF Utility, PDF software, PDF viewer, PDF program, create PDF, PDF file, covert PDF, compress, encrypt, split, PDF Watermark, Rotate PDF, batch processing, PDF Numbers, PDF encryption, edit PDFs, PDF annotation, PDF forms, PDF signature, OCR text recognition Adobe Acrobat Pro 2024.003.20180 ... the conversion of various file formats, such as Word, Excel, and PowerPoint, into high-quality PDFs, and vice ... of modern document management. Its extensive feature set, combined with its ease of use and robust security ... Trialware novaPDF Standard 11.9 Build 469 ... directly from your favorite programs, such as Microsoft Word, Excel, or PowerPoint, with just a few clicks. ... such as PDF merging, which enables users to combine multiple documents into a single. Amyuni PDF Creator is a Shareware software in the category Miscellaneous developed by Amyuni PDF Creator. The latest version of Amyuni PDF Creator is currently unknown. It was TN12: Using the Amyuni PDF Creator libraries to flatten a PDF document. TN11: Using the Amyuni PDF Creator libraries to redact a PDF document. TN10: Ready for AJAX with PDF Creator .NET! TN09b: Using the Amyuni PDF Creator.Net with Microsoft C TN05b: Using the Amyuni PDF Creator with Microsoft Access TN03b: Using the Amyuni PDF Creator withThe Benefits of the Layered PDF and the Amyuni PDF Creator
The DocumentAuthor, DocumentCreator, DocumentSubject and DocumentKeywords properties are used to set the metadata associated with a document.[in, out] The various document metadata to be stored in the output PDF, can be either Ansi or Unicode.[out] An ansi or Unicode string containing the attribute value.SetAuthor, SetCreator, SetSubject and SetKeywords return 1 if successful, 0 otherwise. DocumentAuthor, DocumentCreator, DocumentSubject and DocumentKeywords return the current value for each property.Member of CDIntfEx.CDIntfEx.Visual Basic .NetC#C++JavaPowerShellVBScriptPublic Enum acFileNameOptions As Integer ' Please check FileNameOptions for the complete flags version NoPrompt = &H1 UseFileName = &H2 Concatenate = &H4 DisableCompression = &H8 EmbedFonts = &H10 BroadcastMessages = &H20 PrintWatermark = &H40End EnumPublic Sub Sample() ' Constants for Activation codes Const strLicenseTo As String = "Amyuni PDF Converter Evaluation" Const strActivationCode As String = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA" Const AMYUNIPRINTERNAME As String = "Amyuni PDF Converter" ' Declare a new cdintfex object if it does not exist in the form. Dim PDF As New CDIntfEx.CDIntfEx ' Get a reference to the installed printer. ' This will fail if the printer name passed to the DriverInit method is ' not found in the printer’s folder PDF.DriverInit(AMYUNIPRINTERNAME) ' The SetDefaultPrinter function sets the system default printer to the one ' initialized by the DriverInit functions. PDF.SetDefaultPrinter() ' The EnablePrinter() method needs to be called right before each print job. ' and before the configuration ' Calling the EnablePrinter() method will start a 20 second time-out value PDF.EnablePrinter(strLicenseTo, strActivationCode) ' Resulting PDF document stored here PDF.DefaultDirectory = "C:\Temp" ' Set Printer options PDF.FileNameOptionsEx =Comments
Right before each print job. // and before the configuration // Calling the EnablePrinter() method will start a 20 second time-out value Dispatch.call(pdf,"EnablePrinter", strLicenseTo, strActivationCode); // Resulting PDF document stored here Dispatch.put(pdf,"DefaultDirectory","c:\\Temp"); // Set Printer options Dispatch.put(pdf,"FileNameOptionsEx",acFileNameOptions.NoPrompt.value); // Set Document Author Dispatch.put(pdf,"DocumentAuthor", "Amyuni"); // Set Document Creator Dispatch.put(pdf,"DocumentCreator", "Amyuni Technologies"); // Resulting PDF document stored here Dispatch.put(pdf,"DocumentAuthor", "Amyuni"); // Set Document Subject Dispatch.put(pdf,"DocumentSubject", "Sample Code"); // Set Document Keywords Dispatch.put(pdf,"DocumentKeywords", "Amyuni, Sample, Code"); // Set the Values Dispatch.call(pdf,"SetDefaultConfig"); // The BatchConvert method converts a number of files to PDF. Dispatch.call(pdf,"BatchConvert","c:\\temp\\*.docx"); // The RestoreDefaultPrinter function resets the system default printer // to the printer that was the default before the call to SetDefaultPrinter. Dispatch.call(pdf,"RestoreDefaultPrinter"); // This function will simply detach from an existing printer because the handle was created using DriverInit Dispatch.call(pdf,"DriverEnd"); // Destroy PDF object pdf = null; }}$acFileNameOptions = @{ NoPrompt = 0x00000001 UseFileName = 0x00000002 Concatenate = 0x00000004 DisableCompression = 0x00000008 EmbedFonts = 0x00000010 BroadcastMessages = 0x00000020 PrintWatermark = 0x00000040} #Please check FileNameOptions for the complete flags version# Constants for Activation codes$strLicenseTo = "Amyuni PDF Converter Evaluation"$strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"$AMYUNIPRINTERNAME = "Amyuni PDF Converter"#Declare a new cdintfex object if it does not exist in the form.$PDF = New-Object -ComObject CDIntfEx.CDIntfEx.6.5#Get a reference to the installed printer.#This will fail if the printer name passed to the DriverInit method is #not found in the printer’s folder[System.__ComObject].InvokeMember('DriverInit', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$AMYUNIPRINTERNAME) #The SetDefaultPrinter function sets the system default printer to the one#initialized by the DriverInit functions.[System.__ComObject].InvokeMember('SetDefaultPrinter', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$null) #The EnablePrinter() method needs to be called right
2025-04-15Will start a 20 second time-out value PDF.EnablePrinter(strLicenseTo, strActivationCode); // Resulting PDF document stored here PDF.DefaultDirectory = @"C:\Temp"; // Set Printer options PDF.FileNameOptionsEx = (int)acFileNameOptions.NoPrompt; // Set Document Author PDF.DocumentAuthor = "Amyuni"; // Set Document Creator PDF.DocumentCreator = "Amyuni Technologies"; // Set Document Subject PDF.DocumentSubject = "Sample Code"; // Set Document Keywords PDF.DocumentKeywords = "Amyuni, Sample, Code"; // Set the Values PDF.SetDefaultConfig(); // The BatchConvert method converts a number of files to PDF. PDF.BatchConvert(@"c:\\Temp\\*.docx"); // The RestoreDefaultPrinter function resets the system default printer // to the printer that was the default before the call to SetDefaultPrinter. PDF.RestoreDefaultPrinter(); // This function will simply detach from an existing printer because the handle was created using DriverInit PDF.DriverEnd();}// PDF Converter Cpp.cpp : Defines the entry point for the console application.// #include #include #include #include "CdIntf.h"#pragma comment (lib, "CDIntf.lib")using namespace std;int main(){ // Constants for Activation codes #define strLicenseTo "Amyuni PDF Converter Evaluation" #define strActivationCode "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA" #define AMYUNIPRINTERNAME "Amyuni PDF Converter" // Get a reference to the installed printer. // This will fail if the printer name passed to the DriverInit method is // not found in the printer’s folder HANDLE PDF = DriverInit(AMYUNIPRINTERNAME); // The CDISetDefaultPrinter function sets the system default printer to the one // initialized by the DriverInit functions. CDISetDefaultPrinter(PDF); // The EnablePrinter() method needs to be called right before each print job. // and before the configuration // Calling the EnablePrinter() method will start a 20 second time-out value EnablePrinter(PDF, strLicenseTo, strActivationCode); // Resulting PDF document stored here SetDefaultDirectory(PDF, "c:\\Temp");
2025-04-15// Set Printer options SetFileNameOptions(PDF, NoPrompt); // Set Document Author SetAuthor(PDF, "Amyuni"); // Set Document Creator SetCreator(PDF, "Amyuni Technologies"); // Set Document Subject SetSubject(PDF, "Sample Code"); // Set Document Keywords SetKeywords(PDF, "Amyuni, Sample, Code"); // Set the Values SetDefaultConfig(PDF); // The BatchConvert method converts a number of files to PDF. BatchConvertEx(PDF, "c:\\Temp\\*.docx"); // The RestoreDefaultPrinter function resets the system default printer // to the printer that was the default before the call to SetDefaultPrinter. RestoreDefaultPrinter(PDF); // This function will simply detach from an existing printer because the handle was created using DriverInit DriverEnd(PDF); // Destroy PDF object PDF = nullptr; return 0;}package Example;import com.jacob.activeX.ActiveXComponent;import com.jacob.com.Dispatch;public class Sample { public enum acFileNameOptions { // Please check FileNameOptions for the complete flags version NoPrompt(0x00000001), UseFileName(0x00000002), Concatenate(0x00000004), DisableCompression(0x00000008), EmbedFonts(0x00000010), BroadcastMessages(0x00000020), PrintWatermark(0x00000040); public int value; public acFileNameOptions(int value) { this.value = value; } public Object value(){ return value; } } public static void main(String[] args) { // Constants for Activation codes String strLicenseTo = "Amyuni PDF Converter Evaluation"; String strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"; String AMYUNIPRINTERNAME = "Amyuni PDF Converter"; // Declare a new cdintfex object if it does not exist in the form. ActiveXComponent pdf = new ActiveXComponent("CDIntfEx.CDIntfEx.6.5"); // Get a reference to the installed printer. // This will fail if the printer name passed to the DriverInit method is // not found in the printer’s folder Dispatch.call(pdf,"DriverInit",AMYUNIPRINTERNAME); // The SetDefaultPrinter function sets the system default printer to the one // initialized by the DriverInit functions. Dispatch.call(pdf,"SetDefaultPrinter"); // The EnablePrinter() method needs to be called
2025-04-03AcFileNameOptions.NoPrompt ' Set Document Author PDF.DocumentAuthor = "Amyuni" ' Set Document Creator PDF.DocumentCreator = "Amyuni Technologies" ' Set Document Subject PDF.DocumentSubject = "Sample Code" ' Set Document Keywords PDF.DocumentKeywords = "Amyuni, Sample, Code" ' Set the Values PDF.SetDefaultConfig() ' The BatchConvert method converts a number of files to PDF. PDF.BatchConvert("C:\Temp\*.docx") ' The RestoreDefaultPrinter function resets the system default printer ' to the printer that was the default before the call to SetDefaultPrinter. PDF.RestoreDefaultPrinter() ' This function will simply detach from an existing printer because the handle was created using DriverInit PDF.DriverEnd() ' Destroy PDF object PDF = Nothing End Sub[Flags]public enum acFileNameOptions{ // Please check FileNameOptions for the complete flags version NoPrompt = 0x00000001, UseFileName = 0x00000002, Concatenate = 0x00000004, DisableCompression = 0x00000008, EmbedFonts = 0x00000010, BroadcastMessages = 0x00000020, PrintWatermark = 0x00000040}public void Sample(){ // Constants for Activation codes const string strLicenseTo = "Amyuni PDF Converter Evaluation"; const string strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"; const string AMYUNIPRINTERNAME = "Amyuni PDF Converter"; // Declare a new cdintfex object if it does not exist in the form. CDIntfEx.CDIntfEx PDF = new CDIntfEx.CDIntfEx(); // Get a reference to the installed printer. // This will fail if the printer name passed to the DriverInit method is // not found in the printer’s folder PDF.DriverInit(AMYUNIPRINTERNAME); // The SetDefaultPrinter function sets the system default printer to the one // initialized by the DriverInit functions. PDF.SetDefaultPrinter(); // The EnablePrinter() method needs to be called right before each print job. // and before the configuration // Calling the EnablePrinter() method
2025-04-14Before each print job.#and before the configuration#Calling the EnablePrinter() method will start a 20 second time-out value[System.__ComObject].InvokeMember('EnablePrinter', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF, @($strLicenseTo, $strActivationCode))#Resulting PDF document stored here[System.__ComObject].InvokeMember('DefaultDirectory', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"C:\Temp") #Set Printer options[System.__ComObject].InvokeMember('FileNameOptionsEx', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,$acFileNameOptions::NoPrompt)#Set Document Author[System.__ComObject].InvokeMember('DocumentAuthor', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Amyuni") #Set Document Creator[System.__ComObject].InvokeMember('DocumentCreator', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Amyuni Technologies")#Set DocumentSubject[System.__ComObject].InvokeMember('DocumentSubject', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Sample Code")#Set Document Keywords[System.__ComObject].InvokeMember('DocumentKeywords', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,"Amyuni, Sample, Code") #Set the Values[System.__ComObject].InvokeMember('SetDefaultConfig', [System.Reflection.BindingFlags]::SetProperty,$null,$PDF,$null) #The BatchConvert method converts a number of files to PDF.[System.__ComObject].InvokeMember('BatchConvert', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF, "C:\temp\*.docx")#The RestoreDefaultPrinter function resets the system default printer #to the printer that was the default before the call to SetDefaultPrinter.[System.__ComObject].InvokeMember('RestoreDefaultPrinter', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$null) #This function will simply detach from an existing printer because the handle was created using DriverInit [System.__ComObject].InvokeMember('DriverEnd', [System.Reflection.BindingFlags]::InvokeMethod,$null,$PDF,$null) #Destroy PDF object$PDF = $null' FileNameOptions constants' Please check FileNameOptions for the complete flags versionConst NoPrompt = &H1Const UseFileName = &H2Const Concatenate = &H4Const DisableCompression = &H8Const EmbedFonts = &H10Const BroadcastMessages = &H20Const PrintWatermark = &H40Const MultilingualSupport = &H80Const EncryptDocument = &H100Const FullEmbed = &H200' Constants for Activation codesConst strLicenseTo = "Amyuni PDF Converter Evaluation"Const strActivationCode = "07EFCDAB0100010025AFF1801CB9441306C5739F7D452154D8833B9CECBA2ADE79E3762A69FFC354528A5F4A5811BE3204A0A439F5BA"Const AMYUNIPRINTERNAME = "Amyuni PDF Converter"' Declare a new cdintfex objectDim PDFSet PDF = CreateObject("CDIntfEx.CDIntfEx.6.5")' Get a reference to the installed printer.' This will fail if the printer name passed to the DriverInit method is' not found in the printer’s folderPDF.DriverInit AMYUNIPRINTERNAME' The SetDefaultPrinter function sets the system default printer to the one' initialized by the DriverInit functions.PDF.SetDefaultPrinter' The EnablePrinter() method needs to be called right before each print job.' and before the configuration' Calling the EnablePrinter() method will start a 20 second time-out valuePDF.EnablePrinter strLicenseTo, strActivationCode' Resulting PDF document stored herePDF.DefaultDirectory = "C:\Temp"'
2025-04-15Phiếu bầuSử dụng: Miễn phí 1.311 Tải về FortiClien Endpoint Security Suite (32 bit ) FortiClient standard edition cung cấp một trong những gói an ninh hoàn chỉnh nhất cho máy tính - bao gồm hàng loạt các chức năng bảo vệ mối đe dọa Fortinet cho máy tính để bản và xách tay, ngay cả khi sử dụng ở các mạng công cộng không bảo mật. Xếp hạng: 5 2 Phiếu bầuSử dụng: Miễn phí 618 Tải về G Suite Bộ ứng dụng thông minh của Google G Suite là bộ ứng dụng doanh nghiệp toàn diện để bạn đăng nhập Gmail, Docs, Drive và Calendar trong cùng 1 vị trí, phục vụ tốt cho việc quản lý doanh nghiệp, chăm sóc khách hàng và phát triển kinh doanh hiệu quả. Xếp hạng: 5 1 Phiếu bầuSử dụng: Miễn phí 274 Truy cập Amyuni PDF Suite Desktop Edition Amyuni PDF Suite kết hợp giữa Amyuni PDF Converter và PDF Creator. Xếp hạng: 3 1 Phiếu bầuSử dụng: Dùng thử 437 Tải về Web Log Suite Enterprise Edition Web Log Suite Enterprise Edition 4.1 là một trình phân tích bản ghi server trang web mạnh mẽ. Chương trình này được chi tiết hóa cao và các báo cáo rất dễ để cấu hình được thực hiện bởi rất nhiều ngôn ngữ, FTP, sổ địa chỉ file hoặc email. Xếp hạng: 3 1 Phiếu bầuSử dụng: Dùng thử 308 Tải về Web Log Suite Standard Edition Web Log Suite Standard Edition 4.1 là một trình phân tích bản ghi server trang web mạnh mẽ. Chương trình này được chi tiết hóa cao và các báo cáo rất dễ để cấu hình được thực hiện bởi rất nhiều ngôn ngữ, FTP, sổ địa chỉ file hoặc email. Xếp hạng: 3 1 Phiếu
2025-04-23