|
Previous Top Next |
This template allows you to very quickly BIND local variables where you need to, for example if you need to use them in PROP:Filter or with EVALUATE. It simply gives you a list of all local variables and you select which ones you want to BIND.
To select, you just need to click on the entries. You can also use the "Select All" and "DeSelect All" buttons at the bottom to quickly select or deselect all the variables in the list. Here is an example of how it looks like with two variables selected.
This selection will result in this code being generated into the ThisWindow.Init method code section at priority 5501:
BIND('Loc:FName',Loc:FName) ! Icetips Bind/Unbind local variables
BIND('Loc:LName',Loc:LName) ! Icetips Bind/Unbind local variables
And the corresponding UNBIND code generated into the ThisWindow.Kill method code section at priority 4501:
UNBIND('Loc:FName') ! Icetips Bind/Unbind local variables
UNBIND('Loc:LName') ! Icetips Bind/Unbind local variables