예제 #1
0
파일: FORM_Main.cs 프로젝트: alexis20/TP2
        private void TSMI_LIST_CL_Factures_Click(object sender, EventArgs e)
        {
            FORM_Lister FL = new FORM_Lister();

            FL.Text      = "Toutes les factures d'un client";
            FL.codeListe = 2;
            FL.conn      = this.conn;
            FL.ShowDialog();
        }
예제 #2
0
파일: FORM_Main.cs 프로젝트: alexis20/TP2
        private void TSMI_LIST_Clients_Click(object sender, EventArgs e)
        {
            FORM_Lister FL = new FORM_Lister();

            FL.Text      = "Tous les clients";
            FL.codeListe = 0;
            FL.conn      = this.conn;
            FL.ShowDialog();
        }