Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/19/2017 in all areas

  1. @nacerbaaziz dog ate your help file? The section on GUICtrlCreateEdit will show you the different styles you can apply, one of them being $ES_NUMBER
    1 point
  2. Jos

    WTF JOS???

    I am seriously wondering what you expected to achieve posting a post like this with that tone and wording? A smarter move would have been to send me a PM with coherent wording asking or explaining something. The standard response from me is in these cases is: You have a week to consider whether you want to change your tone and blend in or elect to stay away. Jos
    1 point
  3. Issue seems to be related to UNC paths. But I'm have no time to check deeply. Consider to do something like this.   ;~ #RequireAdmin ;My paths Local $sFileName="10page.pdf" Local $sTempDir=@TempDir & "\TempPDFTK\" Local $sPDFTKPath=@ScriptDir & "\pdftk.exe" Local $sDirBurst=@ScriptDir & "\Busrt\" ;just for delete all DirRemove($sDirBurst) ;delete the burst out files path DirRemove($sTempDir) ;delete the temp folder ;Create Directories If not FileExists($sTempDir) Then DirCreate($sTempDir) If not FileExists($sDirBurst) Then DirCreate($sDirBurst) ;build path and run PDFTk.exe Local $sFileFromPath=@ScriptDir & "\" & $sFileName Local $sFileToPath=$sTempDir & $sFileName FileCopy($sFileFromPath,$sFileToPath,1) Local $iExitCode=RunWait(_quotePath($sPDFTKPath) & " " & _quotePath($sFileToPath) & ' burst',$sTempDir,@SW_SHOW) FileMove($sTempDir & "*.*",$sDirBurst,1) ;move temp files to my burst directory DirRemove($sTempDir) ;delete temp folder Exit Saludos
    1 point
  4. I just played with it today and it suits me great. Its very, very helpful. Thank you for your work and your patience. I will keep following this thread.
    1 point
  5. Nice, please keep your good work!
    1 point
×
×
  • Create New...