private void initCompoment()
        {
            int  gapLine = 20, gapX = 20, gapY = 20;
            Size size = new Size();
            int  scrW = Screen.PrimaryScreen.Bounds.Width;

            pnTop      = new Panel();
            pnTop.Dock = DockStyle.Fill;

            lbTxtFilename = new Label();
            bc.setControlLabel(ref lbTxtFilename, fEdit, "File Name", "lbTxtFilename", gapX, gapY);

            txtFilename = new C1TextBox();
            bc.setControlC1TextBox(ref txtFilename, fEdit, "txtFilename", 250, lbTxtFilename.Location.X + lbTxtFilename.Width, gapY);

            gapLine       += 40;
            btnGenPdf      = new C1Button();
            btnGenPdf.Name = "btnGenPdf";
            btnGenPdf.Text = "Save";
            btnGenPdf.Font = fEdit;
            //size = bc.MeasureString(btnHnSearch);
            btnGenPdf.Location   = new System.Drawing.Point(gapX, gapLine);
            btnGenPdf.Size       = new Size(200, 140);
            btnGenPdf.Font       = fEdit;
            btnGenPdf.Image      = Resources.Save_small;
            btnGenPdf.TextAlign  = ContentAlignment.MiddleRight;
            btnGenPdf.ImageAlign = ContentAlignment.MiddleLeft;
            btnGenPdf.Click     += BtnGenPdf_Click;

            pnTop.Controls.Add(lbTxtFilename);
            pnTop.Controls.Add(txtFilename);
            this.Controls.Add(pnTop);
        }
Esempio n. 2
0
        private void initComponentRptDrugDaily()
        {
            int  gapLine = 25, gapX = 20, gapY = 20, xCol2 = 130, xCol1 = 80, xCol3 = 330, xCol4 = 640, xCol5 = 950;
            Size size = new Size();

            //gapY += gapLine;
            scRptReportCriteria.Controls.Clear();
            lbtxtRptDateStart = new Label();
            txtRptDateStart   = new C1DateEdit();
            lbtxtRptDateEnd   = new Label();
            txtRptDateEnd     = new C1DateEdit();
            btnOk             = new C1Button();
            ic.setControlLabel(ref lbtxtRptDateStart, fEdit, "วันที่เริ่มต้น :", "lbtxtRptDateStart", gapX, gapY);
            size = ic.MeasureString(lbtxtRptDateStart);
            ic.setControlC1DateTimeEdit(ref txtRptDateStart, "txtRptDateStart", xCol2, gapY);
            txtRptDateStart.Value = DateTime.Now;
            gapY += gapLine;
            ic.setControlLabel(ref lbtxtRptDateEnd, fEdit, "วันที่สิ้นสุด :", "lbtxtRptDateEnd", gapX, gapY);
            size = ic.MeasureString(lbtxtRptDateEnd);
            ic.setControlC1DateTimeEdit(ref txtRptDateEnd, "txtRptDateEnd", xCol2, gapY);
            txtRptDateEnd.Value = DateTime.Now;
            gapY += gapLine;
            ic.setControlC1Button(ref btnOk, fEdit, "OK", "btnOk", xCol1 - 40, gapY);
            ic.setControlC1Button(ref btnExcel, fEdit, "Excel", "btnExcel", xCol2, gapY);

            btnOk.Click    += BtnOk_Click;
            btnExcel.Click += BtnExcel_Click;

            scRptReportCriteria.Controls.Add(lbtxtRptDateStart);
            scRptReportCriteria.Controls.Add(txtRptDateStart);
            scRptReportCriteria.Controls.Add(lbtxtRptDateEnd);
            scRptReportCriteria.Controls.Add(txtRptDateEnd);
            scRptReportCriteria.Controls.Add(btnOk);
            scRptReportCriteria.Controls.Add(btnExcel);
        }
 public void setControlC1Button(ref C1Button btn, Font fEdit, String text, String name, int x, int y)
 {
     btn            = new C1Button();
     btn.Name       = name;
     btn.Text       = text;
     btn.Font       = fEdit;
     btn.Location   = new System.Drawing.Point(x, y);
     btn.Size       = new Size(MeasureString(btn).Width + 50, fEdit.Height + 5);
     btn.ImageAlign = ContentAlignment.MiddleLeft;
     btn.TextAlign  = ContentAlignment.MiddleRight;
     btn.Font       = fEdit;
 }
Esempio n. 4
0
        private void setControlComponent()
        {
            int  gapLine = 10, gapX = 20;
            Size size = new Size();
            int  scrW = Screen.PrimaryScreen.Bounds.Width;

            btnCap1      = new C1Button();
            btnCap1.Name = "btnCap1";
            btnCap1.Text = "Capture 1";
            btnCap1.Font = fEdit;
            //size = bc.MeasureString(btnHnSearch);
            btnCap1.Location = new System.Drawing.Point(gapX, 10);
            size             = bc.MeasureString(btnCap1);
            btnCap1.Size     = new Size(size.Width + 10, 30);
            btnCap1.Font     = fEdit;
        }
Esempio n. 5
0
        private void setImages(String id)
        {
            Images img = new Images();

            dtImg = xC.xtDB.imgDB.selectByTableId(id);
            int   i = 0, gapX = 0, gapY = 0, x = 3, y = 3;
            Point btnsize = new Point(42, 45);

            gapX = 48;
            gapY = 51;
            x    = 3;
            y    = 3;
            foreach (DataRow row in dtImg.Rows)
            {
                C1Button btnImg = new C1Button();
                btnImg.Image     = global::Xtrim_ERP.Properties.Resources.PrintPreview_large;
                btnImg.Location  = new System.Drawing.Point(x, y);
                btnImg.Name      = "btnImg" + i;
                btnImg.Size      = new System.Drawing.Size(btnsize);
                btnImg.TabIndex  = 500;
                btnImg.Text      = "";
                btnImg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
                theme1.SetTheme(btnImg, "VS2013Light");
                btnImg.UseVisualStyleBackColor = true;
                btnImg.VisualStyleBaseStyle    = C1.Win.C1Input.VisualStyle.Office2010Blue;
                btnImg.Click += BtnImg_Click;
                if (i < 5)
                {
                    x += gapX;
                    //y += gapY;
                }
                else if (i == 5)
                {
                    x = 3;
                    y = 54;
                }
                else
                {
                    x += gapX;
                    //y += gapY;
                }

                panel2.Controls.Add(btnImg);
                i++;
            }
        }
