Bruce Anderson schrieb:
> Some operations you might want to do using ActiveX will conflict with
> Alaska's reserved keywords. If the problem involves a "method" of the
> ActiveX object, the function CallMethod() steps past the conflict, but,
> if the conflict involves a "property" of the object, it is more involved.
>
> The code line to hide a row or column in an Excel spreadsheet will cause
> a compiler failure because the row or column property named "hidden"
> which you set to TRUE is also a reserved keyword. You can execute this
> command using a codeblock.
>
> hide row 1
> cBlock := '{|x| x:rows(1):hidden := "TRUE" }'
> bBlock := &(cBlock)
> eval( bBlock, oSheet )
>
Then you can try x:rows(1):SetProperty("hidden","TRUE")
Regards Wolfgang