示例#1
0
        static void Main(string[] args)
        {
#if true
            parentForm pf = new parentForm();
            pf.ShowDialog();
#else
            NotesManager.doit nm = new NotesManager.doit();
            nm.show(conn, "npc,1");
#endif
        }
示例#2
0
文件: Program.cs 项目: viticm/pap2
        static void Main(string[] args)
        {
#if true
            parentForm pf = new parentForm();
            pf.ShowDialog(); 

#else

            NotesManager.doit nm = new NotesManager.doit();
            nm.show(conn,"npc,1");
#endif

        }
示例#3
0
文件: parentForm.cs 项目: viticm/pap2
 private void button1_Click(object sender, EventArgs e)
 {
     nm = new NotesManager.doit();
     panel1.Controls.Clear();
     panel1.Controls.Add(nm.Init(conn));
 }
示例#4
0
 private void button1_Click(object sender, EventArgs e)
 {
     nm = new NotesManager.doit();
     panel1.Controls.Clear();
     panel1.Controls.Add(nm.Init(conn));
 }