Esempio n. 6
0
        private void showFrmNewDay()
        {
            frmQueNew                 = new Form();
            frmQueNew.Size            = new System.Drawing.Size(800, 600);
            frmQueNew.WindowState     = FormWindowState.Normal;
            frmQueNew.FormBorderStyle = FormBorderStyle.FixedDialog;
            frmQueNew.StartPosition   = FormStartPosition.CenterScreen;
            pnQueNewBotton            = new Panel();
            pnQuenewTop               = new Panel();
            pnQueNewBotton.Dock       = DockStyle.Bottom;
            pnQuenewTop.Dock          = DockStyle.Fill;

            btnQueNewOK = new C1Button();
            bqc.setControlC1Button(ref btnQueNewOK, fEdit, "SAVE", "btnQueNewOK", pnQueNewBotton.Width - btnQueNewOK.Width - 20, 20);
            //btnQueNewOK.Width =
            btnQueNewOK.Click += BtnQueNewOK_Click;
            initGrfQueNew();
            frmQueNew.Controls.Add(pnQuenewTop);
            frmQueNew.Controls.Add(pnQueNewBotton);
            pnQueNewBotton.Controls.Add(btnQueNewOK);

            String date = "";

            date = DateTime.Now.Year + DateTime.Now.ToString("-MM-dd");
            DataTable dt = new DataTable();

            dt = bqc.bquDB.queDB.selectAllStatusEveryDay();
            foreach (DataRow drow in dt.Rows)
            {
                BQueueDate quetoday = new BQueueDate();
                quetoday.b_queue_date_id = "";
                quetoday.queue_id        = drow["queue_id"].ToString();
                quetoday.queue_current   = "0";
                quetoday.queue_date      = date;
                quetoday.queue           = "0";
                String re  = bqc.bquDB.queDateDB.insertBQueue(quetoday, "");
                int    chk = 0;
                if (int.TryParse(re, out chk))
                {
                    //setGrfQueue();
                    lbStatus.Text = "Save success ";
                }
            }
            setGrfQueueToday();
            frmQueNew.ShowDialog(this);
        }
        private void InitComponent()
        {
            int  gapLine = 30, gapX = 20, gapY = 20;
            Size size = new Size();
            int  scrW = Screen.PrimaryScreen.Bounds.Width;

            fEdit    = new Font(ic.iniC.grdViewFontName, ic.grdViewFontSize, FontStyle.Regular);
            fEditB   = new Font(ic.iniC.grdViewFontName, ic.grdViewFontSize, FontStyle.Bold);
            imgStart = Resources.accept_database24;

            theme1       = new C1ThemeController();
            theme1.Theme = ic.theme;
            panel1       = new Panel();

            panel1.SuspendLayout();

            panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            panel1.Name = "panel1";

            txtID      = new C1TextBox();
            txtID.Font = fEdit;
            //txtID.Location = new System.Drawing.Point(cboPkg.Location.X, lbName.Location.Y);
            txtID.Size = new Size(120, 20);
            txtID.Name = "txtID";
            txtID.Hide();

            lbDate                                = new Label();
            lbDate.Text                           = "Date : ";
            lbDate.Font                           = fEdit;
            lbDate.Location                       = new System.Drawing.Point(gapX, gapY);
            lbDate.AutoSize                       = true;
            lbDate.Name                           = "lbDate";
            txtDate                               = new C1.Win.C1Input.C1DateEdit();
            txtDate.Font                          = fEdit;
            txtDate.AllowSpinLoop                 = false;
            txtDate.BorderStyle                   = System.Windows.Forms.BorderStyle.FixedSingle;
            txtDate.Calendar.ArrowColor           = System.Drawing.Color.Black;
            txtDate.Calendar.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
            txtDate.Calendar.DayNamesFont         = new System.Drawing.Font("Tahoma", 8F);
            txtDate.Calendar.Font                 = new System.Drawing.Font("Tahoma", 8F);
            txtDate.Calendar.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            txtDate.Calendar.SelectionBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(71)))), ((int)(((byte)(47)))));
            txtDate.Calendar.SelectionForeColor   = System.Drawing.Color.White;
            txtDate.Calendar.TitleBackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
            txtDate.Calendar.TitleFont            = new System.Drawing.Font("Tahoma", 8F);
            txtDate.Calendar.TitleForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            txtDate.Calendar.TodayBorderColor     = System.Drawing.Color.White;
            txtDate.Calendar.TrailingForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(152)))), ((int)(((byte)(152)))));
            txtDate.Calendar.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            txtDate.Culture                       = 1054;
            txtDate.CurrentTimeZone               = false;
            txtDate.DisabledForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(152)))), ((int)(((byte)(152)))));
            txtDate.DisplayFormat.CalendarType    = C1.Win.C1Input.CalendarType.GregorianCalendar;
            txtDate.DisplayFormat.FormatType      = C1.Win.C1Input.FormatTypeEnum.ShortDate;
            txtDate.DisplayFormat.Inherit         = ((C1.Win.C1Input.FormatInfoInheritFlags)(((((C1.Win.C1Input.FormatInfoInheritFlags.CustomFormat | C1.Win.C1Input.FormatInfoInheritFlags.NullText)
                                                                                                | C1.Win.C1Input.FormatInfoInheritFlags.EmptyAsNull)
                                                                                               | C1.Win.C1Input.FormatInfoInheritFlags.TrimStart)
                                                                                              | C1.Win.C1Input.FormatInfoInheritFlags.TrimEnd)));
            txtDate.EditFormat.CalendarType = C1.Win.C1Input.CalendarType.GregorianCalendar;
            txtDate.EditFormat.FormatType   = C1.Win.C1Input.FormatTypeEnum.ShortDate;
            txtDate.EditFormat.Inherit      = ((C1.Win.C1Input.FormatInfoInheritFlags)(((((C1.Win.C1Input.FormatInfoInheritFlags.CustomFormat | C1.Win.C1Input.FormatInfoInheritFlags.NullText)
                                                                                          | C1.Win.C1Input.FormatInfoInheritFlags.EmptyAsNull)
                                                                                         | C1.Win.C1Input.FormatInfoInheritFlags.TrimStart)
                                                                                        | C1.Win.C1Input.FormatInfoInheritFlags.TrimEnd)));
            txtDate.EmptyAsNull  = true;
            txtDate.GMTOffset    = System.TimeSpan.Parse("00:00:00");
            txtDate.ImagePadding = new System.Windows.Forms.Padding(0);
            size             = ic.MeasureString(lbDate);
            txtDate.Location = new System.Drawing.Point(lbDate.Location.X + size.Width + 10, lbDate.Location.Y);
            txtDate.Name     = "txtDate";
            txtDate.Size     = new System.Drawing.Size(133, 18);
            txtDate.TabIndex = 510;
            txtDate.Tag      = null;
            theme1.SetTheme(this.txtDate, "(default)");
            txtDate.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            gapY                     += gapLine;
            lbPkg                     = new Label();
            lbPkg.Font                = fEdit;
            lbPkg.Name                = "lbPkg";
            lbPkg.Text                = "Package : ";
            lbPkg.Font                = fEdit;
            lbPkg.Location            = new System.Drawing.Point(gapX, gapY);
            lbPkg.AutoSize            = true;
            cboPkg                    = new C1ComboBox();
            cboPkg.Font               = fEdit;
            cboPkg.Name               = "cboPkg";
            size                      = ic.MeasureString(lbPkg);
            cboPkg.Location           = new System.Drawing.Point(lbPkg.Location.X + lbPkg.Width + 20, lbPkg.Location.Y);
            cboPkg.AllowSpinLoop      = false;
            cboPkg.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
            cboPkg.DisabledForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(152)))), ((int)(((byte)(152)))));
            cboPkg.Font               = fEdit;
            cboPkg.GapHeight          = 0;
            cboPkg.ImagePadding       = new System.Windows.Forms.Padding(0);
            cboPkg.ItemsDisplayMember = "";
            cboPkg.ItemsValueMember   = "";
            //cboPkg.Location = new System.Drawing.Point(106, 12);
            cboPkg.Size = new System.Drawing.Size(480, 20);
            cboPkg.Style.DropDownBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
            cboPkg.Style.DropDownBorderColor = System.Drawing.Color.Gainsboro;
            cboPkg.Style.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            cboPkg.TabIndex   = 538;
            cboPkg.Tag        = null;
            theme1.SetTheme(cboPkg, "(default)");
            cboPkg.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            gapY            += gapLine;
            lbName           = new Label();
            lbName.Font      = fEdit;
            lbName.Text      = "Name : ";
            lbName.Location  = new System.Drawing.Point(gapX, gapY);
            lbName.AutoSize  = true;
            lbName.Name      = "lbName";
            txtName          = new C1TextBox();
            txtName.Font     = fEdit;
            txtName.Name     = "txtName";
            size             = ic.MeasureString(lbName);
            txtName.Location = new System.Drawing.Point(cboPkg.Location.X, lbName.Location.Y);
            txtName.Size     = new Size(120, 20);

            gapY += gapLine;
            chkEmbryoFreezing             = new C1.Win.C1Input.C1CheckBox();
            chkEmbryoFreezing.Font        = fEdit;
            chkEmbryoFreezing.Text        = "Embryo freezing ";
            chkEmbryoFreezing.Name        = "chkEmbryoFreezing";
            chkEmbryoFreezing.BackColor   = System.Drawing.Color.Transparent;
            chkEmbryoFreezing.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkEmbryoFreezing.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkEmbryoFreezing.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkEmbryoFreezing.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkEmbryoFreezing.Location    = new System.Drawing.Point(gapX, gapY);
            chkEmbryoFreezing.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkEmbryoFreezing.Size        = new System.Drawing.Size(180, 24);
            chkEmbryoFreezing.TabIndex    = 553;
            theme1.SetTheme(this.chkEmbryoFreezing, "(default)");
            chkEmbryoFreezing.UseVisualStyleBackColor = true;
            chkEmbryoFreezing.Value = null;
            chkEmbryoFreezing.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkEmbryoFreezing.AutoSize             = true;
            txtEmbryoFreezing      = new C1TextBox();
            txtEmbryoFreezing.Font = fEdit;
            size = ic.MeasureString(chkEmbryoFreezing);
            txtEmbryoFreezing.Location = new System.Drawing.Point(chkEmbryoFreezing.Location.X + size.Width + 25, chkEmbryoFreezing.Location.Y);
            txtEmbryoFreezing.Size     = new Size(40, 20);
            txtEmbryoFreezing.Name     = "txtEmbryoFreezing";
            lbEmbryoFreezing           = new Label();
            lbEmbryoFreezing.Font      = fEdit;
            lbEmbryoFreezing.Text      = "embryos ";
            lbEmbryoFreezing.Name      = "lbEmbryoFreezing";
            lbEmbryoFreezing.Location  = new System.Drawing.Point(txtEmbryoFreezing.Location.X + txtEmbryoFreezing.Width + 5, chkEmbryoFreezing.Location.Y);
            lbEmbryoFreezing.AutoSize  = true;
            txtEmbryoStraws            = new C1TextBox();
            txtEmbryoStraws.Font       = fEdit;
            size = ic.MeasureString(lbEmbryoFreezing);
            txtEmbryoStraws.Location  = new System.Drawing.Point(lbEmbryoFreezing.Location.X + size.Width + 15, chkEmbryoFreezing.Location.Y);
            txtEmbryoStraws.Size      = new Size(40, 20);
            txtEmbryoStraws.Name      = "txtEmbryoStraws";
            lbEmbryoStraws            = new Label();
            lbEmbryoStraws.Font       = fEdit;
            lbEmbryoStraws.Text       = "straws (Extra ";
            lbEmbryoStraws.Name       = "lbEmbryoStraws";
            lbEmbryoStraws.Location   = new System.Drawing.Point(txtEmbryoStraws.Location.X + txtEmbryoStraws.Width + 5, chkEmbryoFreezing.Location.Y);
            lbEmbryoStraws.AutoSize   = true;
            txtEmbryoStrawsExtra      = new C1TextBox();
            txtEmbryoStrawsExtra.Font = fEdit;
            size = ic.MeasureString(lbEmbryoStraws);
            txtEmbryoStrawsExtra.Location = new System.Drawing.Point(lbEmbryoStraws.Location.X + size.Width + 5, chkEmbryoFreezing.Location.Y);
            txtEmbryoStrawsExtra.Size     = new Size(40, 20);
            lbEmbryoEmbryo          = new Label();
            lbEmbryoEmbryo.Font     = fEdit;
            lbEmbryoEmbryo.Text     = "embryos) ";
            lbEmbryoEmbryo.Name     = "lbEmbryoEmbryo";
            lbEmbryoEmbryo.Location = new System.Drawing.Point(txtEmbryoStrawsExtra.Location.X + txtEmbryoStrawsExtra.Width + 5, chkEmbryoFreezing.Location.Y);
            lbEmbryoEmbryo.AutoSize = true;

            gapY              += gapLine;
            chkNGS             = new C1.Win.C1Input.C1CheckBox();
            chkNGS.Font        = fEdit;
            chkNGS.Text        = "NGS ";
            chkNGS.Name        = "chkNGS";
            chkNGS.BackColor   = System.Drawing.Color.Transparent;
            chkNGS.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkNGS.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkNGS.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkNGS.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkNGS.Location    = new System.Drawing.Point(gapX, gapY);
            chkNGS.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkNGS.Size        = new System.Drawing.Size(180, 24);
            chkNGS.TabIndex    = 553;
            theme1.SetTheme(this.chkNGS, "(default)");
            chkNGS.UseVisualStyleBackColor = true;
            chkNGS.Value = null;
            chkNGS.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            txtNGSEmbryo      = new C1TextBox();
            txtNGSEmbryo.Font = fEdit;
            size = ic.MeasureString(chkNGS);
            txtNGSEmbryo.Location = new System.Drawing.Point(chkNGS.Location.X + chkNGS.Width, chkNGS.Location.Y);
            txtNGSEmbryo.Size     = new Size(60, 20);
            txtNGSEmbryo.Name     = "txtNGSEmbryo";
            lbNGSEmbryo           = new Label();
            lbNGSEmbryo.Font      = fEdit;
            lbNGSEmbryo.Text      = "embryo  (Extra ";
            lbNGSEmbryo.Name      = "lbNGSEmbryo";
            lbNGSEmbryo.Location  = new System.Drawing.Point(txtNGSEmbryo.Location.X + txtNGSEmbryo.Width, chkNGS.Location.Y);
            lbNGSEmbryo.AutoSize  = true;
            txtNGSExtra           = new C1TextBox();
            txtNGSExtra.Font      = fEdit;
            size = ic.MeasureString(lbNGSEmbryo);
            txtNGSExtra.Location = new System.Drawing.Point(lbNGSEmbryo.Location.X + lbNGSEmbryo.Width, chkNGS.Location.Y);
            txtNGSExtra.Size     = new Size(60, 20);
            txtNGSExtra.Name     = "txtNGSExtra";
            lbNGSExtra           = new Label();
            lbNGSExtra.Text      = "embryos) ";
            lbNGSExtra.Font      = fEdit;
            lbNGSExtra.Location  = new System.Drawing.Point(txtNGSExtra.Location.X + txtNGSExtra.Width, chkNGS.Location.Y);
            lbNGSExtra.AutoSize  = true;
            lbNGSExtra.Name      = "lbNGSExtra";

            gapY              += gapLine;
            chkPGS             = new C1.Win.C1Input.C1CheckBox();
            chkPGS.BackColor   = System.Drawing.Color.Transparent;
            chkPGS.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkPGS.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkPGS.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkPGS.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkPGS.Location    = new System.Drawing.Point(gapX, gapY);
            chkPGS.Name        = "chkPGS";
            chkPGS.Text        = "PGS ";
            size               = ic.MeasureString(chkPGS);
            chkPGS.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkPGS.Size        = new System.Drawing.Size(size.Width + 30, 24);
            chkPGS.TabIndex    = 553;
            theme1.SetTheme(this.chkPGS, "(default)");
            chkPGS.UseVisualStyleBackColor = true;
            chkPGS.Value = null;
            chkPGS.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkPGS.Font           = fEdit;
            txtPGSEmbryo          = new C1TextBox();
            txtPGSEmbryo.Font     = fEdit;
            txtPGSEmbryo.Location = new System.Drawing.Point(chkPGS.Location.X + size.Width + 35, chkPGS.Location.Y);
            txtPGSEmbryo.Size     = new Size(60, 20);
            txtPGSEmbryo.Name     = "txtPGSEmbryo";
            lbPGSEmbryo           = new Label();
            lbPGSEmbryo.Font      = fEdit;
            lbPGSEmbryo.Name      = "lbPGSEmbryo";
            lbPGSEmbryo.Text      = "embryo  (Extra ";
            lbPGSEmbryo.Location  = new System.Drawing.Point(txtPGSEmbryo.Location.X + txtPGSEmbryo.Width, chkPGS.Location.Y);
            lbPGSEmbryo.AutoSize  = true;

            txtPGSExtra          = new C1TextBox();
            txtPGSExtra.Font     = fEdit;
            size                 = ic.MeasureString(lbPGSEmbryo);
            txtPGSExtra.Location = new System.Drawing.Point(lbPGSEmbryo.Location.X + size.Width, chkPGS.Location.Y);
            txtPGSExtra.Size     = new Size(60, 20);
            txtPGSExtra.Name     = "txtPGSExtra";
            lbPGSExtra           = new Label();
            lbPGSExtra.Font      = fEdit;
            lbPGSExtra.Text      = "embryos) ";
            lbPGSExtra.Name      = "lbPGSExtra";
            lbPGSExtra.Location  = new System.Drawing.Point(txtPGSExtra.Location.X + txtPGSExtra.Width, chkPGS.Location.Y);
            lbPGSExtra.AutoSize  = true;

            gapY               += gapLine;
            chkDay6             = new C1.Win.C1Input.C1CheckBox();
            chkDay6.Font        = fEdit;
            chkDay6.Name        = "chkPGS";
            chkDay6.Text        = "Day 6 ";
            chkDay6.BackColor   = System.Drawing.Color.Transparent;
            chkDay6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkDay6.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkDay6.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkDay6.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkDay6.Location    = new System.Drawing.Point(gapX, gapY);
            chkDay6.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkDay6.Size        = new System.Drawing.Size(180, 24);
            chkDay6.TabIndex    = 553;
            theme1.SetTheme(this.chkDay6, "(default)");
            chkDay6.UseVisualStyleBackColor = true;
            chkDay6.Value = null;
            chkDay6.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            gapY += gapLine;
            chkAssistedHatching             = new C1.Win.C1Input.C1CheckBox();
            chkAssistedHatching.BackColor   = System.Drawing.Color.Transparent;
            chkAssistedHatching.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkAssistedHatching.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkAssistedHatching.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkAssistedHatching.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkAssistedHatching.Location    = new System.Drawing.Point(gapX, gapY);
            chkAssistedHatching.Name        = "chkAssistedHatching";
            chkAssistedHatching.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkAssistedHatching.Size        = new System.Drawing.Size(180, 24);
            chkAssistedHatching.TabIndex    = 553;
            chkAssistedHatching.Text        = "Assisted Hatching ";
            theme1.SetTheme(this.chkAssistedHatching, "(default)");
            chkAssistedHatching.UseVisualStyleBackColor = true;
            chkAssistedHatching.Value = null;
            chkAssistedHatching.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkAssistedHatching.Font = fEdit;

            gapY             += gapLine;
            chkHA             = new C1.Win.C1Input.C1CheckBox();
            chkHA.BackColor   = System.Drawing.Color.Transparent;
            chkHA.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkHA.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkHA.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkHA.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkHA.Location    = new System.Drawing.Point(gapX, gapY);
            chkHA.Name        = "chkHA";
            chkHA.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkHA.Size        = new System.Drawing.Size(180, 24);
            chkHA.TabIndex    = 553;
            chkHA.Text        = "HA Assist selection ";
            theme1.SetTheme(this.chkHA, "(default)");
            chkHA.UseVisualStyleBackColor = true;
            chkHA.Value = null;
            chkHA.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkHA.Font = fEdit;

            gapY += gapLine;
            chkSpermSelection             = new C1.Win.C1Input.C1CheckBox();
            chkSpermSelection.BackColor   = System.Drawing.Color.Transparent;
            chkSpermSelection.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkSpermSelection.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkSpermSelection.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkSpermSelection.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkSpermSelection.Location    = new System.Drawing.Point(gapX, gapY);
            chkSpermSelection.Name        = "chkSpermSelection";
            chkSpermSelection.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkSpermSelection.Size        = new System.Drawing.Size(180, 24);
            chkSpermSelection.TabIndex    = 553;
            chkSpermSelection.Text        = "Sperm Selection ";
            theme1.SetTheme(this.chkSpermSelection, "(default)");
            chkSpermSelection.UseVisualStyleBackColor = true;
            chkSpermSelection.Value = null;
            chkSpermSelection.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkSpermSelection.Font = fEdit;
            txtSpermSelection      = new C1TextBox();
            txtSpermSelection.Font = fEdit;
            size = ic.MeasureString(chkSpermSelection);
            txtSpermSelection.Location = new System.Drawing.Point(chkSpermSelection.Location.X + chkSpermSelection.Width, chkSpermSelection.Location.Y);
            txtSpermSelection.Size     = new Size(60, 20);
            txtSpermSelection.Name     = "txtSpermSelection";

            gapY += gapLine;
            chkSpermPrecaution             = new C1.Win.C1Input.C1CheckBox();
            chkSpermPrecaution.BackColor   = System.Drawing.Color.Transparent;
            chkSpermPrecaution.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkSpermPrecaution.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkSpermPrecaution.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkSpermPrecaution.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkSpermPrecaution.Location    = new System.Drawing.Point(gapX, gapY);
            chkSpermPrecaution.Name        = "chkSpermPrecaution";
            chkSpermPrecaution.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkSpermPrecaution.Size        = new System.Drawing.Size(180, 24);
            chkSpermPrecaution.TabIndex    = 553;
            chkSpermPrecaution.Text        = "Sperm Precaution ";
            theme1.SetTheme(this.chkSpermPrecaution, "(default)");
            chkSpermPrecaution.UseVisualStyleBackColor = true;
            chkSpermPrecaution.Value = null;
            chkSpermPrecaution.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkSpermPrecaution.Font = fEdit;
            txtSpermPrecaution      = new C1TextBox();
            txtSpermPrecaution.Font = fEdit;
            size = ic.MeasureString(chkSpermPrecaution);
            txtSpermPrecaution.Location = new System.Drawing.Point(chkSpermPrecaution.Location.X + chkSpermPrecaution.Width, chkSpermPrecaution.Location.Y);
            txtSpermPrecaution.Size     = new Size(60, 20);
            txtSpermPrecaution.Name     = "txtSpermPrecaution";

            gapY                     += gapLine;
            chkEmbryoGlue             = new C1.Win.C1Input.C1CheckBox();
            chkEmbryoGlue.BackColor   = System.Drawing.Color.Transparent;
            chkEmbryoGlue.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkEmbryoGlue.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkEmbryoGlue.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkEmbryoGlue.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkEmbryoGlue.Location    = new System.Drawing.Point(gapX, gapY);
            chkEmbryoGlue.Name        = "chkEmbryoGlue";
            chkEmbryoGlue.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkEmbryoGlue.Size        = new System.Drawing.Size(180, 24);
            chkEmbryoGlue.TabIndex    = 553;
            chkEmbryoGlue.Text        = "Embryo Glue ";
            theme1.SetTheme(this.chkEmbryoGlue, "(default)");
            chkEmbryoGlue.UseVisualStyleBackColor = true;
            chkEmbryoGlue.Value = null;
            chkEmbryoGlue.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkEmbryoGlue.Font = fEdit;

            gapY += gapLine;
            chkEmbryoRemaining             = new C1.Win.C1Input.C1CheckBox();
            chkEmbryoRemaining.BackColor   = System.Drawing.Color.Transparent;
            chkEmbryoRemaining.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkEmbryoRemaining.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkEmbryoRemaining.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkEmbryoRemaining.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkEmbryoRemaining.Location    = new System.Drawing.Point(gapX, gapY);
            chkEmbryoRemaining.Name        = "chkEmbryoRemaining";
            chkEmbryoRemaining.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkEmbryoRemaining.Size        = new System.Drawing.Size(180, 24);
            chkEmbryoRemaining.TabIndex    = 553;
            chkEmbryoRemaining.Text        = "Embryo Remaining ";
            theme1.SetTheme(this.chkEmbryoRemaining, "(default)");
            chkEmbryoRemaining.UseVisualStyleBackColor = true;
            chkEmbryoRemaining.Value = null;
            chkEmbryoRemaining.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;
            chkEmbryoRemaining.Font = fEdit;
            txtEmbryoRemaining      = new C1TextBox();
            txtEmbryoRemaining.Font = fEdit;
            size = ic.MeasureString(chkSpermPrecaution);
            txtEmbryoRemaining.Location = new System.Drawing.Point(chkEmbryoRemaining.Location.X + chkEmbryoRemaining.Width, chkEmbryoRemaining.Location.Y);
            txtEmbryoRemaining.Size     = new Size(60, 20);
            txtEmbryoRemaining.Name     = "txtEmbryoRemaining";
            lbEmbryoRemaining           = new Label();
            lbEmbryoRemaining.Text      = "embryos ";
            lbEmbryoRemaining.Font      = fEdit;
            lbEmbryoRemaining.Location  = new System.Drawing.Point(txtPGSExtra.Location.X + txtPGSExtra.Width, chkPGS.Location.Y);
            lbEmbryoRemaining.AutoSize  = true;
            lbEmbryoRemaining.Name      = "lbEmbryoRemaining";

            gapY                     += gapLine;
            chkDiscardAll             = new C1.Win.C1Input.C1CheckBox();
            chkDiscardAll.Font        = fEdit;
            chkDiscardAll.Name        = "chkDiscardAll";
            chkDiscardAll.Text        = "Discard All Embryos ";
            chkDiscardAll.BackColor   = System.Drawing.Color.Transparent;
            chkDiscardAll.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            chkDiscardAll.BorderStyle = System.Windows.Forms.BorderStyle.None;
            chkDiscardAll.FlatStyle   = System.Windows.Forms.FlatStyle.Flat;
            chkDiscardAll.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
            chkDiscardAll.Location    = new System.Drawing.Point(gapX, gapY);
            chkDiscardAll.Padding     = new System.Windows.Forms.Padding(4, 1, 1, 1);
            chkDiscardAll.Size        = new System.Drawing.Size(180, 24);
            chkDiscardAll.TabIndex    = 553;
            theme1.SetTheme(this.chkDiscardAll, "(default)");
            chkDiscardAll.UseVisualStyleBackColor = true;
            chkDiscardAll.Value = null;
            chkDiscardAll.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            gapY                              += gapLine;
            lbStfId                            = new Label();
            lbStfId.Font                       = fEdit;
            lbStfId.Name                       = "lbStfId";
            lbStfId.Text                       = "Staff : ";
            lbStfId.Location                   = new System.Drawing.Point(gapX, gapY);
            lbStfId.AutoSize                   = true;
            cboStfId                           = new C1ComboBox();
            cboStfId.Font                      = fEdit;
            size                               = ic.MeasureString(lbStfId);
            cboStfId.Location                  = new System.Drawing.Point(cboPkg.Location.X, lbStfId.Location.Y);
            cboStfId.AllowSpinLoop             = false;
            cboStfId.BorderStyle               = System.Windows.Forms.BorderStyle.FixedSingle;
            cboStfId.DisabledForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(152)))), ((int)(((byte)(152)))));
            cboStfId.Font                      = fEdit;
            cboStfId.GapHeight                 = 0;
            cboStfId.ImagePadding              = new System.Windows.Forms.Padding(0);
            cboStfId.ItemsDisplayMember        = "";
            cboStfId.ItemsValueMember          = "";
            cboStfId.Name                      = "cboStfId";
            cboStfId.Size                      = new System.Drawing.Size(180, 20);
            cboStfId.Style.DropDownBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
            cboStfId.Style.DropDownBorderColor = System.Drawing.Color.Gainsboro;
            cboStfId.Style.Font                = fEdit;
            cboStfId.TabIndex                  = 538;
            cboStfId.Tag                       = null;
            theme1.SetTheme(cboStfId, "(default)");
            cboStfId.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            gapY                              += gapLine;
            lbChkId                            = new Label();
            lbChkId.Font                       = fEdit;
            lbChkId.Text                       = "Check By : ";
            lbChkId.Name                       = "lbChkId";
            lbChkId.Location                   = new System.Drawing.Point(gapX, gapY);
            lbChkId.AutoSize                   = true;
            cboChkId                           = new C1ComboBox();
            cboChkId.Font                      = fEdit;
            cboChkId.Name                      = "cboChkId";
            size                               = ic.MeasureString(lbChkId);
            cboChkId.Location                  = new System.Drawing.Point(cboPkg.Location.X, lbChkId.Location.Y);
            cboChkId.AllowSpinLoop             = false;
            cboChkId.BorderStyle               = System.Windows.Forms.BorderStyle.FixedSingle;
            cboChkId.DisabledForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(152)))), ((int)(((byte)(152)))));
            cboChkId.Font                      = fEdit;
            cboChkId.GapHeight                 = 0;
            cboChkId.ImagePadding              = new System.Windows.Forms.Padding(0);
            cboChkId.ItemsDisplayMember        = "";
            cboChkId.ItemsValueMember          = "";
            cboChkId.Size                      = new System.Drawing.Size(180, 20);
            cboChkId.Style.DropDownBackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
            cboChkId.Style.DropDownBorderColor = System.Drawing.Color.Gainsboro;
            cboChkId.Style.Font                = fEdit;
            cboChkId.TabIndex                  = 538;
            cboChkId.Tag                       = null;
            theme1.SetTheme(cboChkId, "(default)");
            cboChkId.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2010Blue;

            gapY        += gapLine;
            btnSave      = new C1Button();
            btnSave.Font = fEdit;
            btnSave.Name = "btnLisStart";
            btnSave.Text = "Save";
            //size = bc.MeasureString(btnHnSearch);
            btnSave.Location   = new System.Drawing.Point(gapX, gapY);
            btnSave.Size       = new Size(70, 60);
            btnSave.Font       = fEdit;
            btnSave.Image      = imgStart;
            btnSave.TextAlign  = ContentAlignment.MiddleRight;
            btnSave.ImageAlign = ContentAlignment.MiddleLeft;

            //panel1.Controls.Add(chkNGS);
            panel1.Controls.Add(lbDate);
            panel1.Controls.Add(txtDate);
            panel1.Controls.Add(lbPkg);
            panel1.Controls.Add(cboPkg);
            panel1.Controls.Add(lbName);
            panel1.Controls.Add(txtName);
            panel1.Controls.Add(chkEmbryoFreezing);
            panel1.Controls.Add(txtEmbryoFreezing);
            panel1.Controls.Add(lbEmbryoFreezing);
            panel1.Controls.Add(txtEmbryoStraws);
            panel1.Controls.Add(lbEmbryoStraws);
            panel1.Controls.Add(txtEmbryoStrawsExtra);
            panel1.Controls.Add(lbEmbryoEmbryo);
            panel1.Controls.Add(chkNGS);
            panel1.Controls.Add(chkPGS);

            //panel1.Controls.Add(lbPGSEmbryo);
            panel1.Controls.Add(txtPGSEmbryo);
            panel1.Controls.Add(lbPGSEmbryo);
            panel1.Controls.Add(txtPGSExtra);
            panel1.Controls.Add(lbPGSExtra);
            panel1.Controls.Add(txtSpermSelection);
            panel1.Controls.Add(txtSpermPrecaution);
            panel1.Controls.Add(txtEmbryoRemaining);
            panel1.Controls.Add(lbEmbryoRemaining);

            panel1.Controls.Add(chkDay6);
            panel1.Controls.Add(chkHA);
            panel1.Controls.Add(chkSpermSelection);
            panel1.Controls.Add(chkSpermPrecaution);
            panel1.Controls.Add(chkEmbryoGlue);
            panel1.Controls.Add(chkEmbryoRemaining);
            panel1.Controls.Add(chkDiscardAll);
            panel1.Controls.Add(lbStfId);
            panel1.Controls.Add(cboStfId);
            panel1.Controls.Add(lbChkId);
            panel1.Controls.Add(cboChkId);
            panel1.Controls.Add(btnSave);
            this.Controls.Add(panel1);
            setTheme();

            panel1.ResumeLayout(false);

            panel1.PerformLayout();
            this.PerformLayout();
        }
