I'm trying to switch to the current X# version and work my way through the new bugs and
Hints. I was able to clarify most of it so far, but I don't have a solution for it
Code: Select all
Parameter 1 needs a(n) 'Ref' modifier. This modifier was automatically added.
Code: Select all
METHOD Save(cFile, nType)
Default(nType, adPersistADTG)
SELF:oRS:Save(cFile, nType)
SELF:Notify(NOTIFYFILECHANGE)
RETURN NIL
I change to:
Code: Select all
METHOD Save(cFile, nType)
Default(@nType, adPersistADTG)
SELF:oRS:Save(cFile, nType)
SELF:Notify(NOTIFYFILECHANGE)
RETURN NIL
Code: Select all
XS1503 Argument 1: cannot convert from 'usual*' to 'usual'
XS0208 Cannot take the address of, get the size of, or declare a pointer to a managed type ('usual')
What am I thinking wrong? Is there an XS2ADO for the current X#?
Greetings Frank