Charlie,
Here's an example syntax that worked in the Group Bar eeps:
PROPERTY Node11 'CUSTOM_EEP->OnClickEEP' +
'PAU 2 USI ''Grp 1/ Q 1'' CAPTION ''Item 1'' ICON APP'
The main difference is "OnClickEEP" instead of your "OnClick"
Bill
On Thu, May 8, 2008 at 12:06 PM, Charles Parks <[EMAIL PROTECTED]> wrote:
> The Dynamic Treeview looks like it will be useful what is the correct
> syntax to assign an EEP to a TreeNode though?
>
> Using the example from WhatsNew I got the tree to be created and then tried
> modifying it to
>
> CREATEOBJECT TREENODE Node21 TreeView|Node2 0 0 0 0
> PROPERTY Node21 TEXT 'Node 2 - 1'
> PROPERTY Node21 INIT 'TRUE'
> set var fCommand = ('pause 2 using' & (char(39)) + 'test' + (char(39))
> &';RETURN' )
> property Node21 'Custom_EEP->OnClick' .fCommand
>
> ...as well as...
>
> set var fCommand = ('pause 2 using' & (char(39)) + 'test' + (char(39))
> &';RETURN' )
> property Node21 'Custom_EEP' .fCommand
>