Esempio n. 8
0
        private void initCompoment()
        {
            int  gapLine = 25, gapX = 20, gapY = 20, xCol2 = 130, xCol1 = 80, xCol3 = 330, xCol4 = 640, xCol5 = 950;
            Size size = new Size();

            tcMain             = new C1DockingTab();
            tcMain.Dock        = System.Windows.Forms.DockStyle.Fill;
            tcMain.Location    = new System.Drawing.Point(0, 266);
            tcMain.Name        = "tcMain";
            tcMain.Size        = new System.Drawing.Size(669, 200);
            tcMain.TabIndex    = 0;
            tcMain.TabsSpacing = 5;

            tabImportDf      = new C1DockingTabPage();
            tabImportDf.Dock = System.Windows.Forms.DockStyle.Fill;
            tabImportDf.Name = "tabImportDf";
            tabImportDf.Text = "Import Item DF";

            grfSelect            = new C1FlexGrid();
            grfSelect.Font       = fEdit;
            grfSelect.Dock       = System.Windows.Forms.DockStyle.Bottom;
            grfSelect.Location   = new System.Drawing.Point(0, 0);
            grfSelect.Rows.Count = 1;

            lbDateStart  = new Label();
            txtDateStart = new C1DateEdit();
            btnDeleteAll = new C1Button();
            cboDocGrp    = new C1ComboBox();
            txtPaidType  = new C1TextBox();
            lbHn         = new Label();
            txtHn        = new C1TextBox();
            btnPrint     = new C1Button();
            btnGet       = new C1Button();

            bc.setControlLabel(ref lbDateStart, fEdit, "วันที่เริ่มต้น :", "lbDateStart", gapX, gapY);
            size = bc.MeasureString(lbDateStart);
            bc.setControlC1DateTimeEdit(ref txtDateStart, "txtDateStart", lbDateStart.Location.X + size.Width + 5, gapY);


            bc.setControlC1ComboBox(ref cboDocGrp, "cboDocGrp", 80, txtDateStart.Location.X + txtDateStart.Width + 25, gapY);
            cboDocGrp.Font = fEdit;
            ComboBoxItem item = new ComboBoxItem();

            item       = new ComboBoxItem();
            item.Value = "1";
            item.Text  = "รอบ 1";
            cboDocGrp.Items.Add(item);
            item       = new ComboBoxItem();
            item.Value = "2";
            item.Text  = "รอบ 2";
            cboDocGrp.Items.Add(item);
            item       = new ComboBoxItem();
            item.Value = "3";
            item.Text  = "รอบ 3";
            cboDocGrp.Items.Add(item);
            //item = new ComboBoxItem();
            //item.Value = "3";
            //item.Text = "รอบ 3";
            //cboDocGrp.Items.Add(item);

            bc.setControlC1TextBox(ref txtPaidType, fEdit, "txtPaidType", 140, cboDocGrp.Location.X + cboDocGrp.Width + 25, gapY);

            bc.setControlLabel(ref lbHn, fEdit, "search :", "lbHn", txtPaidType.Location.X + txtPaidType.Width + 55, gapY);
            size = bc.MeasureString(lbHn);
            bc.setControlC1TextBox(ref txtHn, fEdit, "txtHn", 140, lbHn.Location.X + lbHn.Width + 10, gapY);


            bc.setControlC1Button(ref btnDeleteAll, fEdit, "Clear Data", "btnDeleteAll", txtHn.Location.X + txtHn.Width + 20, gapY);
            btnDeleteAll.Width  = 120;
            btnDeleteAll.Height = btnDeleteAll.Height + 10;

            bc.setControlC1Button(ref btnPrint, fEdit, "Print", "btnPrint", btnDeleteAll.Location.X + btnDeleteAll.Width + 60, gapY);
            btnPrint.Width  = 140;
            btnPrint.Height = btnPrint.Height + 10;

            bc.setControlC1Button(ref btnGet, fEdit, "get", "btnGet", btnPrint.Location.X + btnPrint.Width + 60, gapY);
            btnGet.Width  = 140;
            btnGet.Height = btnGet.Height + 10;

            tabImportDf.Controls.Add(grfSelect);
            theme1.SetTheme(grfSelect, "Office2010Red");

            tabImportDf.Controls.Add(lbDateStart);
            tabImportDf.Controls.Add(txtDateStart);
            tabImportDf.Controls.Add(cboDocGrp);
            tabImportDf.Controls.Add(btnDeleteAll);
            tabImportDf.Controls.Add(btnPrint);
            tabImportDf.Controls.Add(txtPaidType);
            tabImportDf.Controls.Add(lbHn);
            tabImportDf.Controls.Add(txtHn);
            tabImportDf.Controls.Add(btnGet);

            tcMain.Controls.Add(tabImportDf);
            this.Controls.Add(tcMain);
        }
        private void setConponent()
        {
            int  gapLine = 30, gapX = 20, gapY = 20;
            Size size = new Size();

            initGrfLeft();
            initGrfImg();

            lbMlFmCode              = new Label();
            lbMlFmCode.AutoSize     = true;
            lbMlFmCode.BorderStyle  = System.Windows.Forms.BorderStyle.None;
            lbMlFmCode.Font         = fEdit;
            lbMlFmCode.ForeColor    = System.Drawing.SystemColors.ControlText;
            lbMlFmCode.Location     = new System.Drawing.Point(gapX, gapY);
            lbMlFmCode.Text         = "Fm Code:";
            txtMlFmCode             = new C1TextBox();
            txtMlFmCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            txtMlFmCode.Font        = fEdit;
            txtMlFmCode.Width       = 200;
            size = bc.MeasureString(lbMlFmCode);
            txtMlFmCode.Location = new System.Drawing.Point(lbMlFmCode.Location.X + size.Width + 15, lbMlFmCode.Location.Y);
            txtMlFmCode.Name     = "txtMlFmCode";
            txtMlFmCode.ReadOnly = true;

            gapY                      += gapLine;
            lbMlFmCodeNew              = new Label();
            lbMlFmCodeNew.AutoSize     = true;
            lbMlFmCodeNew.BorderStyle  = System.Windows.Forms.BorderStyle.None;
            lbMlFmCodeNew.Font         = fEdit;
            lbMlFmCodeNew.ForeColor    = System.Drawing.SystemColors.ControlText;
            lbMlFmCodeNew.Location     = new System.Drawing.Point(gapX, gapY);
            lbMlFmCodeNew.Text         = "Fm Code:";
            txtMlFmCodeNew             = new C1TextBox();
            txtMlFmCodeNew.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            txtMlFmCodeNew.Width       = 200;
            txtMlFmCodeNew.Font        = fEdit;
            size                       = bc.MeasureString(lbMlFmCodeNew);
            txtMlFmCodeNew.Location    = new System.Drawing.Point(lbMlFmCodeNew.Location.X + size.Width + 15, lbMlFmCodeNew.Location.Y);
            txtMlFmCodeNew.Name        = "txtMlFmCodeNew";

            btnUpdate          = new C1Button();
            btnUpdate.Name     = "btnUpdate";
            btnUpdate.Text     = "Update Fm Code";
            btnUpdate.Font     = this.fEdit;
            size               = new Size(120, 40);
            btnUpdate.Size     = size;
            btnUpdate.Location = new Point(txtMlFmCodeNew.Location.X + txtMlFmCodeNew.Width + 40, lbMlFmCodeNew.Location.Y);
            //btnPrn.Click += BtnPrn_Click;
            btnFmCode          = new C1Button();
            btnFmCode.Name     = "btnFmCode";
            btnFmCode.Text     = "Fm Code";
            btnFmCode.Font     = this.fEdit;
            size               = new Size(120, 40);
            btnFmCode.Size     = size;
            btnFmCode.Location = new Point(btnUpdate.Location.X + btnUpdate.Width + 40, lbMlFmCodeNew.Location.Y);

            gapY             += gapLine;
            chkLimit          = new C1CheckBox();
            chkLimit.Text     = "Limit 40 ";
            chkLimit.Name     = "chkLimit";
            chkLimit.Location = new Point(gapX, gapY);
            chkLimit.Checked  = true;

            //pnRightTop.Controls.Add(btnUpdate);
            pnRightTop.Controls.Add(lbMlFmCode);
            pnRightTop.Controls.Add(txtMlFmCode);
            pnRightTop.Controls.Add(lbMlFmCodeNew);
            pnRightTop.Controls.Add(txtMlFmCodeNew);
            pnRightTop.Controls.Add(btnUpdate);
            pnRightTop.Controls.Add(chkLimit);
            pnRightTop.Controls.Add(btnFmCode);
        }
