Example #1
0
 public Form3(SsbEnum sType, object _ssbObj)
 {
     ssbTypeF3 = sType;
     InitializeComponent();
     SetupMenus();
     SetUpEventHooks();
     TVSetUp.SetUpTreeView(tv1);
     this.Text        = string.Format("Deploy {0}", ssbTypeF3.ToString());
     ssbObj           = _ssbObj;
     isDirty          = true;
     btnPaste.Enabled = false;
     browse           = false;
     btnPaste.Text    = "Paste/Deploy";
 }
Example #2
0
 public Form3(SsbEnum sType, bool _browse, Control ctrlToUpdate)
 {
     objName   = "";
     ctrl      = ctrlToUpdate;
     ssbTypeF3 = sType;
     InitializeComponent();
     SetupMenus();
     SetUpEventHooks();
     TVSetUp.SetUpTreeView(tv1);
     this.Text        = string.Format("Find {0}", ssbTypeF3.ToString());
     ssbObj           = null;
     isDirty          = true;
     btnPaste.Enabled = false;
     browse           = _browse;
     btnPaste.Text    = "OK";
 }