Monday, April 4, 2011

How to add new feature at run time

Use following code to add feature at run time.

   if !OS.IsFeature( this, 'fdata' )     //to check if feature is already there
         OS.AddFeature( this, 'fdata' )   //to add feature at run time
   end

This will not add the feature for permanently, it will add just for this instance.

No comments:

Post a Comment