FormRun Object Doesnot have method 'filePathLookUpTitle'.

Hi again,

I have a stringEdit control on my form. I have already set some property for this control as below:

DataSource :

DataMethod : → Please have a quick look on the below method decl.

//BP Deviation Documented
edit FilePath WMDataFolderPath(boolean set,FilePath value)
{
WM_AXPref axpref;
FilePath fp;
;

if (set)
{
axpref.selectForUpdate(true);
select firstonly axpref
index key
where axpref.FieldName == “WMDataFolderPath”;

ttsbegin;
axpref.FieldValue = value;
axpref.update();
ttscommit;
}
else
{
select firstonly axpref
index key
where axpref.FieldName == “WMDataFolderPath”;

return axpref.FieldValue;
}
return fp;
}

Please NOTE i have already declared the method “filePathLookupTitle” on my Form’s Method section.

Now while i am clicking on the FileLookup button (Folder button displayed immediate to my StringEdit control on the form) it prompts me with the error message.

“FormRun Object Doesnot have method ‘filePathLookUpTitle’.”

Please give some suggestions.

Thanks & Regards,

/Ashlesh

Hi,

I have resolved the issue by my self. There is a spell mistake.

Thanks,

/Ashlesh