Need help with search find option...

  • Thread starter rashar via AccessMonster.com
  • Start date
R

rashar via AccessMonster.com

Hello,

I have some code that opens up an adobe file, then looks for a customer
number in that pdf file. How can I write code that will check to see if the
number exists in the PDF?

Here is what I have so far...

SendKeys "^(f)", True
SendKeys "%{n}", True
'eg. SendKeys "{875858}", True
For plngTemp = 1 To Len(Cust_ID)
SendKeys "{" & Mid(Cust_ID, plngTemp, 1) & "}", True
Next plngTemp

Thanks in advance.
 
Top