Exemple #1
0
 public static bool IsFormInvestmentOpen(String strSimID, out FormInvestment formTemp)
 {
     formTemp = listFormInvestment.Find(delegate(FormInvestment form) { return(form.Tag.ToString() == strSimID); });
     if (formTemp != null)
     {
         formTemp.Focus();
         return(true);
     }
     else
     {
         return(false);
     }
 }
Exemple #2
0
 public static void AddFormInvestment(FormInvestment form)
 {
     listFormInvestment.Add(form);
 }
Exemple #3
0
 public static void RemoveFormInvestment(FormInvestment form)
 {
     listFormInvestment.Remove(form);
 }