Exemplo n.º 1
0
 public CodePage(CodeMass parent, string ID, string Code, string Name, string Comment, string language)
 {
     InitializeComponent();
     id      = ID;
     code    = Code;
     name    = Name;
     comment = Comment;
     lang    = language;
     cm      = parent;
     initText();
     EditSwitch(false);
 }
Exemplo n.º 2
0
 public CodePage(CodeMass parent,string ID,string Code,string Name,string Comment,string language)
 {
     InitializeComponent();
     id = ID;
     code = Code;
     name = Name;
     comment = Comment;
     lang = language;
     cm = parent;
     initText();
     EditSwitch(false);
 }
Exemplo n.º 3
0
 private void button2_Click(object sender, EventArgs e)
 {
     CM = new CodeMass(this);
     this.Hide();
     CM.Show();
 }
Exemplo n.º 4
0
 private void button2_Click(object sender, EventArgs e)
 {
     CM = new CodeMass(this);
     this.Hide();
     CM.Show();
 }