Esempio n. 10
0
        private void initTab()
        {
            int  gapLine = 15, gapX = 20;
            Size size  = new Size();
            Size size1 = new Size();
            int  scrW  = Screen.PrimaryScreen.Bounds.Width;

            tC1                   = new C1.Win.C1Command.C1DockingTab();
            tC1.Dock              = System.Windows.Forms.DockStyle.Fill;
            tC1.HotTrack          = true;
            tC1.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
            tC1.TabSizeMode       = C1.Win.C1Command.TabSizeModeEnum.Fit;
            tC1.TabsShowFocusCues = true;
            tabItem               = new C1.Win.C1Command.C1DockingTabPage();
            tabItem.Name          = "tabItem";
            tabItem.TabIndex      = 0;
            tabItem.Text          = "Item Master";

            tabDrug             = new C1.Win.C1Command.C1DockingTabPage();
            tabDrug.Name        = "tabDrug";
            tabDrug.TabIndex    = 0;
            tabDrug.Text        = "Drug";
            tabSpecial          = new C1.Win.C1Command.C1DockingTabPage();
            tabSpecial.Name     = "tabSpecial";
            tabSpecial.TabIndex = 0;
            tabSpecial.Text     = "Special Item";
            tabLab          = new C1.Win.C1Command.C1DockingTabPage();
            tabLab.Name     = "tabLab";
            tabLab.TabIndex = 0;
            tabLab.Text     = "Lab Item";

            pnItem             = new Panel();
            pnItem.Dock        = DockStyle.Fill;
            lbCboname          = new Label();
            lbCboname.Text     = "Type :";
            lbCboname.Font     = fEdit;
            lbCboname.Location = new System.Drawing.Point(gapX, 10);
            lbCboname.AutoSize = true;
            cboItemType        = new C1ComboBox();
            size = ic.MeasureString(lbCboname);
            cboItemType.Location             = new System.Drawing.Point(gapX + size.Width, lbCboname.Location.Y);
            cboItemType.SelectedItemChanged += CboItemType_SelectedItemChanged;

            lbItem              = new Label();
            lbItem.Text         = "Item :";
            lbItem.Font         = fEdit;
            lbItem.Location     = new System.Drawing.Point(gapX, gapLine + cboItemType.Height);
            lbItem.AutoSize     = true;
            txtCode             = new C1TextBox();
            txtCode.Font        = fEdit;
            txtCode.Location    = new System.Drawing.Point(cboItemType.Location.X, lbItem.Location.Y);
            lbItemName          = new Label();
            lbItemName.Text     = "...";
            lbItemName.Font     = fEdit;
            lbItemName.Location = new System.Drawing.Point(txtCode.Location.X + txtCode.Width, txtCode.Location.Y);
            lbItemName.AutoSize = true;
            btnSave             = new C1Button();
            btnSave.Name        = "";
            btnSave.Text        = "Save";
            btnSave.Font        = fEdit;
            btnSave.Location    = new System.Drawing.Point(txtCode.Location.X + txtCode.Width + 300, txtCode.Location.Y);
            btnSave.Click      += BtnSave_Click;
            btnClear            = new C1Button();
            btnClear.Name       = "";
            btnClear.Text       = "Clear";
            btnClear.Font       = fEdit;
            btnClear.Location   = new System.Drawing.Point(btnSave.Location.X + btnSave.Width + 10, btnSave.Location.Y);
            btnClear.Click     += BtnClear_Click;
            lbMessage           = new Label();
            lbMessage.Text      = "";
            lbMessage.Font      = fEditB;
            lbMessage.Location  = new System.Drawing.Point(btnClear.Location.X + btnClear.Width + 10, btnClear.Location.Y);
            lbMessage.AutoSize  = true;

            panel1.Controls.Add(tC1);
            tC1.Controls.Add(tabItem);
            tC1.Controls.Add(tabDrug);
            tC1.Controls.Add(tabSpecial);
            tC1.Controls.Add(tabLab);

            grfItem               = new C1FlexGrid();
            grfItem.Font          = fEdit;
            grfItem.Location      = new System.Drawing.Point(gapX, gapLine + txtCode.Height + txtCode.Location.Y);
            grfItem.Size          = new Size(900, 300);
            grfItem.RowColChange += GrfItem_RowColChange;

            lbCapPtt          = new Label();
            lbCapPtt.Text     = "Master";
            lbCapPtt.Font     = fEdit;
            lbCapPtt.Location = new System.Drawing.Point(gapX, gapLine + grfItem.Location.Y + grfItem.Height);
            lbCapPtt.AutoSize = true;
            size                 = ic.MeasureString(lbCapPtt);
            txtItemCode          = new C1TextBox();
            txtItemCode.Font     = fEdit;
            txtItemCode.Location = new System.Drawing.Point(gapX + size.Width, lbCapPtt.Location.Y);
            lbItemCode           = new Label();
            lbItemCode.Text      = "...";
            lbItemCode.Font      = fEdit;
            lbItemCode.Location  = new System.Drawing.Point(gapX + txtItemCode.Location.X + txtItemCode.Width, lbCapPtt.Location.Y);
            lbItemCode.AutoSize  = true;

            lbCapLink          = new Label();
            lbCapLink.Text     = "Link";
            lbCapLink.Font     = fEdit;
            lbCapLink.Location = new System.Drawing.Point(scrW / 2, lbCapPtt.Location.Y);
            lbCapLink.AutoSize = true;
            size                 = ic.MeasureString(lbCapLink);
            txtLinkCode          = new C1TextBox();
            txtLinkCode.Font     = fEdit;
            txtLinkCode.Location = new System.Drawing.Point(lbCapLink.Location.X + size.Width, lbCapLink.Location.Y);
            lbLinkCode           = new Label();
            lbLinkCode.Text      = "...";
            lbLinkCode.Font      = fEdit;
            lbLinkCode.Location  = new System.Drawing.Point(gapX + txtLinkCode.Location.X + txtLinkCode.Width, lbCapPtt.Location.Y);
            lbLinkCode.AutoSize  = true;

            grfPtt                = new C1FlexGrid();
            grfPtt.Font           = fEdit;
            grfPtt.Location       = new System.Drawing.Point(gapX, lbCapPtt.Height + lbCapPtt.Location.Y);
            grfPtt.Size           = new Size((scrW / 2) - 50, 300);
            grfPtt.RowColChange  += GrfPtt_RowColChange;
            grfLink               = new C1FlexGrid();
            grfLink.Font          = fEdit;
            grfLink.Location      = new System.Drawing.Point(gapX + grfPtt.Width + gapX, grfPtt.Location.Y);
            grfLink.Size          = new Size((scrW / 2) - 50, 300);
            grfLink.RowColChange += GrfLink_RowColChange;

            tabItem.Controls.Add(pnItem);
            pnItem.Controls.Add(lbCboname);
            pnItem.Controls.Add(cboItemType);
            pnItem.Controls.Add(lbItemName);
            pnItem.Controls.Add(lbItem);
            pnItem.Controls.Add(txtCode);
            pnItem.Controls.Add(grfItem);
            pnItem.Controls.Add(lbCapPtt);
            pnItem.Controls.Add(lbCapLink);
            pnItem.Controls.Add(grfPtt);
            pnItem.Controls.Add(grfLink);
            pnItem.Controls.Add(txtItemCode);
            pnItem.Controls.Add(txtLinkCode);
            pnItem.Controls.Add(lbItemCode);
            pnItem.Controls.Add(lbLinkCode);
            pnItem.Controls.Add(btnSave);
            pnItem.Controls.Add(btnClear);
            pnItem.Controls.Add(lbMessage);
            theme1.SetTheme(panel1, ic.iniC.themeApp);
            theme1.SetTheme(tC1, ic.iniC.themeApp);
            theme1.SetTheme(tC1, ic.iniC.themeApp);
            theme1.SetTheme(lbMessage, ic.iniC.themeApp);
            lbMessage.Text = "สร้างข้อมูลLinkใหม่";
        }
