How to Use Third-Party Components in Fast-Script
Hi all
I'm using TMS-Pack From www.tmssoftware.com....i want to know how can i use other third-party components in Fast-Script..for example how can i create
TAdvGlowButton component in Fast-Script.
Kind Regards.
I'm using TMS-Pack From www.tmssoftware.com....i want to know how can i use other third-party components in Fast-Script..for example how can i create
TAdvGlowButton component in Fast-Script.
Kind Regards.
Comments
Try
fsScript1.AddClass(TAdvGlowButton, 'TAdvGlowButton');
fsScript1.AddObject('AdvGlowButton1', AdvGlowButton1);
Hope it works.
I used C++Builder and a TNxFolderEdit form Berg's NextGrid with the following code:
fsScript1->AddClass(__classid(TNxFolderEdit), "TNxFolderEdit") ;
fsScript1->AddObject("NxFolderEdit1", NxFolderEdit1);
Kind regards,
Rolf