S
Sonnich Jensen
Hi
How do I create a delegate like this, from component side?
bool AllowAction = true;
OnAskParentProgramme(this (sender), AllowAction);
if(AllowAction)
{
DoSomething();
}
in soft
OnAskParentProgramme(sender, AllowAction)
{
if this not ok....
AllowAction=false; // disallow
}
WBR
Sonnich
How do I create a delegate like this, from component side?
bool AllowAction = true;
OnAskParentProgramme(this (sender), AllowAction);
if(AllowAction)
{
DoSomething();
}
in soft
OnAskParentProgramme(sender, AllowAction)
{
if this not ok....
AllowAction=false; // disallow
}
WBR
Sonnich