Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/20/2021 in all areas

  1. Have a look here
    1 point
  2. Sure, we can help you.
    1 point
  3. in my current dev version I had: ; #FUNCTION# ==================================================================================================================== ; Name ..........: _QPDF_CreateObjectFromFile ; Description ...: Create object by loading file into ; Syntax ........: _QPDF_CreateObjectFromFile($sPDF_FileFullPath[, $sPDF_Password = '']) ; Parameters ....: $sPDF_FileFullPath - A string value. PDF file full path. ; $sPDF_Password - [optional] A string value. Default is ''. ; Return values .: QPDF Object or $QPDF_RET_FAILURE ; Author ........: mLipok ; Modified ......: ; Remarks .......: If the function succeeds, the loaded document will be selected and its DocumentID can be retrieved using the SelectedDocument function. ; Password is needed only if PDF File is encrypted. ; Related .......: ; Link ..........: ; Example .......: No ; =============================================================================================================================== Func _QPDF_CreateObjectFromFile($sPDF_FileFullPath, $sPDF_Password = '') Local $oQP _QPDF_CreateObjectAndUnlock($oQP) If @error Then Return SetError(@error, @extended, $QPDF_RET_FAILURE) _QPDF_LoadFromFile($oQP, $sPDF_FileFullPath, $sPDF_Password) If @error Then Return SetError($QPDF_ERR_LOADFILE, @extended, $QPDF_RET_FAILURE) Return SetError($QPDF_ERR_SUCCESS, $QPDF_EXT_DEFAULT, $oQP) EndFunc ;==>_QPDF_CreateObjectFromFile hmm... maybe it is time to release new version....
    1 point
  4. Skeletor

    Aquarium

    @TheDcoder - back in 2000, I had a screensaver like this. It was from SereneScreen Marine Aquarium It's still been updated today. @Chimp - Great work on this. Lots of potential for future AutoIt projects, this can provide. PS: Did I just Yoda text right there????🤣
    1 point
  5. @maniootek Try to modify _QPDF_NewLibraryPath_Commercial() .... .... Case StringInStr($sDLL_FileFullPath, 'DebenuPDFLibraryAX1612.dll') __QPDF_NewLibraryPath_Commercial($sDLL_FileFullPath, 'DebenuPDFLibraryAX1612.PDFLibrary', '{4C108812-C084-418D-A7D5-0A2632C8406C}', '{88F2FB50-6844-432E-A3A6-840C1259568B}') Case StringInStr($sDLL_FileFullPath, 'DebenuPDFLibraryAX1613.dll') __QPDF_NewLibraryPath_Commercial($sDLL_FileFullPath, 'DebenuPDFLibraryAX1613.PDFLibrary', '{7DC849CE-EBD0-4B7C-8A46-A299E9540AF0}', '{99C7568E-DCE9-465C-AC47-35A7913D8725}') ; @TODO QUESTION / TEST : should here be DebenuPDFLibraryAX1613.PDFLibrary or DebenuPDFLibraryAX1612.PDFLibrary ?? Case StringInStr($sDLL_FileFullPath, 'DebenuPDFLibraryAX1711.dll') __QPDF_NewLibraryPath_Commercial($sDLL_FileFullPath, 'DebenuPDFLibraryAX1711.PDFLibrary', '{B4B2C260-6F9E-4C79-8010-8983CCF3A0A6}', '{68CE66E2-BBBE-4094-965D-7A42243468E8}') Case StringInStr($sDLL_FileFullPath, 'DebenuPDFLibraryAX1811.dll') __QPDF_NewLibraryPath_Commercial($sDLL_FileFullPath, 'DebenuPDFLibraryAX1811.PDFLibrary', '{6876E803-14CA-4ABF-9075-24F087AE8868}', '{12146AAC-0348-4A1A-A207-742FAAF8C80D}') Case Else SetError($QPDF_ERR_DLLINIT, $QPDF_EXT_PARAM1, $QPDF_RET_FAILURE) EndSelect EndFunc ;==>_QPDF_NewLibraryPath_Commercial Let me know if this modification works for you.
    1 point
  6. On my PC your code works fine without any visual problems.
    0 points
×
×
  • Create New...