Hello,
i'm using 13v+4 in the german version.
And isFound() doesn't work.
...
I use the following Source:
var orgDoc = UltraEdit.document[j];
orgDoc.columnModeOff;
orgDoc.top();
orgDoc.findReplace.regExp = false;
orgDoc.findReplace.matchWord = false;
orgDoc.findReplace.matchCase = false;
orgDoc.findReplace.searchDown = true;
orgDoc.findReplace.matchWord = false;
orgDoc.findReplace.find("<?xml");
if ( orgDoc.isFound() ) {
UltraEdit.getString("isFound",1);
}
else {
UltraEdit.getString("Not isFound",1);
}
var found = orgDoc.selection == "<?xml";
I got "Not isFound" but the variable found is true.
Is this an error or should i use isFound in a different way?
i'm using 13v+4 in the german version.
And isFound() doesn't work.
...
I use the following Source:
var orgDoc = UltraEdit.document[j];
orgDoc.columnModeOff;
orgDoc.top();
orgDoc.findReplace.regExp = false;
orgDoc.findReplace.matchWord = false;
orgDoc.findReplace.matchCase = false;
orgDoc.findReplace.searchDown = true;
orgDoc.findReplace.matchWord = false;
orgDoc.findReplace.find("<?xml");
if ( orgDoc.isFound() ) {
UltraEdit.getString("isFound",1);
}
else {
UltraEdit.getString("Not isFound",1);
}
var found = orgDoc.selection == "<?xml";
I got "Not isFound" but the variable found is true.
Is this an error or should i use isFound in a different way?