<<
STDCALL will run in a forms EEP.
>>
I finally had a chance to look at this. There is a problem, although it's not
the one the error message indicates.
STDCALL works fine from inside an EEP. However, it does not work under the
following circumstance:
1. The STDCALL call is placed inside a Stored Procedure.
2. The stored procedure is called without an assignment, like this:
CALL SetDropdownList('cbTest', 500)
If both those things are true, the STDCALL function fails with the message
"Illegal command in Entry/Exit Procedure." even though no EEP is involved.
The easy workaround is to do a meaningless assignment:
SET VAR vJunk = (CALL SetDropdownList('cbTest', 500))
which works.
--
Larry