Example #1
0
 public WorkFilterForm(OracleConnection connection,
                       RewDataSet.BarcodeDataTable table, decimal plantId,
                       DialogMode mode)
 {
     InitializeComponent();
     this.plantId = plantId;
     if (table != null)
     {
         foreach (RewDataSet.BarcodeRow row in table)
         {
             rewDataSet.Barcode.AddBarcodeRow(row.Id,
                                              row.Name, row.NameEng, row.Code);
         }
     }
     workerTableAdapter.Connection = connection;
     if (mode == DialogMode.Master)
     {
         btnBack.Visible = true;
         if (Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName == "ru")
         {
             btnOk.Text = "Далее";
         }
         else
         {
             btnOk.Text = "Next";
         }
     }
 }
Example #2
0
 public BcProject(BcSource source, decimal plantId,
                  RewDataSet.BarcodeDataTable table,
                  BarcodeData data, BarcodeState state, BcLayout layout,
                  PageSettings pageSettings)
 {
     this.source       = source;
     this.plantId      = plantId;
     this.table        = table;
     this.data         = data;
     this.state        = state;
     this.layout       = layout;
     this.pageSettings = pageSettings;
 }
Example #3
0
        public BcPrintDocument(AxBarCodeWiz bc, BcProject project)
        {
            this.bc             = bc;
            DefaultPageSettings = project.pageSettings;
            table = project.table;
            data  = project.data;
            project.state.ApplyState(bc);
            xDist          = project.layout.xDist;
            yDist          = project.layout.yDist;
            title          = project.layout.title;
            titleFont      = project.layout.titleFont;
            printTitleOnce = project.layout.printTitleOnce;
            bs             = new BindingSource();
            bs.DataSource  = table;
            bs.Sort        = data.sort;
            MarginsConverter mc = new MarginsConverter();

            xDist = (float)PrinterUnitConvert.Convert(xDist * 10,
                                                      PrinterUnit.TenthsOfAMillimeter,
                                                      PrinterUnit.Display);
            yDist = (float)PrinterUnitConvert.Convert(yDist * 10,
                                                      PrinterUnit.TenthsOfAMillimeter,
                                                      PrinterUnit.Display);
        }
Example #4
0
        private void newToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string   filename = "Project.bcp";
            BcSource source   = BcSource.Workers;
            decimal  plantId  = -1;

            RewDataSet.BarcodeDataTable table = null;
            BarcodeData  data   = null;
            BarcodeState state  = null;
            BcLayout     layout = null;

            int i = 0;

            do
            {
                DialogResult res = DialogResult.None;
                switch (i)
                {
                case 0:
                    saveFileDialog1.FileName = filename;
                    res      = saveFileDialog1.ShowDialog();
                    filename = saveFileDialog1.FileName;
                    break;

                case 1:
                    DataSourceForm dForm = new DataSourceForm(source, plantId,
                                                              connection, DialogMode.Master);
                    res    = dForm.ShowDialog();
                    source = dForm.GetSource(out plantId);
                    break;

                case 2:
                    switch (source)
                    {
                    case BcSource.Workers:
                        WorkFilterForm fWork = new WorkFilterForm(connection,
                                                                  table, plantId, DialogMode.Master);
                        res   = fWork.ShowDialog();
                        table = fWork.GetTable();
                        break;

                    case BcSource.Defects:
                        DefFilterForm fDef = new DefFilterForm(connection,
                                                               table, plantId, DialogMode.Master);
                        res   = fDef.ShowDialog();
                        table = fDef.GetTable();
                        break;

                    case BcSource.Repairs:
                        RepFilterForm fRep = new RepFilterForm(connection,
                                                               table, plantId, DialogMode.Master);
                        res   = fRep.ShowDialog();
                        table = fRep.GetTable();
                        break;
                    }
                    break;

                case 3:
                    BarcodeDataForm fData = new BarcodeDataForm(data,
                                                                DialogMode.Master);
                    res  = fData.ShowDialog();
                    data = fData.GetData();
                    break;

                case 4:
                    BarcodeStateForm fState = new BarcodeStateForm(state,
                                                                   DialogMode.Master);
                    res   = fState.ShowDialog();
                    state = fState.GetState();
                    break;

                case 5:
                    LayoutForm fLayout = new LayoutForm(layout, DialogMode.Master);
                    res    = fLayout.ShowDialog();
                    layout = fLayout.GetLayout();
                    break;
                }
                switch (res)
                {
                case DialogResult.Cancel:
                    return;

                case DialogResult.OK:
                    i++;
                    break;

                case DialogResult.Retry:
                    i--;
                    break;
                }
            }while (i < 6);
            BcProject project = new BcProject(source, plantId, table,
                                              data, state, layout, new PageSettings());

            try
            {
                project.Save(filename);
            }
            catch
            {
                MessageBox.Show("Cannot write file", "Save error",
                                MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            hasChanges = false;
            AddToProjectList(filename);
        }