Exemple #1
0
        public void SearchValue(PBCommandBarButton commandBarButton, ref bool b1)
        {
            SearchForm frm = new SearchForm(m_theApp);

            frm.ShowDialog();
        }
Exemple #2
0
        public void ShowScriptForm(PBCommandBarButton commandBarButton, ref bool b1)
        {
            ScriptForm frm = new ScriptForm(m_theApp);

            frm.ShowDialog();
        }
Exemple #3
0
        public void ReplaceInValue(PBCommandBarButton commandBarButton, ref bool b1)
        {
            ReplaceForm frm = new ReplaceForm(m_theApp);

            frm.ShowDialog();
        }
Exemple #4
0
        public void ChangeAlarm(PBCommandBarButton commandBarButton, ref bool b1)
        {
            AlarmManager frm = new AlarmManager(m_theApp, this);

            frm.ShowDialog();
        }
Exemple #5
0
 public void SetUOM(PBCommandBarButton commandBarButton, ref bool b1)
 {
     UOM.Execute(m_theApp);
 }
Exemple #6
0
        public void FillGood(PBCommandBarButton commandBarButton, ref bool b1)
        {
            MultiStateMinMax frm = new MultiStateMinMax(m_theApp);

            frm.ShowDialog();
        }
Exemple #7
0
        // Event Handler
        // Opens a Simple Form, Select cancel to close
        public void AddInClicked(PBCommandBarButton commandBarButton, ref bool b1)
        {
            frmAbout dlg = new frmAbout(m_theApp);

            dlg.ShowDialog();
        }