Esempio n. 11
0
        private void initCompomentTabDeposit()
        {
            int  gapLine = 25, gapX = 20, gapY = 20, xCol2 = 150, xCol1 = 80, xCol3 = 330, xCol4 = 640, xCol5 = 950;
            Size size = new Size();

            tabDeposit          = new C1DockingTabPage();
            tabDeposit.Location = new System.Drawing.Point(1, 24);
            //tabScan.Name = "c1DockingTabPage1";
            tabDeposit.Size     = new System.Drawing.Size(667, 175);
            tabDeposit.TabIndex = 0;
            tabDeposit.Text     = "Deposit";
            tabDeposit.Name     = "tabDeposit";
            tcMain.Controls.Add(tabDeposit);

            lbtxtDepositCode = new Label();
            lbtxtDepositDate = new Label();
            lbtxtHn          = new Label();
            lbtxtName        = new Label();
            lbtxtDeposit     = new Label();
            lbtxtRemark      = new Label();
            txtDepositDate   = new C1DateEdit();
            txtDepositCode   = new C1TextBox();
            txtHn            = new C1TextBox();
            txtName          = new C1TextBox();
            txtDeposit       = new C1TextBox();
            txtRemark        = new C1TextBox();
            btnSave          = new C1Button();
            btnSearch        = new C1Button();
            chkAll           = new C1CheckBox();
            chkActive        = new RadioButton();
            chkUnActive      = new RadioButton();
            txtId            = new C1TextBox();
            lbcboPackage     = new Label();
            cboPackage       = new C1ComboBox();
            btnNew           = new C1Button();

            ic.setControlLabel(ref lbtxtDepositCode, fEdit, "code :", "lbtxtDepositCode", gapX, gapY);
            ic.setControlC1TextBox(ref txtDepositCode, fEdit, "txtDepositCode", 120, xCol2, gapY);
            ic.setControlC1CheckBox(ref chkAll, fEdit, "All", "chkAll", xCol4, gapY);
            //gapY += gapLine;
            ic.setControlLabel(ref lbtxtDepositDate, fEdit, "Date Deposit :", "lbtxtDepositDate", xCol3, gapY);
            size = ic.MeasureString(lbtxtDepositDate);
            ic.setControlC1DateTimeEdit(ref txtDepositDate, "txtDepositDate", lbtxtDepositDate.Location.X + size.Width + 15, gapY);
            gapY += gapLine;
            ic.setControlLabel(ref lbtxtHn, fEdit, "HN :", "lbtxtHn", gapX, gapY);
            ic.setControlC1TextBox(ref txtHn, fEdit, "txtHn", 120, xCol2, gapY);
            ic.setControlC1Button(ref btnSearch, fEdit, "...", "btnSearch", txtHn.Location.X + txtHn.Width + 10, gapY - 4);
            btnSearch.Width  = 30;
            btnSearch.Height = 25;
            ic.setControlLabel(ref lbtxtDeposit, fEdit, "Deposit :", "lbtxtDeposit", xCol3, gapY);
            size = ic.MeasureString(lbtxtDeposit);
            ic.setControlC1TextBox(ref txtDeposit, fEdit, "txtDeposit", 120, txtDepositDate.Location.X, gapY);
            txtDeposit.NumericInput = true;
            txtDeposit.DataType     = typeof(decimal);

            ic.setControlRadioBox(ref chkActive, fEdit, "Active", "chkActive", xCol4, gapY);
            ic.setControlRadioBox(ref chkUnActive, fEdit, "UnActive", "chkUnActive", chkActive.Location.X + 80, gapY);

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtName, fEdit, "Name :", "lbtxtName", gapX, gapY);
            ic.setControlC1TextBox(ref txtName, fEdit, "txtName", 400, xCol2, gapY);
            //gapY += gapLine;

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtRemark, fEdit, "Remark :", "lbtxtRemark", gapX, gapY);
            ic.setControlC1TextBox(ref txtRemark, fEdit, "txtRemark", 400, xCol2, gapY);
            //gapY += gapLine;
            ic.setControlC1Button(ref btnSave, fEdit, "Save", "btnSave", xCol4, gapY);
            btnSave.Width = 70;
            ic.setControlC1Button(ref btnNew, fEdit, "New", "btnNew", btnSave.Location.X + btnSave.Width + 30, gapY);
            btnNew.Width = 70;
            gapY        += gapLine;
            ic.setControlLabel(ref lbcboPackage, fEdit, "Package :", "lbcboPackage", gapX, gapY);
            ic.setControlC1ComboBox(ref cboPackage, "cboPackage", 400, xCol2, gapY);

            grfDeposit            = new C1FlexGrid();
            grfDeposit.Name       = "grfDeposit";
            grfDeposit.Font       = fEdit;
            grfDeposit.Dock       = System.Windows.Forms.DockStyle.Bottom;
            grfDeposit.Location   = new System.Drawing.Point(0, 0);
            grfDeposit.Rows.Count = 1;

            tabDeposit.Controls.Add(grfDeposit);

            tabDeposit.Controls.Add(lbtxtDepositCode);
            tabDeposit.Controls.Add(txtDepositCode);
            tabDeposit.Controls.Add(lbtxtDepositDate);
            tabDeposit.Controls.Add(txtDepositDate);
            tabDeposit.Controls.Add(lbtxtHn);
            tabDeposit.Controls.Add(txtHn);
            tabDeposit.Controls.Add(lbtxtName);
            tabDeposit.Controls.Add(txtName);
            tabDeposit.Controls.Add(lbtxtDeposit);
            tabDeposit.Controls.Add(txtDeposit);
            tabDeposit.Controls.Add(lbtxtRemark);
            tabDeposit.Controls.Add(txtRemark);
            tabDeposit.Controls.Add(btnSave);
            tabDeposit.Controls.Add(btnSearch);
            tabDeposit.Controls.Add(chkAll);
            tabDeposit.Controls.Add(chkActive);
            tabDeposit.Controls.Add(chkUnActive);
            tabDeposit.Controls.Add(lbcboPackage);
            tabDeposit.Controls.Add(cboPackage);
            tabDeposit.Controls.Add(btnNew);
        }
