public SmartQueryResultForm()
 {
     InitializeComponent();
     this.Size        = new Size(600, 400);
     this.Text        = "";
     or               = new SmartQueryResult();
     this.TitleHeight = 0;
     or.DbClickEvent += new SmartQueryResult.DbClickHandle(or_DbClickEvent);
 }
 public SmartQueryResultForm(object list)
     : this()
 {
     or = new SmartQueryResult(list);
     or.DbClickEvent += new SmartQueryResult.DbClickHandle(or_DbClickEvent);
 }