Exemplo n.º 1
0
        private void butAdd_Click(object sender, EventArgs e)
        {
            FormServiceManage FormS = new FormServiceManage("OpenDent", false, true);

            FormS.ShowDialog();
            FillList();
        }
Exemplo n.º 2
0
Arquivo: FormMain.cs Projeto: mnisl/OD
		private void listMain_DoubleClick(object sender,EventArgs e) {
			if(listMain.SelectedIndex==-1) {
				return;
			}
			FormServiceManage FormS=new FormServiceManage(listMain.SelectedItem.ToString());
			FormS.ShowDialog();
			FillList();
		}
Exemplo n.º 3
0
        private void butAdd_Click(object sender, EventArgs e)
        {
            FormServiceManage FormS = new FormServiceManage();

            FormS.allOpenDentServices = serviceControllerList;
            FormS.ShowDialog();
            FillList();
        }
Exemplo n.º 4
0
		private void listMain_DoubleClick(object sender,EventArgs e) {
			if(listMain.SelectedIndex==-1) {
				return;
			}
			FormServiceManage FormS=new FormServiceManage();
			FormS.allOpenDentServices=serviceControllerList;
			FormS.ServControllerCur=serviceControllerList[listMain.SelectedIndex];
			FormS.ShowDialog();
			FillList();
		}
Exemplo n.º 5
0
        private void listMain_DoubleClick(object sender, EventArgs e)
        {
            if (listMain.SelectedIndex == -1)
            {
                return;
            }
            FormServiceManage FormS = new FormServiceManage(listMain.SelectedItem.ToString(), false, false);

            FormS.ShowDialog();
            FillList();
        }
Exemplo n.º 6
0
        private void listMain_DoubleClick(object sender, EventArgs e)
        {
            if (listMain.SelectedIndex == -1)
            {
                return;
            }
            FormServiceManage FormS = new FormServiceManage();

            FormS.allOpenDentServices = serviceControllerList;
            FormS.ServControllerCur   = serviceControllerList[listMain.SelectedIndex];
            FormS.ShowDialog();
            FillList();
        }
Exemplo n.º 7
0
Arquivo: FormMain.cs Projeto: mnisl/OD
		private void butAdd_Click(object sender,EventArgs e) {
			FormServiceManage FormS=new FormServiceManage("OpenDent");
			FormS.ShowDialog();
			FillList();
		}
Exemplo n.º 8
0
		private void butAdd_Click(object sender,EventArgs e) {
			FormServiceManage FormS=new FormServiceManage();
			FormS.allOpenDentServices=serviceControllerList;
			FormS.ShowDialog();
			FillList();
		}