Exemplo n.º 1
0
 public FrmTextShow(ExFormBasic parent, string title, string content)
 {
     SuperiorForm = parent;
     InitializeComponent();
     Text            = title;
     txtContent.Text = content;
 }
Exemplo n.º 2
0
 public FrmDBConnectionEx(Form Parent, DBConnection Connection)
 {
     parent          = Parent as ExFormBasic;
     SuperiorForm    = parent;
     show_db_type    = false;
     connection      = Connection;
     default_db_type = DBType.SqlServer;
     InitializeComponent();
 }
Exemplo n.º 3
0
 public FrmDBConnectionEx(Form Parent, bool ShowDBType, DBConnection Connection, DBType DefaultDBType)
 {
     parent          = Parent as ExFormBasic;
     SuperiorForm    = parent;
     show_db_type    = ShowDBType;
     connection      = Connection;
     default_db_type = DefaultDBType;
     InitializeComponent();
 }