Esempio n. 12
0
        private void initCompomentTabWithDraw()
        {
            int  gapLine = 25, gapX = 20, gapY = 20, xCol2 = 150, xCol20 = 130, xCol1 = 80, xCol3 = 330, xCol31 = 460, xcol32 = 540, xCol4 = 640, xcol41 = 660, xCol5 = 950;
            Size size = new Size();

            tabWithDraw          = new C1DockingTabPage();
            tabWithDraw.Location = new System.Drawing.Point(1, 24);
            //tabScan.Name = "c1DockingTabPage1";
            tabWithDraw.Size     = new System.Drawing.Size(667, 175);
            tabWithDraw.TabIndex = 0;
            tabWithDraw.Text     = "WithDraw";
            tabWithDraw.Name     = "tabWithDraw";
            tcMain.Controls.Add(tabWithDraw);

            lbtxtWithDrawCode    = new Label();
            lbtxtWithDrawAmount  = new Label();
            lbtxtWithDrawRemark  = new Label();
            lbtxtWithDrawDate    = new Label();
            lbtxtWithDrawHn      = new Label();
            lbtxtWithDrawAmount  = new Label();
            lbtxtWithDrawName    = new Label();
            lbtxtWithDrawAmt     = new Label();
            lbtxtWithDrawDeposit = new Label();

            txtWithDrawCode    = new C1TextBox();
            txtWithDrawAmount  = new C1TextBox();
            txtWithDrawDate    = new C1DateEdit();
            txtWithDrawHn      = new C1TextBox();
            txtWithDrawId      = new C1TextBox();
            txtWithDrawVisitId = new C1TextBox();
            txtWithDrawRemark  = new C1TextBox();
            txtWithDrawVisitId = new C1TextBox();
            txtWithDrawName    = new C1TextBox();
            txtWithDrawVn      = new C1TextBox();
            txtWithDrawVisitId = new C1TextBox();
            txtWithDrawPttId   = new C1TextBox();
            txtWithDrawAmt     = new C1TextBox();
            txtWithDrawDeposit = new C1TextBox();

            btnWithDrawSearch = new C1Button();
            btnWithDrawSave   = new C1Button();

            chkWithDrawActive   = new RadioButton();
            chkWithDrawUnActive = new RadioButton();
            lbcboPackageHn      = new Label();
            cboPackageHn        = new C1ComboBox();

            ic.setControlLabel(ref lbtxtWithDrawCode, fEdit, "code :", "lbtxtWithDrawCode", gapX, gapY);
            ic.setControlC1TextBox(ref txtWithDrawCode, fEdit, "txtWithDrawCode", 120, xCol20, gapY);
            ic.setControlLabel(ref lbtxtWithDrawDate, fEdit, "Date Withdraw :", "lbtxtWithDrawDate", xcol32, gapY);
            size = ic.MeasureString(lbtxtWithDrawDate);
            ic.setControlC1DateTimeEdit(ref txtWithDrawDate, "txtWithDrawDate", lbtxtWithDrawDate.Location.X + size.Width + 15, gapY);

            ic.setControlC1Button(ref btnWithDrawSave, fEdit, "Save", "btnWithDrawSave", txtWithDrawCode.Location.X + txtWithDrawCode.Width + 20, gapY - 10);
            btnWithDrawSave.Width = 70;

            ic.setControlRadioBox(ref chkWithDrawActive, fEdit, "Active", "chkActive", btnWithDrawSave.Location.X + btnWithDrawSave.Width + 20, gapY);
            ic.setControlRadioBox(ref chkWithDrawUnActive, fEdit, "UnActive", "chkUnActive", chkWithDrawActive.Location.X + 80, gapY);

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtWithDrawHn, fEdit, "HN :", "lbtxtWithDrawHn", gapX, gapY);
            ic.setControlC1TextBox(ref txtWithDrawHn, fEdit, "txtWithDrawHn", 120, xCol20, gapY);
            ic.setControlC1TextBox(ref txtWithDrawVn, fEdit, "txtWithDrawVn", 120, txtWithDrawHn.Location.X + txtWithDrawHn.Width + 20, gapY);
            ic.setControlC1Button(ref btnWithDrawSearch, fEdit, "...", "btnWithDrawSearch", txtWithDrawVn.Location.X + txtWithDrawVn.Width + 10, gapY - 4);

            btnWithDrawSearch.Width  = 30;
            btnWithDrawSearch.Height = 25;
            ic.setControlLabel(ref lbtxtWithDrawDeposit, fEdit, "Deposit :", "lbtxtWithDrawDeposit", xcol32, gapY);
            ic.setControlC1TextBox(ref txtWithDrawDeposit, fEdit, "txtWithDrawDeposit", 120, xCol4, gapY);

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtWithDrawName, fEdit, "Name :", "lbtxtWithDrawName", gapX, gapY);
            ic.setControlC1TextBox(ref txtWithDrawName, fEdit, "txtWithDrawName", 400, xCol20, gapY);
            //gapY += gapLine;
            ic.setControlLabel(ref lbtxtWithDrawAmt, fEdit, "Amount :", "lbtxtWithDrawAmt", xcol32, gapY);
            ic.setControlC1TextBox(ref txtWithDrawAmt, fEdit, "txtWithDrawAmt", 120, xCol4, gapY);

            //ic.setControlRadioBox(ref chkWithDrawActive, fEdit, "Active", "chkActive", xCol4, gapY);
            //ic.setControlRadioBox(ref chkWithDrawUnActive, fEdit, "UnActive", "chkUnActive", chkActive.Location.X + 80, gapY);

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtWithDrawRemark, fEdit, "Remark :", "lbtxtWithDrawRemark", gapX, gapY);
            ic.setControlC1TextBox(ref txtWithDrawRemark, fEdit, "txtWithDrawRemark", 400, xCol20, gapY);
            //gapY += gapLine;
            ic.setControlLabel(ref lbtxtWithDrawAmount, fEdit, "WithDraw :", "lbtxtWithDrawAmount", xcol32, gapY);
            size = ic.MeasureString(lbtxtWithDrawAmount);
            ic.setControlC1TextBox(ref txtWithDrawAmount, fEdit, "txtWithDrawAmount", 120, xCol4, gapY);
            txtWithDrawAmount.NumericInput = true;
            txtWithDrawAmount.DataType     = typeof(decimal);
            gapY += gapLine;
            ic.setControlLabel(ref lbcboPackageHn, fEdit, "Package :", "lbcboPackageHn", gapX, gapY);
            ic.setControlC1ComboBox(ref cboPackageHn, fEdit, "cboPackageHn", 500, xCol2, gapY);

            grfWithDraw            = new C1FlexGrid();
            grfWithDraw.Name       = "grfWithDraw";
            grfWithDraw.Font       = fEdit;
            grfWithDraw.Dock       = System.Windows.Forms.DockStyle.Bottom;
            grfWithDraw.Location   = new System.Drawing.Point(0, 0);
            grfWithDraw.Rows.Count = 1;

            grfDepositHn            = new C1FlexGrid();
            grfDepositHn.Name       = "grfDepositHn";
            grfDepositHn.Font       = fEdit;
            grfDepositHn.Dock       = System.Windows.Forms.DockStyle.None;
            grfDepositHn.Location   = new System.Drawing.Point(0, 0);
            grfDepositHn.Rows.Count = 1;

            tabWithDraw.Controls.Add(grfWithDraw);
            tabWithDraw.Controls.Add(btnWithDrawSave);
            tabWithDraw.Controls.Add(txtWithDrawRemark);
            tabWithDraw.Controls.Add(lbtxtWithDrawRemark);
            tabWithDraw.Controls.Add(txtWithDrawName);
            tabWithDraw.Controls.Add(lbtxtWithDrawName);
            tabWithDraw.Controls.Add(txtWithDrawAmount);
            tabWithDraw.Controls.Add(lbtxtWithDrawAmount);
            tabWithDraw.Controls.Add(btnWithDrawSearch);
            tabWithDraw.Controls.Add(txtWithDrawVn);
            tabWithDraw.Controls.Add(txtWithDrawHn);
            tabWithDraw.Controls.Add(lbtxtWithDrawHn);
            tabWithDraw.Controls.Add(txtWithDrawDate);
            tabWithDraw.Controls.Add(lbtxtWithDrawDate);
            tabWithDraw.Controls.Add(txtWithDrawCode);
            tabWithDraw.Controls.Add(lbtxtWithDrawCode);
            tabWithDraw.Controls.Add(chkWithDrawActive);
            tabWithDraw.Controls.Add(chkWithDrawUnActive);
            tabWithDraw.Controls.Add(grfDepositHn);
            tabWithDraw.Controls.Add(lbtxtWithDrawAmt);
            tabWithDraw.Controls.Add(txtWithDrawAmt);
            tabWithDraw.Controls.Add(lbtxtWithDrawDeposit);
            tabWithDraw.Controls.Add(txtWithDrawDeposit);
            tabWithDraw.Controls.Add(cboPackageHn);
            tabWithDraw.Controls.Add(lbcboPackageHn);
            //theme1.SetTheme(cboPackageHn, ic.iniC.themeApp);
        }
        private void initCompoment()
        {
            int  gapLine = 25, gapX = 20, gapY = 20, xCol2 = 150, xCol1 = 80, xCol3 = 330, xCol4 = 640, xCol5 = 950;
            Size size = new Size();

            tcMain          = new C1DockingTab();
            tcMain.Dock     = System.Windows.Forms.DockStyle.Fill;
            tcMain.Location = new System.Drawing.Point(0, 266);
            tcMain.Name     = "tcMain";
            //tcMain.Size = new System.Drawing.Size(669, 200);
            tcMain.TabIndex    = 0;
            tcMain.TabsSpacing = 5;
            tcMain.ShowCaption = false;

            tabDeposit          = new C1DockingTabPage();
            tabDeposit.Location = new System.Drawing.Point(1, 24);
            //tabScan.Name = "c1DockingTabPage1";
            tabDeposit.Size     = new System.Drawing.Size(667, 175);
            tabDeposit.TabIndex = 0;
            tabDeposit.Text     = "Template Drug";
            tabDeposit.Name     = "tabDeposit";
            tcMain.Controls.Add(tabDeposit);

            lbcboDrugName     = new Label();
            lbtxtRemark       = new Label();
            lbtxtQty          = new Label();
            lbtxtThai         = new Label();
            lbtxtEng          = new Label();
            lbtxtDtrName      = new Label();
            txtRemark         = new C1TextBox();
            txtQty            = new C1TextBox();
            txtThai           = new C1TextBox();
            txtEng            = new C1TextBox();
            txtDtrName        = new C1TextBox();
            cboDrugName       = new C1ComboBox();
            lbcboTempDrugName = new Label();
            txtTempDrugName   = new C1TextBox();
            txtId             = new C1TextBox();
            cboTempDrugName   = new C1ComboBox();

            btnNew  = new C1Button();
            btnSave = new C1Button();

            ic.setControlLabel(ref lbcboTempDrugName, fEdit, "Template Name :", "lbtxtTempDrugName", gapX, gapY);
            //ic.setControlC1TextBox(ref txtTempDrugName, fEdit, "txtTempDrugName", 400, xCol2, gapY);
            ic.setControlC1ComboBox(ref cboTempDrugName, fEdit, "cboTempDrugName", 400, xCol2, gapY);
            gapY += gapLine;
            ic.setControlLabel(ref lbtxtDtrName, fEdit, "Doctor Name :", "lbtxtDtrName", gapX, gapY);
            ic.setControlC1TextBox(ref txtDtrName, fEdit, "txtDtrName", 400, xCol2, gapY);
            gapY += gapLine;
            ic.setControlLabel(ref lbcboDrugName, fEdit, "Drug Name :", "lbcboDrugName", gapX, gapY);
            ic.setControlC1ComboBox(ref cboDrugName, "cboDrugName", 400, xCol2, gapY);
            cboDrugName.Font = fEdit;

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtRemark, fEdit, "Remark :", "lbtxtRemark", gapX, gapY);
            ic.setControlC1TextBox(ref txtRemark, fEdit, "txtRemark", 400, xCol2, gapY);
            ic.setControlC1Button(ref btnNew, fEdit, "New", "btnNew", xCol4, gapY - 10);
            btnNew.Width = 70;

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtThai, fEdit, "Thai :", "lbtxtThai", gapX, gapY);
            ic.setControlC1TextBox(ref txtThai, fEdit, "txtThai", 600, xCol2, gapY);

            gapY += gapLine;
            ic.setControlLabel(ref lbtxtEng, fEdit, "English :", "lbtxtEng", gapX, gapY);
            ic.setControlC1TextBox(ref txtEng, fEdit, "txtEng", 600, xCol2, gapY);


            gapY += gapLine;
            ic.setControlLabel(ref lbtxtQty, fEdit, "QTY :", "lbtxtQty", gapX, gapY);
            ic.setControlC1TextBox(ref txtQty, fEdit, "txtQty", 80, xCol2, gapY);
            txtQty.DataType = typeof(decimal);

            ic.setControlC1Button(ref btnSave, fEdit, "Save", "btnSave", xCol4, gapY);
            btnSave.Width = 70;

            grfDrug            = new C1FlexGrid();
            grfDrug.Name       = "grfDeposit";
            grfDrug.Font       = fEdit;
            grfDrug.Dock       = System.Windows.Forms.DockStyle.Bottom;
            grfDrug.Location   = new System.Drawing.Point(0, 0);
            grfDrug.Rows.Count = 1;
            ContextMenu menuGw = new ContextMenu();

            menuGw.MenuItems.Add("Void Drug", new EventHandler(ContextMenu_void_drug));
            grfDrug.ContextMenu = menuGw;

            tabDeposit.Controls.Add(lbtxtDtrName);
            tabDeposit.Controls.Add(txtDtrName);

            tabDeposit.Controls.Add(lbcboDrugName);
            tabDeposit.Controls.Add(cboDrugName);
            tabDeposit.Controls.Add(lbtxtRemark);
            tabDeposit.Controls.Add(txtRemark);
            tabDeposit.Controls.Add(lbtxtThai);
            tabDeposit.Controls.Add(txtThai);
            tabDeposit.Controls.Add(lbtxtEng);
            tabDeposit.Controls.Add(txtEng);
            tabDeposit.Controls.Add(lbtxtQty);
            tabDeposit.Controls.Add(txtQty);
            tabDeposit.Controls.Add(btnSave);
            tabDeposit.Controls.Add(lbcboTempDrugName);
            tabDeposit.Controls.Add(cboTempDrugName);
            tabDeposit.Controls.Add(btnNew);

            tabDeposit.Controls.Add(grfDrug);

            this.Controls.Add(tcMain);

            theme1.SetTheme(lbcboDrugName, ic.theme);
            theme1.SetTheme(txtEng, ic.theme);


            Action <Control> setTheme = null;

            setTheme = (c) =>
            {
                if (C1.Win.C1Themes.C1ThemeController.IsObjectThemeable(c))
                {
                    this.theme1.SetTheme(c, "Office2010Blue");
                }
                foreach (Control cc in c.Controls)
                {
                    setTheme(cc);
                }
            };
            setTheme(this);
        }
Esempio n. 14
0
        private void setControlComponent()
        {
            int  gapLine = 20, gapX = 20, gapY = 20;
            Size size = new Size();
            int  scrW = Screen.PrimaryScreen.Bounds.Width;

            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));

            txtID          = new C1TextBox();
            txtID.Font     = fEdit;
            txtID.Location = new System.Drawing.Point(gapX, 20);
            txtID.Size     = new Size(120, 20);

            lbTxtCustCode          = new Label();
            lbTxtCustCode.Text     = "รหัส : ";
            lbTxtCustCode.Font     = fEditB;
            lbTxtCustCode.Location = new System.Drawing.Point(gapX, gapLine);
            lbTxtCustCode.AutoSize = true;
            lbTxtCustCode.Name     = "lbTxtCustCode";
            txtCustCode            = new C1TextBox();
            txtCustCode.Font       = fEdit;
            size = ic.MeasureString(lbTxtCustCode);
            txtCustCode.Location = new System.Drawing.Point(lbTxtCustCode.Location.X + size.Width + 5, lbTxtCustCode.Location.Y);
            txtCustCode.Size     = new Size(120, 20);
            txtCustCode.Name     = "txtCustCode";

            gapLine               += gapY;
            lbtxtCusNameT          = new Label();
            lbtxtCusNameT.Text     = "ชื่อ : ";
            lbtxtCusNameT.Font     = fEditB;
            lbtxtCusNameT.Location = new System.Drawing.Point(gapX, gapLine);
            lbtxtCusNameT.AutoSize = true;
            lbtxtCusNameT.Name     = "lbtxtCusNameT";
            txtCusNameT            = new C1TextBox();
            txtCusNameT.Font       = fEdit;
            size = ic.MeasureString(lbtxtCusNameT);
            txtCusNameT.Location = new System.Drawing.Point(lbtxtCusNameT.Location.X + size.Width + 5, lbtxtCusNameT.Location.Y);
            txtCusNameT.Size     = new Size(120, 20);
            txtCusNameT.Name     = "txtCusNameT";

            gapLine               += gapY;
            lbtxtCusNameE          = new Label();
            lbtxtCusNameE.Text     = "Name : ";
            lbtxtCusNameE.Font     = fEditB;
            lbtxtCusNameE.Location = new System.Drawing.Point(gapX, gapLine);
            lbtxtCusNameE.AutoSize = true;
            lbtxtCusNameE.Name     = "lbtxtCusNameE";
            txtCusNameE            = new C1TextBox();
            txtCusNameE.Font       = fEdit;
            size = ic.MeasureString(lbtxtCusNameE);
            txtCusNameE.Location = new System.Drawing.Point(lbtxtCusNameE.Location.X + size.Width + 5, lbtxtCusNameE.Location.Y);
            txtCusNameE.Size     = new Size(120, 20);
            txtCusNameE.Name     = "txtCusNameE";

            gapLine            += gapY;
            lbtxtTaxId          = new Label();
            lbtxtTaxId.Text     = "Name : ";
            lbtxtTaxId.Font     = fEditB;
            lbtxtTaxId.Location = new System.Drawing.Point(gapX, gapLine);
            lbtxtTaxId.AutoSize = true;
            lbtxtTaxId.Name     = "lbtxtTaxId";
            txtTaxId            = new C1TextBox();
            txtTaxId.Font       = fEdit;
            size = ic.MeasureString(lbtxtTaxId);
            txtTaxId.Location = new System.Drawing.Point(lbtxtCusNameE.Location.X + size.Width + 5, lbtxtCusNameE.Location.Y);
            txtTaxId.Size     = new Size(120, 20);
            txtTaxId.Name     = "txtTaxId";

            btnNew      = new C1Button();
            btnNew.Name = "btnLisStart";
            btnNew.Text = "Start";
            btnNew.Font = fEdit;
            //size = bc.MeasureString(btnHnSearch);
            btnNew.Location   = new System.Drawing.Point(txtTaxId.Location.X + txtTaxId.Width + 40, lbtxtCusNameE.Location.Y);
            btnNew.Size       = new Size(60, 80);
            btnNew.Font       = fEdit;
            btnNew.Image      = imgStart;
            btnNew.TextAlign  = ContentAlignment.MiddleRight;
            btnNew.ImageAlign = ContentAlignment.MiddleLeft;

            panel1.Controls.Add(txtID);
            panel1.Controls.Add(lbTxtCustCode);
            panel1.Controls.Add(txtCustCode);
            panel1.Controls.Add(lbtxtCusNameT);
            panel1.Controls.Add(txtCusNameT);
            panel1.Controls.Add(lbtxtCusNameE);
            panel1.Controls.Add(txtCusNameE);
            panel1.Controls.Add(lbtxtTaxId);
            panel1.Controls.Add(txtTaxId);
            panel1.Controls.Add(btnNew);
            panel1.Controls.Add(txtID);
            panel1.Controls.Add(txtID);
        }
