search Application no in pdf file
I have to find Application no from pdf file and save this no in database....
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
kais ksouriPosted Oct 1, 2009, 11:43 AM
var serchedWord = /(^| )de([^a-z]|$)/i;
var numWords, i, j;
for (var i = 0; i < 1; i++ )
{
numWords = this.getPageNumWords(i);
for ( j = 0; j < numWords; j++)
{
if (serchedWord.test(this.getPageNthWord(0,j,false)))
{
annot = this.addAnnot
({
page: i,
type:"Underline",
quads: this.getPageNthWordQuads(i,j),
strokeColor: color.red,
});
annot1 = this.addAnnot
({
page: i,
type:"Highlight",
quads: this.getPageNthWordQuads(i,j),
strokeColor: color.yellow,
});
}
}
}
Plase i'm used this code to mark some words on my pdf file bat the problem that makes so much time pealse any help ?
Mittal JoshiPosted Sep 5, 2009, 2:26 AM
Retrieving the COM class factory for component with CLSID {FF76CB60-2E68-101B-B02E-04021C009402} failed due to the following error: 80040154.
Roei BarPosted Sep 4, 2009, 8:21 AM
in order to insert to db just execute an insert insted of the streamwriter