Hi, all !
I override method HandleEvent of TDialog class, but I get error:
Variable not exist: SUPER
How I get SUPER ?
Hi, all !
I override method HandleEvent of TDialog class, but I get error:
Variable not exist: SUPER
How I get SUPER ?
Did you defined a new class from tdialog ?
Super refers to the upper class in your case should be tdialog.
Since its not defined it seems that you defined a new class and not innherit from tdialog.
Antonio
Thank ANF !
I not want write new class, I want use:
Override method <NameMethod> In class TDialog With <MyFunction>
Thanks. I resolved this problem