|
Hi,
I'm using Dolphin 3.0 (with latest updates) and I am having a problem with
the following;
searchDefinitions
| searchFor |
searchFor := Prompter prompt: 'Enter search criteria:'
caption: 'Search definitions'.
searchFor notNil ifTrue:[
self model searchValue: searchFor].
This works OK when called from WorkSpace but when deployed with ADK I get;
'invalid arg1: Cannot coerce a SmallInteger to lpstr'.
Using 'self halt'. immediately before and after, the offending line would
seem to be 'searchFor := Prompter prompt: 'Enter search criteria:'
I have tried the various options re stripping redundant methods etc, but so
far I haven't been able to overcome the problem.
Any help would be most appreciated.
|