Using DevExpress In FastScript

edited 2:18AM in FastScript
;)

Hi,
i did make this:

fsglobalunit.addclass(tcxtextedit,'tcxtexedit');


Editor:

var
t : tcxtextedit;

begin
t := tcxtextedit.create(form1);
t.setbounds(10,10,20,40);
t.parent := form1;



end;

But exist one error:
Stack overflow.

How can import devexpress and create objects????

thanks.

Marcelo

Comments

  • edited 2:18AM
    AddClass requires 2 params: 1) class, 2) name of ancestor of the class (not the class name!)

Leave a Comment