Esempio n. 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSearch));
     this._grid          = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.gbBottomSearch = new System.Windows.Forms.GroupBox();
     this.label1         = new System.Windows.Forms.Label();
     this.btCloseSearch  = new C1.Win.C1Input.C1Button();
     this.panel1         = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this._grid)).BeginInit();
     this.gbBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // _grid
     //
     this._grid.AllowRowSizing    = C1.Win.C1TrueDBGrid.RowSizingEnum.None;
     this._grid.AllowUpdate       = false;
     this._grid.AllowUpdateOnBlur = false;
     this._grid.AlternatingRows   = true;
     this._grid.BackColor         = System.Drawing.SystemColors.AppWorkspace;
     this._grid.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this._grid.Caption           = "Daftar XXXXXX";
     this._grid.CaptionHeight     = 17;
     this._grid.Dock              = System.Windows.Forms.DockStyle.Fill;
     this._grid.ExpandColor       = System.Drawing.Color.MediumBlue;
     this._grid.ExtendRightColumn = true;
     this._grid.FilterBar         = true;
     this._grid.GroupByCaption    = "Drag a column header here to group by that column";
     this._grid.Images.Add(((System.Drawing.Image)(resources.GetObject("_grid.Images"))));
     this._grid.Location               = new System.Drawing.Point(0, 0);
     this._grid.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightRow;
     this._grid.MultiSelect            = C1.Win.C1TrueDBGrid.MultiSelectEnum.None;
     this._grid.Name                   = "_grid";
     this._grid.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this._grid.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this._grid.PreviewInfo.ZoomFactor = 75;
     this._grid.RecordSelectors        = false;
     this._grid.RowHeight              = 15;
     this._grid.Size                   = new System.Drawing.Size(590, 402);
     this._grid.TabIndex               = 0;
     this._grid.Text                   = "c1TrueDBGrid1";
     this._grid.VisualStyle            = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this._grid.DoubleClick           += new System.EventHandler(this._grid_DoubleClick);
     this._grid.KeyPress              += new System.Windows.Forms.KeyPressEventHandler(this._grid_KeyPress);
     this._grid.PropBag                = resources.GetString("_grid.PropBag");
     //
     // gbBottomSearch
     //
     this.gbBottomSearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(242)))), ((int)(((byte)(251)))));
     this.gbBottomSearch.Controls.Add(this.label1);
     this.gbBottomSearch.Controls.Add(this.btCloseSearch);
     this.gbBottomSearch.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gbBottomSearch.Location = new System.Drawing.Point(0, 402);
     this.gbBottomSearch.Name     = "gbBottomSearch";
     this.gbBottomSearch.Size     = new System.Drawing.Size(590, 42);
     this.gbBottomSearch.TabIndex = 1;
     this.gbBottomSearch.TabStop  = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(20, 18);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(221, 13);
     this.label1.TabIndex = 3;
     this.label1.Text     = "*) Double click an itemto make your selection";
     //
     // btCloseSearch
     //
     this.btCloseSearch.Location = new System.Drawing.Point(496, 12);
     this.btCloseSearch.Name     = "btCloseSearch";
     this.btCloseSearch.Size     = new System.Drawing.Size(80, 24);
     this.btCloseSearch.TabIndex = 2;
     this.btCloseSearch.Text     = "&Close";
     this.btCloseSearch.UseVisualStyleBackColor = true;
     this.btCloseSearch.Click += new System.EventHandler(this.btCloseSearch_Click);
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this._grid);
     this.panel1.Controls.Add(this.gbBottomSearch);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(592, 446);
     this.panel1.TabIndex = 0;
     //
     // frmSearch
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(592, 446);
     this.Controls.Add(this.panel1);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmSearch";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Template Search";
     ((System.ComponentModel.ISupportInitialize)(this._grid)).EndInit();
     this.gbBottomSearch.ResumeLayout(false);
     this.gbBottomSearch.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 16
0
        private void InitComponent()
        {
            int  gapY = 30, gapX = 20, gapLine = 5, gapColName = 70;
            Size size = new Size();

            theme1       = new C1ThemeController();
            theme1.Theme = ic.iniC.themeApplication;
            pnTop        = new Panel();
            pnTop.Dock   = DockStyle.Top;
            pnTop.Size   = new Size(20, 60);
            pnBody       = new Panel();
            pnBody.Dock  = DockStyle.Fill;
            pnTop.SuspendLayout();
            pnBody.SuspendLayout();

            lbYear                     = new Label();
            lbYear.Text                = "Year :";
            lbYear.Font                = fEdit;
            lbYear.Location            = new System.Drawing.Point(gapX, gapLine);
            lbYear.AutoSize            = true;
            lbYear.Name                = "lbYear";
            size                       = ic.MeasureString(lbYear);
            cboYear                    = new C1ComboBox();
            cboYear.AllowSpinLoop      = false;
            cboYear.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
            cboYear.Font               = fEdit;
            cboYear.GapHeight          = 0;
            cboYear.ImagePadding       = new System.Windows.Forms.Padding(0);
            cboYear.ItemsDisplayMember = "";
            cboYear.ItemsValueMember   = "";
            cboYear.Location           = new System.Drawing.Point(size.Width + 20, lbYear.Location.Y);
            cboYear.Name               = "cboYear";
            cboYear.Size               = new System.Drawing.Size(184, 20);
            cboYear.TabIndex           = 562;
            cboYear.Tag                = null;
            theme1.SetTheme(cboYear, "(default)");
            cboYear.VisualStyle          = C1.Win.C1Input.VisualStyle.Office2007Blue;
            cboYear.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2007Blue;
            cboYear.Location             = new Point(gapColName, lbYear.Location.Y);

            lbStkSubName                     = new Label();
            lbStkSubName.Text                = "รับเข้า :";
            lbStkSubName.Font                = fEdit;
            lbStkSubName.Location            = new System.Drawing.Point(gapX, lbYear.Location.Y);
            lbStkSubName.AutoSize            = true;
            lbStkSubName.Name                = "lbStkSubName";
            cboStkSubName                    = new C1ComboBox();
            cboStkSubName.AllowSpinLoop      = false;
            cboStkSubName.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
            cboYear.Font                     = fEdit;
            cboStkSubName.GapHeight          = 0;
            cboStkSubName.ImagePadding       = new System.Windows.Forms.Padding(0);
            cboStkSubName.ItemsDisplayMember = "";
            cboStkSubName.ItemsValueMember   = "";
            cboStkSubName.Location           = new System.Drawing.Point(662, lbStkSubName.Location.Y);
            cboStkSubName.Name               = "cboStkSubName";
            cboStkSubName.Size               = new System.Drawing.Size(400, 20);
            cboStkSubName.TabIndex           = 562;
            cboStkSubName.Tag                = null;
            theme1.SetTheme(cboStkSubName, "(default)");
            cboStkSubName.VisualStyle          = C1.Win.C1Input.VisualStyle.Office2007Blue;
            cboStkSubName.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2007Blue;
            cboStkSubName.Location             = new Point(gapColName, lbStkSubName.Location.Y);

            btnNew          = new C1Button();
            btnNew.Name     = "btnNew";
            btnNew.Text     = "ป้อนรับเข้า";
            btnNew.Font     = this.fEdit;
            size            = ic.MeasureString(btnNew);
            btnNew.Size     = new Size(60, 40);
            btnNew.Location = new Point(pnBody.Width - size.Width - 40, lbStkSubName.Location.Y);
            btnNew.Click   += BtnNew_Click;

            pnTop.Controls.Add(lbYear);
            pnTop.Controls.Add(cboYear);
            pnTop.Controls.Add(lbStkSubName);
            pnTop.Controls.Add(cboStkSubName);
            pnTop.Controls.Add(btnNew);
            this.Controls.Add(pnBody);
            this.Controls.Add(pnTop);
            theme1.SetTheme(pnBody, ic.iniC.themeApp);
            theme1.SetTheme(pnTop, "Office2010Red");
            pnTop.ResumeLayout(false);
            pnBody.ResumeLayout(false);
            pnBody.PerformLayout();
            pnTop.PerformLayout();
        }
Esempio n. 17
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSearch));
            this._grid = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
            this.gbBottomSearch = new System.Windows.Forms.GroupBox();
            this.label1 = new System.Windows.Forms.Label();
            this.btCloseSearch = new C1.Win.C1Input.C1Button();
            this.panel1 = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this._grid)).BeginInit();
            this.gbBottomSearch.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // _grid
            // 
            this._grid.AllowRowSizing = C1.Win.C1TrueDBGrid.RowSizingEnum.None;
            this._grid.AllowUpdate = false;
            this._grid.AllowUpdateOnBlur = false;
            this._grid.AlternatingRows = true;
            this._grid.BackColor = System.Drawing.SystemColors.AppWorkspace;
            this._grid.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this._grid.Caption = "Daftar XXXXXX";
            this._grid.CaptionHeight = 17;
            this._grid.Dock = System.Windows.Forms.DockStyle.Fill;
            this._grid.ExpandColor = System.Drawing.Color.MediumBlue;
            this._grid.ExtendRightColumn = true;
            this._grid.FilterBar = true;
            this._grid.GroupByCaption = "Drag a column header here to group by that column";
            this._grid.Images.Add(((System.Drawing.Image)(resources.GetObject("_grid.Images"))));
            this._grid.Location = new System.Drawing.Point(0, 0);
            this._grid.MarqueeStyle = C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightRow;
            this._grid.MultiSelect = C1.Win.C1TrueDBGrid.MultiSelectEnum.None;
            this._grid.Name = "_grid";
            this._grid.PreviewInfo.Location = new System.Drawing.Point(0, 0);
            this._grid.PreviewInfo.Size = new System.Drawing.Size(0, 0);
            this._grid.PreviewInfo.ZoomFactor = 75;
            this._grid.RecordSelectors = false;
            this._grid.RowHeight = 15;
            this._grid.Size = new System.Drawing.Size(590, 402);
            this._grid.TabIndex = 0;
            this._grid.Text = "c1TrueDBGrid1";
            this._grid.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
            this._grid.DoubleClick += new System.EventHandler(this._grid_DoubleClick);
            this._grid.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this._grid_KeyPress);
            this._grid.PropBag = resources.GetString("_grid.PropBag");
            // 
            // gbBottomSearch
            // 
            this.gbBottomSearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(242)))), ((int)(((byte)(251)))));
            this.gbBottomSearch.Controls.Add(this.label1);
            this.gbBottomSearch.Controls.Add(this.btCloseSearch);
            this.gbBottomSearch.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.gbBottomSearch.Location = new System.Drawing.Point(0, 402);
            this.gbBottomSearch.Name = "gbBottomSearch";
            this.gbBottomSearch.Size = new System.Drawing.Size(590, 42);
            this.gbBottomSearch.TabIndex = 1;
            this.gbBottomSearch.TabStop = false;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(20, 18);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(221, 13);
            this.label1.TabIndex = 3;
            this.label1.Text = "*) Double click an itemto make your selection";
            // 
            // btCloseSearch
            // 
            this.btCloseSearch.Location = new System.Drawing.Point(496, 12);
            this.btCloseSearch.Name = "btCloseSearch";
            this.btCloseSearch.Size = new System.Drawing.Size(80, 24);
            this.btCloseSearch.TabIndex = 2;
            this.btCloseSearch.Text = "&Close";
            this.btCloseSearch.UseVisualStyleBackColor = true;
            this.btCloseSearch.Click += new System.EventHandler(this.btCloseSearch_Click);
            // 
            // panel1
            // 
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(this._grid);
            this.panel1.Controls.Add(this.gbBottomSearch);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(592, 446);
            this.panel1.TabIndex = 0;
            // 
            // frmSearch
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(592, 446);
            this.Controls.Add(this.panel1);
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frmSearch";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Template Search";
            ((System.ComponentModel.ISupportInitialize)(this._grid)).EndInit();
            this.gbBottomSearch.ResumeLayout(false);
            this.gbBottomSearch.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Esempio n. 18
