Article | 41023865 |
Type | HowTo |
Product | Engine |
Version | 5.0.1.1036 |
Date Added | 2/22/2005 |
Submitted by | Paul Bawin |
Keywords |
Closing Modal form when a Vdraw command is active.
Add this code to the second form.
protected override void WndProc(ref Message m)
{
if(m.Msg == 16)
{
this.vdraw.CommandAction.Cancel();
}
base.WndProc(ref m);
}