04-27-2011, 04:02 AM
Say I have a dialog like the one below...anyway to edit text in the pdf when it is visible?
Say my pdf has form fields, can qm fill them in?
http://www.re-pdf.com/tutorials/fields_en_1.php
Function pdf_in_dialog
Trigger F3
Say my pdf has form fields, can qm fill them in?
http://www.re-pdf.com/tutorials/fields_en_1.php
Function pdf_in_dialog
Trigger F3
;\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 492 334 "Dialog"
;3 ActiveX 0x54030000 0x0 0 0 492 334 "SHDocVw.WebBrowser"
;END DIALOG
;DIALOG EDITOR: "" 0x2030208 "" "" ""
str controls = "3"
str ax3SHD
ax3SHD = "$documents$\Sign_Files\PDF Only\Devo Racing Products Business Cards 2011.pdf"
if(!ShowDialog("pdf_in_dialog" &pdf_in_dialog &controls)) ret
ret
;messages
sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1