0
        private void initCompoment()
        {
            int  gapLine = 25, gapX = 20, gapY = 20, xCol2 = 130, xCol1 = 80, xCol3 = 330, xCol4 = 640, xCol5 = 950;
            Size size = new Size();

            tcMain             = new C1DockingTab();
            tcMain.Dock        = System.Windows.Forms.DockStyle.Fill;
            tcMain.Location    = new System.Drawing.Point(0, 266);
            tcMain.Name        = "tcMain";
            tcMain.Size        = new System.Drawing.Size(669, 200);
            tcMain.TabIndex    = 0;
            tcMain.TabsSpacing = 5;

            tabImportDf      = new C1DockingTabPage();
            tabImportDf.Dock = System.Windows.Forms.DockStyle.Fill;
            tabImportDf.Name = "tabImportDf";
            tabImportDf.Text = "Import Item DF";

            grfSelect            = new C1FlexGrid();
            grfSelect.Font       = fEdit;
            grfSelect.Dock       = System.Windows.Forms.DockStyle.Bottom;
            grfSelect.Location   = new System.Drawing.Point(0, 0);
            grfSelect.Rows.Count = 1;

            lbDateStart       = new Label();
            txtDateStart      = new C1DateEdit();
            lbDateEnd         = new Label();
            txtDateEnd        = new C1DateEdit();
            lbtxtPaidType     = new Label();
            txtPaidType       = new C1TextBox();
            btnImportDfSelect = new C1Button();
            btnImportDfGen    = new C1Button();

            lbLoading           = new Label();
            lbLoading.Font      = fEdit5B;
            lbLoading.BackColor = Color.WhiteSmoke;
            lbLoading.ForeColor = Color.Black;
            lbLoading.AutoSize  = false;
            lbLoading.Size      = new Size(300, 60);

            bc.setControlLabel(ref lbDateStart, fEdit, "วันที่เริ่มต้น :", "lbDateStart", gapX, gapY);
            size = bc.MeasureString(lbDateStart);
            bc.setControlC1DateTimeEdit(ref txtDateStart, "txtDateStart", lbDateStart.Location.X + size.Width + 5, gapY);
            size = bc.MeasureString(lbDateStart);
            //bc.setControlC1DateTimeEdit(ref txtDateStart, "txtDateStart", lbDateStart.Location.X + size.Width + 5, gapY);
            bc.setControlLabel(ref lbDateEnd, fEdit, "วันที่สิ้นสุด :", "lbDateEnd", txtDateStart.Location.X + txtDateStart.Width + 15, gapY);
            size = bc.MeasureString(lbDateEnd);
            bc.setControlC1DateTimeEdit(ref txtDateEnd, "txtDateEnd", lbDateEnd.Location.X + size.Width + 5, gapY);

            bc.setControlLabel(ref lbtxtPaidType, fEdit, "สิทธิ (xx,...) :", "lbtxtPaidType", txtDateEnd.Location.X + txtDateEnd.Width + 15, gapY);
            size = bc.MeasureString(lbtxtPaidType);
            bc.setControlC1TextBox(ref txtPaidType, fEdit, "txtPaidType", 120, lbtxtPaidType.Location.X + size.Width + 5, gapY);

            bc.setControlC1Button(ref btnImportDfSelect, fEdit, "ดึงข้อมูล", "btnSelect", txtPaidType.Location.X + txtPaidType.Width + 20, gapY);
            btnImportDfSelect.Width = 70;
            bc.setControlC1Button(ref btnImportDfGen, fEdit, "gen Text", "btnGen", btnImportDfSelect.Location.X + btnImportDfSelect.Width + 20, gapY);
            btnImportDfGen.Width = 80;

            tabImportDf.Controls.Add(grfSelect);
            theme1.SetTheme(grfSelect, "Office2010Red");

            tabImportDf.Controls.Add(lbDateStart);
            tabImportDf.Controls.Add(txtDateStart);
            tabImportDf.Controls.Add(lbDateEnd);
            tabImportDf.Controls.Add(txtDateEnd);
            tabImportDf.Controls.Add(lbtxtPaidType);
            tabImportDf.Controls.Add(txtPaidType);
            tabImportDf.Controls.Add(btnImportDfSelect);
            tabImportDf.Controls.Add(btnImportDfGen);

            tcMain.Controls.Add(tabImportDf);
            this.Controls.Add(lbLoading);
            this.Controls.Add(tcMain);
        }
Esempio n. 19
0
        private void setControlComponent()
        {
            //new LogWriter("d", "FrmDoctorView setControlComponent 00 ");
            int  gapLine = 10, gapX = 20;
            Size size = new Size();
            int  scrW = Screen.PrimaryScreen.Bounds.Width;

            lbDtrName          = new Label();
            lbDtrName.Text     = "...";
            lbDtrName.Font     = fEditBig;
            lbDtrName.Location = new System.Drawing.Point(gapX, 5);
            lbDtrName.AutoSize = true;
            lbDtrName.Name     = "lbDtrName";

            lbTxtPttHn          = new Label();
            lbTxtPttHn.Text     = "HN :";
            lbTxtPttHn.Font     = fEditBig;
            size                = bc.MeasureString(lbTxtPttHn);
            lbTxtPttHn.Location = new System.Drawing.Point(((scrW / 2) - size.Width) - 60, lbDtrName.Location.Y);
            lbTxtPttHn.AutoSize = true;
            lbTxtPttHn.Name     = "lbTxtPttHn";
            //lbDtrName.SuspendLayout();
            //lbTxtPttHn.SuspendLayout();

            txtPttHn          = new C1TextBox();
            txtPttHn.Font     = fEditBig;
            txtPttHn.Location = new System.Drawing.Point(lbTxtPttHn.Location.X + size.Width + 5, lbTxtPttHn.Location.Y);
            txtPttHn.Size     = new Size(120, 20);

            btnHnSearch      = new C1Button();
            btnHnSearch.Name = "btnHnSearch";
            btnHnSearch.Text = "...";
            btnHnSearch.Font = fEdit;
            //size = bc.MeasureString(btnHnSearch);
            btnHnSearch.Location = new System.Drawing.Point(txtPttHn.Location.X + txtPttHn.Width + 5, lbTxtPttHn.Location.Y);
            btnHnSearch.Size     = new Size(30, lbTxtPttHn.Height);
            btnHnSearch.Font     = fEdit;

            //lbPttName = new Label();
            //lbPttName.Text = "...";
            //lbPttName.Font = fEditBig;
            //lbPttName.Location = new System.Drawing.Point(btnHnSearch.Location.X + btnHnSearch.Width + 10, lbTxtPttHn.Location.Y);
            //lbPttName.AutoSize = true;
            //lbPttName.Name = "lbPttName";

            txtDate = new C1DateEdit();
            txtDate.AllowSpinLoop                 = false;
            txtDate.BorderStyle                   = System.Windows.Forms.BorderStyle.FixedSingle;
            txtDate.Calendar.Font                 = new System.Drawing.Font("Tahoma", 8F);
            txtDate.Calendar.VisualStyle          = C1.Win.C1Input.VisualStyle.Office2007Blue;
            txtDate.Calendar.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2007Blue;
            txtDate.CurrentTimeZone               = false;
            txtDate.DisplayFormat.CustomFormat    = "dd/MM/yyyy";
            txtDate.DisplayFormat.FormatType      = FormatTypeEnum.CustomFormat;
            txtDate.FormatType            = C1.Win.C1Input.FormatTypeEnum.CustomFormat;
            txtDate.DisplayFormat.Inherit = ((C1.Win.C1Input.FormatInfoInheritFlags)(((((C1.Win.C1Input.FormatInfoInheritFlags.NullText | C1.Win.C1Input.FormatInfoInheritFlags.EmptyAsNull)
                                                                                        | C1.Win.C1Input.FormatInfoInheritFlags.TrimStart)
                                                                                       | C1.Win.C1Input.FormatInfoInheritFlags.TrimEnd)
                                                                                      | C1.Win.C1Input.FormatInfoInheritFlags.CalendarType)));
            txtDate.EditFormat.CustomFormat = "dd/MM/yyyy";
            txtDate.EditFormat.FormatType   = C1.Win.C1Input.FormatTypeEnum.CustomFormat;
            txtDate.EditFormat.Inherit      = ((C1.Win.C1Input.FormatInfoInheritFlags)(((((C1.Win.C1Input.FormatInfoInheritFlags.NullText | C1.Win.C1Input.FormatInfoInheritFlags.EmptyAsNull)
                                                                                          | C1.Win.C1Input.FormatInfoInheritFlags.TrimStart)
                                                                                         | C1.Win.C1Input.FormatInfoInheritFlags.TrimEnd)
                                                                                        | C1.Win.C1Input.FormatInfoInheritFlags.CalendarType)));
            txtDate.Font         = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            txtDate.GMTOffset    = System.TimeSpan.Parse("00:00:00");
            txtDate.ImagePadding = new System.Windows.Forms.Padding(0);
            //size = bc.MeasureString(lbtxtDateStart);
            txtDate.Location = new System.Drawing.Point(scrW - txtDate.Width + 5, lbTxtPttHn.Location.Y);
            txtDate.Name     = "txtDateStart";
            txtDate.Size     = new System.Drawing.Size(111, 20);
            txtDate.TabIndex = 12;
            txtDate.Tag      = null;
            //theme1.SetTheme(this.txtDate, "(default)");
            txtDate.VisualStyle          = C1.Win.C1Input.VisualStyle.Office2007Blue;
            txtDate.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2007Blue;
            lbTxtDate          = new Label();
            lbTxtDate.Text     = "Date :";
            lbTxtDate.Font     = fEdit;
            size               = bc.MeasureString(lbTxtDate);
            lbTxtDate.Location = new System.Drawing.Point(txtDate.Location.X - size.Width - 5, lbTxtPttHn.Location.Y);
            lbTxtDate.AutoSize = true;
            lbTxtDate.Name     = "lbTxtPttHn";
            //new LogWriter("d", "FrmDoctorView setControlComponent End ");
        }
Esempio n. 20
0
        private void InitComponent()
        {
            int  gapY = 30, gapX = 20, gapLine = 5, gapColName = 70;
            Size size = new Size();

            theme1       = new C1ThemeController();
            theme1.Theme = ic.iniC.themeApplication;
            pnTop        = new Panel();
            pnTop.Dock   = DockStyle.Top;
            pnTop.Size   = new Size(20, 60);
            pnBody       = new Panel();
            pnBody.Dock  = DockStyle.Fill;
            pnTop.SuspendLayout();
            pnBody.SuspendLayout();
            this.SuspendLayout();

            lbYear                     = new Label();
            lbYear.Text                = "Year :";
            lbYear.Font                = fEdit;
            lbYear.Location            = new System.Drawing.Point(gapX, gapLine);
            lbYear.AutoSize            = true;
            lbYear.Name                = "lbYear";
            size                       = ic.MeasureString(lbYear);
            cboYear                    = new C1ComboBox();
            cboYear.AllowSpinLoop      = false;
            cboYear.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
            cboYear.Font               = fEdit;
            cboYear.GapHeight          = 0;
            cboYear.ImagePadding       = new System.Windows.Forms.Padding(0);
            cboYear.ItemsDisplayMember = "";
            cboYear.ItemsValueMember   = "";
            cboYear.Location           = new System.Drawing.Point(size.Width + 20, lbYear.Location.Y);
            cboYear.Name               = "cboYear";
            cboYear.Size               = new System.Drawing.Size(184, 20);
            cboYear.TabIndex           = 562;
            cboYear.Tag                = null;
            theme1.SetTheme(cboYear, "(default)");
            cboYear.VisualStyle          = C1.Win.C1Input.VisualStyle.Office2007Blue;
            cboYear.VisualStyleBaseStyle = C1.Win.C1Input.VisualStyle.Office2007Blue;
            cboYear.Location             = new Point(gapColName, lbYear.Location.Y);

            btnNew          = new C1Button();
            btnNew.Name     = "btnNew";
            btnNew.Text     = "New 2019";
            btnNew.Font     = this.fEdit;
            size            = ic.MeasureString(btnNew);
            btnNew.Size     = new Size(100, 40);
            btnNew.Location = new Point(cboYear.Location.X + cboYear.Width + 40, lbYear.Location.Y);
            btnNew.Click   += BtnNew_Click;

            btnSave          = new C1Button();
            btnSave.Name     = "btnSave";
            btnSave.Text     = "Save 2019";
            btnSave.Font     = this.fEdit;
            size             = ic.MeasureString(btnSave);
            btnSave.Size     = new Size(100, 40);
            btnSave.Location = new Point(btnNew.Location.X + btnNew.Width + 40, lbYear.Location.Y);
            btnSave.Click   += BtnSave_Click;

            tC1                   = new C1DockingTab();
            tC1.Dock              = System.Windows.Forms.DockStyle.Fill;
            tC1.HotTrack          = true;
            tC1.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
            tC1.TabSizeMode       = C1.Win.C1Command.TabSizeModeEnum.Fit;
            tC1.TabsShowFocusCues = true;
            tC1.Alignment         = TabAlignment.Top;
            tC1.SelectedTabBold   = true;
            tC1.Name              = "tC1";
            tC1.CanCloseTabs      = true;

            tab2019 = new C1DockingTabPage();
            tC1.SuspendLayout();
            tab2019.SuspendLayout();

            tab2019.Name     = "tabOnhand";
            tab2019.TabIndex = 0;
            tab2019.Text     = "Onhand";
            theme1.SetTheme(tC1, ic.theme);

            pnTop.Controls.Add(lbYear);
            pnTop.Controls.Add(cboYear);
            pnTop.Controls.Add(lbStkSubName);
            //pnTop.Controls.Add(cboStkSubName);
            pnTop.Controls.Add(btnNew);
            pnTop.Controls.Add(btnSave);
            this.Controls.Add(pnBody);
            this.Controls.Add(pnTop);
            tC1.Controls.Add(tab2019);
            pnBody.Controls.Add(tC1);
            theme1.SetTheme(pnBody, ic.iniC.themeApp);
            theme1.SetTheme(pnTop, "Office2010Red");

            pnTop.ResumeLayout(false);
            pnBody.ResumeLayout(false);
            tC1.ResumeLayout(false);
            tab2019.ResumeLayout(false);
            this.ResumeLayout(false);
            pnBody.PerformLayout();
            pnTop.PerformLayout();
            tC1.PerformLayout();
            tab2019.PerformLayout();
            this.PerformLayout();
        }