Adding Code to ScriptTask -
07-10-2006
, 04:38 PM
I'm doing something like this
Executable e = MydataFlow.Executables.Add("STOCK:ScriptTask");
TaskHost th = (TaskHost)e;
th.Properties["Name"].SetValue(th, "Test Task");
ScriptTask scriptTask = (ScriptTask)th.InnerObject;
Now I need to programatically add code to the task... how can I do that? |