Esempio n. 1
0
        private void SetupCollarItemDataEntryClick(object sender, RoutedEventArgs e)
        {
            IDDCollarData f = new IDDCollarData();

            f.ShowDialog();
            if (f.DialogResult == System.Windows.Forms.DialogResult.OK && f.EditItem)
            {
                MessageBox.Show("The Item Id Entry dialogbox will now be displayed for you to enter\r\n" +
                                "the item data needed for the collar data you just entered", Integ.GetAppTitle());
                IDDItemDataEntry g = new IDDItemDataEntry();
                g.ShowDialog();
            }
        }
Esempio n. 2
0
        private void SetupItemDataEntryClick(object sender, RoutedEventArgs e)
        {
            IDDItemDataEntry f = new IDDItemDataEntry();

            f.ShowDialog();
        }
Esempio n. 3
0
 private void SetupItemDataEntryClick(object sender, RoutedEventArgs e)
 {
     IDDItemDataEntry f = new IDDItemDataEntry();
     f.ShowDialog();
 }
Esempio n. 4
0
 private void SetupCollarItemDataEntryClick(object sender, RoutedEventArgs e)
 {
     IDDCollarData f = new IDDCollarData();
     f.ShowDialog();
     if (f.DialogResult == System.Windows.Forms.DialogResult.OK && f.EditItem)
     {
         MessageBox.Show("The Item Id Entry dialogbox will now be displayed for you to enter\r\n" +
                         "the item data needed for the collar data you just entered", Integ.GetAppTitle());
         IDDItemDataEntry g = new IDDItemDataEntry();
         g.ShowDialog();
     }
 }