PDF-XChange Viewer SDK for Developer's
(ActiveX and Simple DLL Versions)
Moderators:PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange
Dim textForSearch as String
Dim vArr(2) As Variant
vArr(0) = 57636
vArr(1) = textForSearch
vDataIn = vArr
myPDF.DoVerb "", "ExecuteCommand", vDataIn, vDataOut, 0 'Find
myPDF.DoVerb "", "ExecuteCommand", 32987, 0, 0 'findsearch
with the result that the search pane is open and the text I look for is highlighted. How can I trigger the Search button so that all occurrences are listed below in the search pane?
var objArray = new ActiveXObject("PDFXCviewAx.CoPDFXCargs");
objArray.add(57636);
objArray.add("Text to find");
PDFView.DoVerb("", "ExecuteCommand", objArray.Data, 0, 0);
It works well. Thank you. I just want to know how can I dispaly serach pannel with links. Like "manual search" ?
Is it possible to send me more inforamtion about parameters to pass to objArray ? I look for parametre to display the pannel with search results (like when we click on "Search Now" button).