I realize that is what it means, but it is not accurate. From the same button, this works:
thisform.wMessageBox('wFormCallBack','delete it',36)
and this produces the error:
thisform.wMessageBox('thisform.frame1.names.pgfNames.page3.cmdDeleteaddress.wFormCallBack','delete it',36)
I can produce the error on a one form, one button project.
it appears that the modal dialog your code is instantiating is already registered to send its result to another callback method
As of version 1.20, I cannot pass wmessagebox a full object name. I was doing this previously:
<code lang="VFP"
thisform.wMessageBox('thisform.frame1.names.pgfNames.page3.cmdDeleteaddress.wFormCallBack','delete it',36)
<>
Now I get an error in ajax.dialogadd line 7138 or around there that callback already exists, with some method listed that does not exist.
Anybody know what I am missing? Too long a param?