Message 1 of 8

Not applicable
11-10-2011
05:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone. I have the development guide (all 4 pages) and am struggling snapping a form into the window. I'm reasonably new to C# so I am working through the issues but I can't seem to find how to make my dialog appear. I have checked the SamplePlugin and that doesn't even work!
Code Sample:
public class WallCheck : IPluginCheck
{
public void Configure(System.Windows.Forms.IWin32Window window, ICheckData data)
{
frmWallCheck oWallCheckForm = new frmWallCheck();
oWallCheckForm.ShowDialog(window);
}
....}
I have a form frmWallCheck that I would like to "snap in" to the interface. Any guidance?
Chris
Solved! Go to Solution.