Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
i have problem with this property. i have simple Add-In which process CAD drawings in thread.
1) Add-In starts FORM where user choose operations, file and etc
2)My problem is.... that if i start form this property will get immediately to TRUE and it is only GET type.
Any advice?
(ShowDialog isn’t solution for me)
[CommandMethod("TEST")]
public static void ProcessData()
{
TestForm form = new TestForm();
form.Show();
//form.ShowDialog();
}
...
Solved! Go to Solution.