コード例 #1
0
ファイル: JanusSetting.cs プロジェクト: Riall-Eris/ErisRepo
        public static void GridSetting(Janus.Windows.GridEX.GridEX jg, bool filterRow, bool totalRow)
        {
            jg.Font = new Font("Tahoma", 8, FontStyle.Regular);
            jg.FilterRowFormatStyle.BackColor      = Color.LightSkyBlue;
            jg.AlternatingRowFormatStyle.BackColor = Color.Honeydew;
            jg.AlternatingColors = true;
            //jg.RootTable.HeaderLines = 1;
            jg.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            jg.HeaderFormatStyle.BackColor = Color.DarkSalmon;
            jg.RightToLeft         = System.Windows.Forms.RightToLeft.Yes;
            jg.RecordNavigatorText = "تعداد|از";
            jg.RowHeaderContent    = RowHeaderContent.RowIndex;
            if (filterRow == true)
            {
                jg.FilterMode          = Janus.Windows.GridEX.FilterMode.Automatic;
                jg.FilterRowUpdateMode = FilterRowUpdateMode.WhenValueChanges;
            }
            else
            {
                jg.FilterMode = Janus.Windows.GridEX.FilterMode.None;
            }

            if (totalRow == true)
            {
                jg.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            }
            else
            {
                jg.TotalRow = Janus.Windows.GridEX.InheritableBoolean.False;
            }
            jg.TotalRowPosition = TotalRowPosition.BottomFixed;
        }
コード例 #2
0
ファイル: frmShowFields.cs プロジェクト: mwilian/demos
		public DialogResult ShowDialog(Janus.Windows.GridEX.GridEX grid, Form parent)
		{
			GridEXColumn column = null;
			int i = 0;
			this.lbAvail.DisplayMember = "Caption";
			this.lbVisible.DisplayMember = "Caption";

            for (i = 0; i < grid.RootTable.Columns.Count; i++)
			{
				column = grid.RootTable.Columns.GetColumnInPosition(i);
				if (column.ShowInFieldChooser)
				{
					if (column.Visible)
					{
						AddVisibleField(column, false);
					}
					else
					{
						AddAvailableField(column, false);
					}
				}
			}
			FillAvailableList();
			FillVisibleList();
			return this.ShowDialog(parent);
		}
コード例 #3
0
        public void ShowDialog(Janus.Windows.GridEX.GridEX gridEx, System.Windows.Forms.Form parentForm)
        {
            mGridEX = gridEx;
            this.PopulateCombos();

            tempConditions = new System.Collections.ArrayList();
            foreach (GridEXFormatCondition cond in this.mGridEX.RootTable.FormatConditions)
            {
                GridEXFormatCondition cloneCond = cond.Clone();
                tempConditions.Add(cloneCond);
            }

            this.jsgConditions.RootTable.Columns["clmName"].DataMember = "Key";
            this.jsgConditions.RootTable.Columns["clmEnabled"].DataMember = "Enabled";
            this.jsgConditions.SetDataBinding(tempConditions, "");
            OnActiveConditionChanged();
            this.ShowDialog(parentForm);
        }
コード例 #4
0
 private void KetXuatBienBan(Janus.Windows.GridEX.GridEX parGridBaoCaoGiaiQuyet)
 {
     try
     {
         //1. Lay du lieu cho BaoCao
         DataTable dtFile = (DataTable)parGridBaoCaoGiaiQuyet.DataSource;
         DataSet   ds     = new DataSet();
         ds.Tables.Add(dtFile.Copy());
         //2. Truyen du lieu di
         if (parGridBaoCaoGiaiQuyet.SelectedItems.Count > 0)
         {
             int rowIndex            = ((GridEXSelectedItem)parGridBaoCaoGiaiQuyet.SelectedItems[0]).Position;
             int reportType          = ConstParam.GiaiQuyetPhanAnh;
             frmPreviewReport frmPre = new frmPreviewReport(ds, reportType, rowIndex);
             frmPre.ShowDialog();
         }
     }
     catch (Exception ex)
     {
     }
 }
コード例 #5
0
ファイル: JanusSetting.cs プロジェクト: Riall-Eris/ErisRepo
        public static void GridSetting(Janus.Windows.GridEX.GridEX jg, int headerLines)
        {
            jg.Font = new Font("IRAN-sans", 8, FontStyle.Regular);

            jg.FilterRowFormatStyle.BackColor      = Color.DarkSalmon;
            jg.AlternatingRowFormatStyle.BackColor = Color.Wheat;
            jg.AlternatingColors           = true;
            jg.RootTable.HeaderLines       = headerLines;
            jg.VisualStyle                 = Janus.Windows.GridEX.VisualStyle.Office2003;
            jg.HeaderFormatStyle.BackColor = Color.DarkSalmon;
            jg.RightToLeft                 = System.Windows.Forms.RightToLeft.Yes;
            jg.RecordNavigatorText         = "تعداد|از";

            int i = 0;

            for (i = 0; i <= jg.RootTable.Columns.Count - 1; i++)
            {
                if (jg.RootTable.Columns[i].DataTypeCode == TypeCode.Int32 || jg.RootTable.Columns[i].DataTypeCode == TypeCode.Int64)
                {
                    jg.RootTable.Columns[i].FormatString      = "#,###";
                    jg.RootTable.Columns[i].TotalFormatString = "#,###";
                }
            }
        }
コード例 #6
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmRegistrarNumerosDeSerie));
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl6 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.gridEXDetalle     = new Janus.Windows.GridEX.GridEX();
     this.panel1            = new System.Windows.Forms.Panel();
     this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.toolBarStandar    = new System.Windows.Forms.ToolBar();
     this.tbbAnterior       = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator      = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente      = new System.Windows.Forms.ToolBarButton();
     this.imglStandar       = new System.Windows.Forms.ImageList(this.components);
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     this.ultraExplorerBarContainerControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEXDetalle)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 24);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(807, 24);
     this.ultraExplorerBarContainerControl2.TabIndex = 9;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(807, 23);
     this.labelTarea.TabIndex  = 1;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl6
     //
     this.ultraExplorerBarContainerControl6.Controls.Add(this.gridEXDetalle);
     this.ultraExplorerBarContainerControl6.Location = new System.Drawing.Point(28, 107);
     this.ultraExplorerBarContainerControl6.Name     = "ultraExplorerBarContainerControl6";
     this.ultraExplorerBarContainerControl6.Size     = new System.Drawing.Size(807, 373);
     this.ultraExplorerBarContainerControl6.TabIndex = 8;
     //
     // gridEXDetalle
     //
     this.gridEXDetalle.AllowDelete      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.gridEXDetalle.AllowEdit        = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridEXDetalle.ContinuousScroll = false;
     this.gridEXDetalle.Cursor           = System.Windows.Forms.Cursors.Default;
     this.gridEXDetalle.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.gridEXDetalle.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEXDetalle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridEXDetalle.GroupByBoxVisible  = false;
     this.gridEXDetalle.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEXDetalle.Location           = new System.Drawing.Point(0, 0);
     this.gridEXDetalle.Name     = "gridEXDetalle";
     this.gridEXDetalle.Size     = new System.Drawing.Size(807, 373);
     this.gridEXDetalle.TabIndex = 2;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ultraExplorerBar1);
     this.panel1.Controls.Add(this.toolBarStandar);
     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(856, 534);
     this.panel1.TabIndex = 0;
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl6);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 24;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl6;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 373;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text = "Productos";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2
     });
     this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 28);
     this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size     = new System.Drawing.Size(856, 506);
     this.ultraExplorerBar1.TabIndex = 21;
     this.ultraExplorerBar1.TabStop  = false;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(856, 28);
     this.toolBarStandar.TabIndex       = 20;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     this.toolBarStandar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarStandar_ButtonClick_1);
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // FrmRegistrarNumerosDeSerie
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(856, 534);
     this.Controls.Add(this.panel1);
     this.Name = "FrmRegistrarNumerosDeSerie";
     this.Text = "FrmRegistrarNumerosDeSerie";
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     this.ultraExplorerBarContainerControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEXDetalle)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #7
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Janus.Windows.GridEX.GridEXLayout gridEXLayout1 = new Janus.Windows.GridEX.GridEXLayout();
            this.getFeatureHistoryEditBox = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.getFeatureHistoryButton = new System.Windows.Forms.Button();
            this.showBlame = new System.Windows.Forms.Button();
            this.copyForExcelButton = new System.Windows.Forms.Button();
            this.diffButton = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.errorProvider1 = new System.Windows.Forms.ErrorProvider( this.components );
            this.versionGrid = new Janus.Windows.GridEX.GridEX();
            this.gridContextMenu = new System.Windows.Forms.ContextMenu();
            this.diffContextMenuItem = new System.Windows.Forms.MenuItem();
            this.viewContextMenuItem = new System.Windows.Forms.MenuItem();
            this.markContextMenuItem = new System.Windows.Forms.MenuItem();
            this.unmarkContextMenuItem = new System.Windows.Forms.MenuItem();
            this.comments = new System.Windows.Forms.CheckBox();
            this.showFullRepositoryPath = new System.Windows.Forms.CheckBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip( this.components );
            this.viewButton = new System.Windows.Forms.Button();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.label6 = new System.Windows.Forms.Label();
            this.scmSystem = new System.Windows.Forms.ComboBox();
            this.viewTraceButton = new System.Windows.Forms.Button();
            this.makeArchiveButton = new System.Windows.Forms.Button();
            this.setToolsButton = new System.Windows.Forms.Button();
            this.makeArchiveFileDialog = new System.Windows.Forms.SaveFileDialog();
            ((System.ComponentModel.ISupportInitialize) (this.errorProvider1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize) (this.versionGrid)).BeginInit();
            this.SuspendLayout();
            // 
            // getFeatureHistoryEditBox
            // 
            this.getFeatureHistoryEditBox.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.getFeatureHistoryEditBox.Location = new System.Drawing.Point( 8, 164 );
            this.getFeatureHistoryEditBox.Name = "getFeatureHistoryEditBox";
            this.getFeatureHistoryEditBox.Size = new System.Drawing.Size( 419, 20 );
            this.getFeatureHistoryEditBox.TabIndex = 11;
            this.getFeatureHistoryEditBox.Enter += new System.EventHandler( this.getFeatureHistoryEditBox_Enter );
            this.getFeatureHistoryEditBox.Leave += new System.EventHandler( this.DoNotUseGoForAcceptButton );
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point( 8, 140 );
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size( 256, 16 );
            this.label1.TabIndex = 10;
            this.label1.Text = "&Feature #\'s (split with commas), or feature branch";
            // 
            // getFeatureHistoryButton
            // 
            this.getFeatureHistoryButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.getFeatureHistoryButton.Location = new System.Drawing.Point( 435, 164 );
            this.getFeatureHistoryButton.Name = "getFeatureHistoryButton";
            this.getFeatureHistoryButton.Size = new System.Drawing.Size( 40, 24 );
            this.getFeatureHistoryButton.TabIndex = 12;
            this.getFeatureHistoryButton.Text = "&Go!";
            this.getFeatureHistoryButton.Click += new System.EventHandler( this.getFeatureHistoryButton_Click );
            // 
            // showBlame
            // 
            this.showBlame.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.showBlame.Location = new System.Drawing.Point( 507, 286 );
            this.showBlame.Name = "showBlame";
            this.showBlame.Size = new System.Drawing.Size( 96, 32 );
            this.showBlame.TabIndex = 17;
            this.showBlame.Text = "&Blame";
            this.showBlame.Click += new System.EventHandler( this.showBlame_Click );
            // 
            // copyForExcelButton
            // 
            this.copyForExcelButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.copyForExcelButton.Location = new System.Drawing.Point( 507, 234 );
            this.copyForExcelButton.Name = "copyForExcelButton";
            this.copyForExcelButton.Size = new System.Drawing.Size( 96, 32 );
            this.copyForExcelButton.TabIndex = 16;
            this.copyForExcelButton.Text = "&Copy for Excel";
            this.copyForExcelButton.Click += new System.EventHandler( this.copyForExcelButton_Click );
            // 
            // diffButton
            // 
            this.diffButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.diffButton.Location = new System.Drawing.Point( 507, 324 );
            this.diffButton.Name = "diffButton";
            this.diffButton.Size = new System.Drawing.Size( 96, 32 );
            this.diffButton.TabIndex = 18;
            this.diffButton.Text = "&Diff";
            this.diffButton.Click += new System.EventHandler( this.diffButton_Click );
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Location = new System.Drawing.Point( 8, 34 );
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size( 595, 88 );
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "C&onnection Settings";
            // 
            // errorProvider1
            // 
            this.errorProvider1.ContainerControl = this;
            // 
            // versionGrid
            // 
            this.versionGrid.Anchor = ((System.Windows.Forms.AnchorStyles) ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.versionGrid.ContextMenu = this.gridContextMenu;
            gridEXLayout1.LayoutString = "<GridEXLayoutData><FormatStyles Collection=\"true\"><Style0 ID=\"Highlighted\"><BackC" +
                "olor>255, 255, 192</BackColor><Key>Highlighted</Key></Style0></FormatStyles></Gr" +
                "idEXLayoutData>";
            this.versionGrid.DesignTimeLayout = gridEXLayout1;
            this.versionGrid.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.versionGrid.Font = new System.Drawing.Font( "Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (0)) );
            this.versionGrid.GroupByBoxVisible = false;
            this.versionGrid.HideSelection = Janus.Windows.GridEX.HideSelection.HighlightInactive;
            this.versionGrid.Location = new System.Drawing.Point( 8, 196 );
            this.versionGrid.Name = "versionGrid";
            this.versionGrid.Size = new System.Drawing.Size( 485, 356 );
            this.versionGrid.TabIndex = 15;
            this.versionGrid.TabKeyBehavior = Janus.Windows.GridEX.TabKeyBehavior.ControlNavigation;
            this.versionGrid.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
            this.versionGrid.ColumnHeaderClick += new Janus.Windows.GridEX.ColumnActionEventHandler( this.versionGrid_ColumnHeaderClick );
            this.versionGrid.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler( this.versionGrid_FormattingRow );
            this.versionGrid.KeyDown += new System.Windows.Forms.KeyEventHandler( this.versionGrid_KeyDown );
            this.versionGrid.CellValueChanged += new Janus.Windows.GridEX.ColumnActionEventHandler( this.versionGrid_CellValueChanged );
            // 
            // gridContextMenu
            // 
            this.gridContextMenu.MenuItems.AddRange( new System.Windows.Forms.MenuItem[] {
            this.diffContextMenuItem,
            this.viewContextMenuItem,
            this.markContextMenuItem,
            this.unmarkContextMenuItem} );
            this.gridContextMenu.Popup += new System.EventHandler( this.gridContextMenu_Popup );
            // 
            // diffContextMenuItem
            // 
            this.diffContextMenuItem.Index = 0;
            this.diffContextMenuItem.Text = "Diff";
            // 
            // viewContextMenuItem
            // 
            this.viewContextMenuItem.Index = 1;
            this.viewContextMenuItem.Text = "View";
            // 
            // markContextMenuItem
            // 
            this.markContextMenuItem.Index = 2;
            this.markContextMenuItem.Text = "Mark";
            this.markContextMenuItem.Click += new System.EventHandler( this.markContextMenuItem_Click );
            // 
            // unmarkContextMenuItem
            // 
            this.unmarkContextMenuItem.Index = 3;
            this.unmarkContextMenuItem.Text = "Unmark";
            this.unmarkContextMenuItem.Visible = false;
            this.unmarkContextMenuItem.Click += new System.EventHandler( this.markContextMenuItem_Click );
            // 
            // comments
            // 
            this.comments.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.comments.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
            this.comments.Checked = true;
            this.comments.CheckState = System.Windows.Forms.CheckState.Checked;
            this.comments.Location = new System.Drawing.Point( 499, 156 );
            this.comments.Name = "comments";
            this.comments.Size = new System.Drawing.Size( 104, 32 );
            this.comments.TabIndex = 13;
            this.comments.Text = "&Show Change Comments";
            this.comments.CheckedChanged += new System.EventHandler( this.SetCommentsRowVisibility );
            // 
            // showFullRepositoryPath
            // 
            this.showFullRepositoryPath.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.showFullRepositoryPath.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
            this.showFullRepositoryPath.Checked = true;
            this.showFullRepositoryPath.CheckState = System.Windows.Forms.CheckState.Checked;
            this.showFullRepositoryPath.Location = new System.Drawing.Point( 499, 196 );
            this.showFullRepositoryPath.Name = "showFullRepositoryPath";
            this.showFullRepositoryPath.Size = new System.Drawing.Size( 104, 32 );
            this.showFullRepositoryPath.TabIndex = 14;
            this.showFullRepositoryPath.Text = "Show Ful&l Repository Path";
            this.showFullRepositoryPath.CheckedChanged += new System.EventHandler( this.showFullRepositoryPath_CheckedChanged );
            // 
            // viewButton
            // 
            this.viewButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.viewButton.Location = new System.Drawing.Point( 507, 362 );
            this.viewButton.Name = "viewButton";
            this.viewButton.Size = new System.Drawing.Size( 96, 32 );
            this.viewButton.TabIndex = 19;
            this.viewButton.Text = "&View";
            this.viewButton.Click += new System.EventHandler( this.viewButton_Click );
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point( 280, 132 );
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size( 328, 16 );
            this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
            this.progressBar1.TabIndex = 20;
            this.progressBar1.Visible = false;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point( 10, 16 );
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size( 70, 13 );
            this.label6.TabIndex = 21;
            this.label6.Text = "SCM S&ystem:";
            // 
            // scmSystem
            // 
            this.scmSystem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scmSystem.FormattingEnabled = true;
            this.scmSystem.Location = new System.Drawing.Point( 86, 12 );
            this.scmSystem.Name = "scmSystem";
            this.scmSystem.Size = new System.Drawing.Size( 178, 21 );
            this.scmSystem.TabIndex = 22;
            this.scmSystem.SelectedIndexChanged += new System.EventHandler( this.scmSystem_SelectedIndexChanged );
            // 
            // viewTraceButton
            // 
            this.viewTraceButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.viewTraceButton.Location = new System.Drawing.Point( 507, 520 );
            this.viewTraceButton.Name = "viewTraceButton";
            this.viewTraceButton.Size = new System.Drawing.Size( 96, 32 );
            this.viewTraceButton.TabIndex = 23;
            this.viewTraceButton.Text = "View &Trace";
            this.viewTraceButton.UseVisualStyleBackColor = true;
            this.viewTraceButton.Click += new System.EventHandler( this.viewTraceButton_Click );
            // 
            // makeArchiveButton
            // 
            this.makeArchiveButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.makeArchiveButton.Location = new System.Drawing.Point( 507, 400 );
            this.makeArchiveButton.Name = "makeArchiveButton";
            this.makeArchiveButton.Size = new System.Drawing.Size( 96, 32 );
            this.makeArchiveButton.TabIndex = 24;
            this.makeArchiveButton.Text = "Make &Archive";
            this.makeArchiveButton.UseVisualStyleBackColor = true;
            this.makeArchiveButton.Click += new System.EventHandler( this.makeArchiveButton_Click );
            // 
            // setToolsButton
            // 
            this.setToolsButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.setToolsButton.Location = new System.Drawing.Point( 507, 482 );
            this.setToolsButton.Name = "setToolsButton";
            this.setToolsButton.Size = new System.Drawing.Size( 96, 32 );
            this.setToolsButton.TabIndex = 25;
            this.setToolsButton.Text = "&Set Tools...";
            this.setToolsButton.UseVisualStyleBackColor = true;
            this.setToolsButton.Click += new System.EventHandler( this.setToolsButton_Click );
            // 
            // makeArchiveFileDialog
            // 
            this.makeArchiveFileDialog.DefaultExt = "zip";
            this.makeArchiveFileDialog.Filter = "Zip files|*.zip|All files|*.*";
            // 
            // FeatureReviewForm
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size( 5, 13 );
            this.ClientSize = new System.Drawing.Size( 611, 558 );
            this.Controls.Add( this.setToolsButton );
            this.Controls.Add( this.makeArchiveButton );
            this.Controls.Add( this.viewTraceButton );
            this.Controls.Add( this.scmSystem );
            this.Controls.Add( this.label6 );
            this.Controls.Add( this.progressBar1 );
            this.Controls.Add( this.viewButton );
            this.Controls.Add( this.showFullRepositoryPath );
            this.Controls.Add( this.comments );
            this.Controls.Add( this.getFeatureHistoryEditBox );
            this.Controls.Add( this.versionGrid );
            this.Controls.Add( this.groupBox1 );
            this.Controls.Add( this.diffButton );
            this.Controls.Add( this.copyForExcelButton );
            this.Controls.Add( this.showBlame );
            this.Controls.Add( this.getFeatureHistoryButton );
            this.Controls.Add( this.label1 );
            this.Name = "FeatureReviewForm";
            this.Text = "SEP Feature Review Support Tool";
            this.Closing += new System.ComponentModel.CancelEventHandler( this.FeatureReviewForm_Closing );
            ((System.ComponentModel.ISupportInitialize) (this.errorProvider1)).EndInit();
            ((System.ComponentModel.ISupportInitialize) (this.versionGrid)).EndInit();
            this.ResumeLayout( false );
            this.PerformLayout();

        }
コード例 #8
0
ファイル: FormMain.cs プロジェクト: windygu/ger20160318
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager       resources = new System.Resources.ResourceManager(typeof(FormMain));
     Infragistics.Win.UltraWinListBar.Group group1    = new Infragistics.Win.UltraWinListBar.Group(true);
     Infragistics.Win.UltraWinListBar.Item  item1     = new Infragistics.Win.UltraWinListBar.Item();
     Infragistics.Win.UltraWinListBar.Item  item2     = new Infragistics.Win.UltraWinListBar.Item();
     Infragistics.Win.UltraWinListBar.Item  item3     = new Infragistics.Win.UltraWinListBar.Item();
     Infragistics.Win.UltraWinListBar.Item  item4     = new Infragistics.Win.UltraWinListBar.Item();
     this.mainMenu              = new System.Windows.Forms.MainMenu();
     this.menuItem1             = new System.Windows.Forms.MenuItem();
     this.menuItem2             = new System.Windows.Forms.MenuItem();
     this.menuItem3             = new System.Windows.Forms.MenuItem();
     this.menuItemArhivoSalir   = new System.Windows.Forms.MenuItem();
     this.menuItem4             = new System.Windows.Forms.MenuItem();
     this.menuItemEnviarRecibir = new System.Windows.Forms.MenuItem();
     this.menuItemEnviar        = new System.Windows.Forms.MenuItem();
     this.menuItemRecibir       = new System.Windows.Forms.MenuItem();
     this.menuItem6             = new System.Windows.Forms.MenuItem();
     this.menuItemProcesarSentenciasDeReplicacion = new System.Windows.Forms.MenuItem();
     this.imageList      = new System.Windows.Forms.ImageList(this.components);
     this.splitter1      = new System.Windows.Forms.Splitter();
     this.statusBar      = new System.Windows.Forms.StatusBar();
     this.panel3         = new System.Windows.Forms.Panel();
     this.panel2         = new System.Windows.Forms.Panel();
     this.panel4         = new System.Windows.Forms.Panel();
     this.axWebBrowser   = new AxSHDocVw.AxWebBrowser();
     this.splitter2      = new System.Windows.Forms.Splitter();
     this.panelGrid      = new System.Windows.Forms.Panel();
     this.gridEX         = new Janus.Windows.GridEX.GridEX();
     this.labelHeader    = new System.Windows.Forms.Label();
     this.imageListSmall = new System.Windows.Forms.ImageList(this.components);
     this.ultraListBar1  = new Infragistics.Win.UltraWinListBar.UltraListBar();
     this.toolBar1       = new System.Windows.Forms.ToolBar();
     this.menuItem5      = new System.Windows.Forms.MenuItem();
     this.menuItem7      = new System.Windows.Forms.MenuItem();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axWebBrowser)).BeginInit();
     this.panelGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEX)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem4
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2,
         this.menuItem3,
         this.menuItemArhivoSalir
     });
     this.menuItem1.Text = "&Archivo";
     //
     // menuItem2
     //
     this.menuItem2.Index = 0;
     this.menuItem2.Text  = "";
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.Text  = "-";
     //
     // menuItemArhivoSalir
     //
     this.menuItemArhivoSalir.Index    = 2;
     this.menuItemArhivoSalir.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this.menuItemArhivoSalir.Text     = "&Salir";
     //
     // menuItem4
     //
     this.menuItem4.Index = 1;
     this.menuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemEnviarRecibir,
         this.menuItemEnviar,
         this.menuItemRecibir,
         this.menuItem6,
         this.menuItemProcesarSentenciasDeReplicacion,
         this.menuItem7,
         this.menuItem5
     });
     this.menuItem4.Text = "H&erramientas";
     //
     // menuItemEnviarRecibir
     //
     this.menuItemEnviarRecibir.Index  = 0;
     this.menuItemEnviarRecibir.Text   = "Enviar y recibir todo";
     this.menuItemEnviarRecibir.Click += new System.EventHandler(this.menuItemEnviarRecibir_Click);
     //
     // menuItemEnviar
     //
     this.menuItemEnviar.Index  = 1;
     this.menuItemEnviar.Text   = "Enviar todo";
     this.menuItemEnviar.Click += new System.EventHandler(this.menuItemEnviar_Click);
     //
     // menuItemRecibir
     //
     this.menuItemRecibir.Index  = 2;
     this.menuItemRecibir.Text   = "Recibir todo";
     this.menuItemRecibir.Click += new System.EventHandler(this.menuItemRecibir_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 3;
     this.menuItem6.Text  = "-";
     //
     // menuItemProcesarSentenciasDeReplicacion
     //
     this.menuItemProcesarSentenciasDeReplicacion.Index  = 4;
     this.menuItemProcesarSentenciasDeReplicacion.Text   = "Procesar sentencias de replicación";
     this.menuItemProcesarSentenciasDeReplicacion.Click += new System.EventHandler(this.menuItemProcesarSentenciasDeReplicacion_Click);
     //
     // imageList
     //
     this.imageList.ImageSize        = new System.Drawing.Size(32, 32);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Magenta;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 385);
     this.splitter1.TabIndex = 4;
     this.splitter1.TabStop  = false;
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(3, 363);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(829, 22);
     this.statusBar.TabIndex = 8;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel2);
     this.panel3.Controls.Add(this.toolBar1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(3, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(829, 363);
     this.panel3.TabIndex = 10;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Controls.Add(this.ultraListBar1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.panel2.Location = new System.Drawing.Point(0, 42);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(829, 321);
     this.panel2.TabIndex = 11;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.axWebBrowser);
     this.panel4.Controls.Add(this.splitter2);
     this.panel4.Controls.Add(this.panelGrid);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(144, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(685, 321);
     this.panel4.TabIndex = 10;
     //
     // axWebBrowser
     //
     this.axWebBrowser.ContainingControl = this;
     this.axWebBrowser.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.axWebBrowser.Enabled  = true;
     this.axWebBrowser.Location = new System.Drawing.Point(0, 195);
     this.axWebBrowser.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axWebBrowser.OcxState")));
     this.axWebBrowser.Size     = new System.Drawing.Size(685, 126);
     this.axWebBrowser.TabIndex = 10;
     //
     // splitter2
     //
     this.splitter2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitter2.Location = new System.Drawing.Point(0, 192);
     this.splitter2.Name     = "splitter2";
     this.splitter2.Size     = new System.Drawing.Size(685, 3);
     this.splitter2.TabIndex = 9;
     this.splitter2.TabStop  = false;
     //
     // panelGrid
     //
     this.panelGrid.Controls.Add(this.gridEX);
     this.panelGrid.Controls.Add(this.labelHeader);
     this.panelGrid.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelGrid.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.panelGrid.Location = new System.Drawing.Point(0, 0);
     this.panelGrid.Name     = "panelGrid";
     this.panelGrid.Size     = new System.Drawing.Size(685, 192);
     this.panelGrid.TabIndex = 8;
     //
     // gridEX
     //
     this.gridEX.ColumnAutoResize = true;
     this.gridEX.Cursor           = System.Windows.Forms.Cursors.Default;
     this.gridEX.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.gridEX.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEX.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridEX.GroupByBoxVisible  = false;
     this.gridEX.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEX.LayoutData         = @"<GridEXLayoutData><RootTable><AllowAddNew>False</AllowAddNew><AllowDelete>False</AllowDelete><AllowEdit>False</AllowEdit><AllowGroup>False</AllowGroup><Columns Collection=""true""><Column0 ID=""Icon""><AllowSize>False</AllowSize><ColumnType>Image</ColumnType><Key>Icon</Key><Position>0</Position><Width>30</Width></Column0><Column1 ID=""IdBandeja""><Caption>IdBandeja</Caption><DataMember>IdBandeja</DataMember><Key>IdBandeja</Key><Position>1</Position><Visible>False</Visible></Column1><Column2 ID=""NombreArchivo""><Caption>Nombre</Caption><DataMember>NombreArchivo</DataMember><Key>NombreArchivo</Key><Position>2</Position><Width>351</Width></Column2><Column3 ID=""FechaTransferencia""><AllowSize>False</AllowSize><Caption>Transferencia</Caption><DataMember>FechaTransferencia</DataMember><EditType>CalendarDropDown</EditType><Key>FechaTransferencia</Key><Position>3</Position><Width>150</Width></Column3><Column4 ID=""FechaCreacion""><AllowSize>False</AllowSize><Caption>Creación</Caption><DataMember>FechaCreacion</DataMember><EditType>CalendarDropDown</EditType><Key>FechaCreacion</Key><Position>4</Position><Width>150</Width></Column4></Columns><GridLines>Horizontal</GridLines><GroupCondition ID="""" /><SortKeys Collection=""true""><SortKey0 ID=""SortKey0""><ColIndex>3</ColIndex><SortOrder>Descending</SortOrder></SortKey0></SortKeys></RootTable></GridEXLayoutData>";
     this.gridEX.Location           = new System.Drawing.Point(0, 23);
     this.gridEX.Name              = "gridEX";
     this.gridEX.Size              = new System.Drawing.Size(685, 169);
     this.gridEX.TabIndex          = 4;
     this.gridEX.SelectionChanged += new System.EventHandler(this.gridEX_SelectionChanged);
     //
     // labelHeader
     //
     this.labelHeader.BackColor   = System.Drawing.SystemColors.AppWorkspace;
     this.labelHeader.Dock        = System.Windows.Forms.DockStyle.Top;
     this.labelHeader.Font        = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelHeader.ForeColor   = System.Drawing.SystemColors.HighlightText;
     this.labelHeader.ImageAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.labelHeader.ImageIndex  = 1;
     this.labelHeader.ImageList   = this.imageListSmall;
     this.labelHeader.Location    = new System.Drawing.Point(0, 0);
     this.labelHeader.Name        = "labelHeader";
     this.labelHeader.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelHeader.Size        = new System.Drawing.Size(685, 23);
     this.labelHeader.TabIndex    = 0;
     this.labelHeader.Text        = "   [bandeja]";
     this.labelHeader.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // imageListSmall
     //
     this.imageListSmall.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageListSmall.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListSmall.ImageStream")));
     this.imageListSmall.TransparentColor = System.Drawing.Color.Magenta;
     //
     // ultraListBar1
     //
     this.ultraListBar1.BorderStyle         = Infragistics.Win.UIElementBorderStyle.InsetSoft;
     this.ultraListBar1.Dock                = System.Windows.Forms.DockStyle.Left;
     this.ultraListBar1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.ultraListBar1.GroupHeadersVisible = false;
     item1.Key             = "INBOX";
     item1.LargeImageIndex = 0;
     item1.SmallImageIndex = 0;
     item1.Text            = "Bandeja de entrada";
     item2.Key             = "OUTBOX";
     item2.LargeImageIndex = 1;
     item2.SmallImageIndex = 1;
     item2.Text            = "Bandeja de salida";
     item3.Key             = "SENT";
     item3.LargeImageIndex = 2;
     item3.SmallImageIndex = 2;
     item3.Text            = "Elementos enviados";
     item4.Key             = "TRASH";
     item4.LargeImageIndex = 3;
     item4.SmallImageIndex = 3;
     item4.Text            = "Elementos eliminados";
     group1.Items.Add(item1);
     group1.Items.Add(item2);
     group1.Items.Add(item3);
     group1.Items.Add(item4);
     this.ultraListBar1.Groups.Add(group1);
     this.ultraListBar1.LargeImageList = this.imageList;
     this.ultraListBar1.Location       = new System.Drawing.Point(0, 0);
     this.ultraListBar1.Name           = "ultraListBar1";
     this.ultraListBar1.Size           = new System.Drawing.Size(144, 321);
     this.ultraListBar1.ItemSelected  += new Infragistics.Win.UltraWinListBar.ItemEventHandler(this.ultraListBar1_ItemSelected);
     //
     // toolBar1
     //
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(829, 42);
     this.toolBar1.TabIndex       = 10;
     //
     // menuItem5
     //
     this.menuItem5.Index  = 6;
     this.menuItem5.Text   = "Procesar bandeja de entrada";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 5;
     this.menuItem7.Text  = "-";
     //
     // FormMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(832, 385);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.splitter1);
     this.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Menu  = this.mainMenu;
     this.Name  = "FormMain";
     this.Text  = "Administrador de transferencias";
     this.Load += new System.EventHandler(this.FormMain_Load);
     this.panel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axWebBrowser)).EndInit();
     this.panelGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEX)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #9
0
        /// <summary>
        /// Método necesario para admitir el Diseñador. No se puede modificar
        /// el contenido del método con el editor de código.

        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmPagoCuentaCorriente));
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            this.ultraExplorerBarContainerControl5 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.txtNumero                         = new System.Windows.Forms.TextBox();
            this.mzCmbCuenta                       = new mz.erp.ui.controls.mzComboSearchEditor();
            this.mzCEInstanciasCaja                = new mz.erp.ui.controls.mzComboEditor();
            this.ultraLabel4                       = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel6                       = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel1                       = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel3                       = new Infragistics.Win.Misc.UltraLabel();
            this.ultraLabel5                       = new Infragistics.Win.Misc.UltraLabel();
            this.mzCmbTipoComprobante              = new mz.erp.ui.controls.mzComboEditor();
            this.ultraLabel2                       = new Infragistics.Win.Misc.UltraLabel();
            this.cldFechaComprobante               = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
            this.mzCmbResponsableEmision           = new mz.erp.ui.controls.mzComboSearchEditor();
            this.ultraExplorerBarContainerControl6 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.ubEliminar                        = new Infragistics.Win.Misc.UltraButton();
            this.imglStandar                       = new System.Windows.Forms.ImageList(this.components);
            this.ubAgregar                         = new Infragistics.Win.Misc.UltraButton();
            this.label1          = new System.Windows.Forms.Label();
            this.gridEXValores   = new Janus.Windows.GridEX.GridEX();
            this.uneTotalValores = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.gridCompAImputar  = new Janus.Windows.GridEX.GridEX();
            this.uneTotalImputado  = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label8            = new System.Windows.Forms.Label();
            this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
            this.toolBarStandar    = new System.Windows.Forms.ToolBar();
            this.tbbGuardar        = new System.Windows.Forms.ToolBarButton();
            this.toolBarButton8    = new System.Windows.Forms.ToolBarButton();
            this.tbStep3           = new System.Windows.Forms.ToolBarButton();
            this.tbDelete          = new System.Windows.Forms.ToolBarButton();
            this.ultraExplorerBarContainerControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.mzCEInstanciasCaja)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mzCmbTipoComprobante)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cldFechaComprobante)).BeginInit();
            this.ultraExplorerBarContainerControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridEXValores)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uneTotalValores)).BeginInit();
            this.ultraExplorerBarContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridCompAImputar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uneTotalImputado)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
            this.ultraExplorerBar1.SuspendLayout();
            this.SuspendLayout();
            //
            // ultraExplorerBarContainerControl5
            //
            this.ultraExplorerBarContainerControl5.Controls.Add(this.txtNumero);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.mzCmbCuenta);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.mzCEInstanciasCaja);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.ultraLabel4);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.ultraLabel6);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.ultraLabel1);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.ultraLabel3);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.ultraLabel5);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.mzCmbTipoComprobante);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.ultraLabel2);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.cldFechaComprobante);
            this.ultraExplorerBarContainerControl5.Controls.Add(this.mzCmbResponsableEmision);
            this.ultraExplorerBarContainerControl5.Location = new System.Drawing.Point(28, 49);
            this.ultraExplorerBarContainerControl5.Name     = "ultraExplorerBarContainerControl5";
            this.ultraExplorerBarContainerControl5.Size     = new System.Drawing.Size(815, 143);
            this.ultraExplorerBarContainerControl5.TabIndex = 6;
            //
            // txtNumero
            //
            this.txtNumero.Enabled  = false;
            this.txtNumero.Location = new System.Drawing.Point(128, 23);
            this.txtNumero.Name     = "txtNumero";
            this.txtNumero.Size     = new System.Drawing.Size(240, 20);
            this.txtNumero.TabIndex = 1;
            this.txtNumero.Text     = "";
            //
            // mzCmbCuenta
            //
            this.mzCmbCuenta.DataValue            = "";
            this.mzCmbCuenta.EditObject           = null;
            this.mzCmbCuenta.FastSearch           = false;
            this.mzCmbCuenta.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.mzCmbCuenta.HierarchicalSearch   = false;
            this.mzCmbCuenta.Location             = new System.Drawing.Point(128, 69);
            this.mzCmbCuenta.Name                 = "mzCmbCuenta";
            this.mzCmbCuenta.SearchObject         = null;
            this.mzCmbCuenta.SearchObjectListener = null;
            this.mzCmbCuenta.Size                 = new System.Drawing.Size(438, 22);
            this.mzCmbCuenta.TabIndex             = 3;

            //
            // mzCEInstanciasCaja
            //
            this.mzCEInstanciasCaja.DataSource           = null;
            this.mzCEInstanciasCaja.DisplayMember        = "";
            this.mzCEInstanciasCaja.DisplayMemberCaption = "";
            this.mzCEInstanciasCaja.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
            this.mzCEInstanciasCaja.Location             = new System.Drawing.Point(128, 116);
            this.mzCEInstanciasCaja.MaxItemsDisplay      = 7;
            this.mzCEInstanciasCaja.MoreItemsDisplayText = "(Ver mas elementos...)";
            this.mzCEInstanciasCaja.Name               = "mzCEInstanciasCaja";
            this.mzCEInstanciasCaja.Size               = new System.Drawing.Size(240, 21);
            this.mzCEInstanciasCaja.SorterMember       = "";
            this.mzCEInstanciasCaja.TabIndex           = 5;
            this.mzCEInstanciasCaja.ValueMember        = "";
            this.mzCEInstanciasCaja.ValueMemberCaption = "";
            //
            // ultraLabel4
            //
            this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
            this.ultraLabel4.Location  = new System.Drawing.Point(0, 121);
            this.ultraLabel4.Name      = "ultraLabel4";
            this.ultraLabel4.Size      = new System.Drawing.Size(120, 16);
            this.ultraLabel4.TabIndex  = 27;
            this.ultraLabel4.Text      = "Instancia de Caja";
            //
            // ultraLabel6
            //
            this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
            this.ultraLabel6.Location  = new System.Drawing.Point(0, 49);
            this.ultraLabel6.Name      = "ultraLabel6";
            this.ultraLabel6.Size      = new System.Drawing.Size(120, 16);
            this.ultraLabel6.TabIndex  = 26;
            this.ultraLabel6.Text      = "Responsable Emisión";
            //
            // ultraLabel1
            //
            this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
            this.ultraLabel1.Location  = new System.Drawing.Point(0, 73);
            this.ultraLabel1.Name      = "ultraLabel1";
            this.ultraLabel1.Size      = new System.Drawing.Size(120, 16);
            this.ultraLabel1.TabIndex  = 25;
            this.ultraLabel1.Text      = "Cuenta";
            //
            // ultraLabel3
            //
            this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
            this.ultraLabel3.Location  = new System.Drawing.Point(0, 1);
            this.ultraLabel3.Name      = "ultraLabel3";
            this.ultraLabel3.Size      = new System.Drawing.Size(120, 16);
            this.ultraLabel3.TabIndex  = 24;
            this.ultraLabel3.Text      = "Fecha";
            //
            // ultraLabel5
            //
            this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
            this.ultraLabel5.Location  = new System.Drawing.Point(0, 25);
            this.ultraLabel5.Name      = "ultraLabel5";
            this.ultraLabel5.Size      = new System.Drawing.Size(120, 16);
            this.ultraLabel5.TabIndex  = 23;
            this.ultraLabel5.Text      = "Número";
            //
            // mzCmbTipoComprobante
            //
            this.mzCmbTipoComprobante.DataSource           = null;
            this.mzCmbTipoComprobante.DisplayMember        = "";
            this.mzCmbTipoComprobante.DisplayMemberCaption = "";
            this.mzCmbTipoComprobante.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
            this.mzCmbTipoComprobante.Location             = new System.Drawing.Point(128, 93);
            this.mzCmbTipoComprobante.MaxItemsDisplay      = 7;
            this.mzCmbTipoComprobante.MoreItemsDisplayText = "(Ver mas elementos...)";
            this.mzCmbTipoComprobante.Name               = "mzCmbTipoComprobante";
            this.mzCmbTipoComprobante.Size               = new System.Drawing.Size(240, 21);
            this.mzCmbTipoComprobante.SorterMember       = "";
            this.mzCmbTipoComprobante.TabIndex           = 4;
            this.mzCmbTipoComprobante.ValueMember        = "";
            this.mzCmbTipoComprobante.ValueMemberCaption = "";
            //
            // ultraLabel2
            //
            this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
            this.ultraLabel2.Location  = new System.Drawing.Point(0, 97);
            this.ultraLabel2.Name      = "ultraLabel2";
            this.ultraLabel2.Size      = new System.Drawing.Size(120, 16);
            this.ultraLabel2.TabIndex  = 22;
            this.ultraLabel2.Text      = "Tipo de Comprobante";
            //
            // cldFechaComprobante
            //
            dateButton1.Caption = "Today";
            this.cldFechaComprobante.DateButtons.Add(dateButton1);
            this.cldFechaComprobante.Location          = new System.Drawing.Point(128, 0);
            this.cldFechaComprobante.Name              = "cldFechaComprobante";
            this.cldFechaComprobante.NonAutoSizeHeight = 23;
            this.cldFechaComprobante.Size              = new System.Drawing.Size(240, 21);
            this.cldFechaComprobante.TabIndex          = 0;
            this.cldFechaComprobante.Value             = new System.DateTime(2005, 1, 28, 0, 0, 0, 0);
            //
            // mzCmbResponsableEmision
            //
            this.mzCmbResponsableEmision.DataValue            = "";
            this.mzCmbResponsableEmision.EditObject           = null;
            this.mzCmbResponsableEmision.FastSearch           = false;
            this.mzCmbResponsableEmision.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.mzCmbResponsableEmision.HierarchicalSearch   = false;
            this.mzCmbResponsableEmision.Location             = new System.Drawing.Point(128, 45);
            this.mzCmbResponsableEmision.Name                 = "mzCmbResponsableEmision";
            this.mzCmbResponsableEmision.SearchObject         = null;
            this.mzCmbResponsableEmision.SearchObjectListener = null;
            this.mzCmbResponsableEmision.Size                 = new System.Drawing.Size(438, 22);
            this.mzCmbResponsableEmision.TabIndex             = 2;
            //
            // ultraExplorerBarContainerControl6
            //
            this.ultraExplorerBarContainerControl6.Controls.Add(this.ubEliminar);
            this.ultraExplorerBarContainerControl6.Controls.Add(this.ubAgregar);
            this.ultraExplorerBarContainerControl6.Controls.Add(this.label1);
            this.ultraExplorerBarContainerControl6.Controls.Add(this.gridEXValores);
            this.ultraExplorerBarContainerControl6.Controls.Add(this.uneTotalValores);
            this.ultraExplorerBarContainerControl6.Location = new System.Drawing.Point(28, 251);
            this.ultraExplorerBarContainerControl6.Name     = "ultraExplorerBarContainerControl6";
            this.ultraExplorerBarContainerControl6.Size     = new System.Drawing.Size(815, 205);
            this.ultraExplorerBarContainerControl6.TabIndex = 8;
            //
            // ubEliminar
            //
            this.ubEliminar.ImageList = this.imglStandar;
            this.ubEliminar.Location  = new System.Drawing.Point(104, 0);
            this.ubEliminar.Name      = "ubEliminar";
            this.ubEliminar.Size      = new System.Drawing.Size(96, 24);
            this.ubEliminar.TabIndex  = 1;
            this.ubEliminar.Text      = "&Eliminar";
            this.ubEliminar.Click    += new System.EventHandler(this.ubEliminar_Click);
            //
            // imglStandar
            //
            this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
            this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
            this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
            //
            // ubAgregar
            //
            this.ubAgregar.ImageList = this.imglStandar;
            this.ubAgregar.Location  = new System.Drawing.Point(8, 0);
            this.ubAgregar.Name      = "ubAgregar";
            this.ubAgregar.Size      = new System.Drawing.Size(96, 24);
            this.ubAgregar.TabIndex  = 0;
            this.ubAgregar.Text      = "&Agregar";
            this.ubAgregar.Click    += new System.EventHandler(this.ubAgregar_Click);
            //
            // label1
            //
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Location  = new System.Drawing.Point(432, 8);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(128, 12);
            this.label1.TabIndex  = 31;
            this.label1.Text      = "Total";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            //
            // gridEXValores
            //
            this.gridEXValores.AllowDelete      = Janus.Windows.GridEX.InheritableBoolean.True;
            this.gridEXValores.AllowEdit        = Janus.Windows.GridEX.InheritableBoolean.False;
            this.gridEXValores.ContinuousScroll = false;
            this.gridEXValores.Cursor           = System.Windows.Forms.Cursors.Default;
            this.gridEXValores.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.gridEXValores.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.gridEXValores.GroupByBoxVisible  = false;
            this.gridEXValores.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
            this.gridEXValores.Location           = new System.Drawing.Point(4, 32);
            this.gridEXValores.Name           = "gridEXValores";
            this.gridEXValores.ScrollBars     = Janus.Windows.GridEX.ScrollBars.Both;
            this.gridEXValores.Size           = new System.Drawing.Size(660, 160);
            this.gridEXValores.TabIndex       = 2;
            this.gridEXValores.DoubleClick   += new System.EventHandler(this.gridEXValores_DoubleClick);
            this.gridEXValores.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.gridEXValores_FormattingRow);
            //
            // uneTotalValores
            //
            this.uneTotalValores.Location      = new System.Drawing.Point(568, 0);
            this.uneTotalValores.Name          = "uneTotalValores";
            this.uneTotalValores.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.uneTotalValores.Size          = new System.Drawing.Size(96, 21);
            this.uneTotalValores.TabIndex      = 11;
            this.uneTotalValores.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
            //
            // ultraExplorerBarContainerControl1
            //
            this.ultraExplorerBarContainerControl1.Controls.Add(this.gridCompAImputar);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.uneTotalImputado);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label8);
            this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 515);
            this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
            this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(815, 157);
            this.ultraExplorerBarContainerControl1.TabIndex = 7;
            //
            // gridCompAImputar
            //
            this.gridCompAImputar.AllowDelete        = Janus.Windows.GridEX.InheritableBoolean.True;
            this.gridCompAImputar.Cursor             = System.Windows.Forms.Cursors.Default;
            this.gridCompAImputar.GroupByBoxVisible  = false;
            this.gridCompAImputar.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
            this.gridCompAImputar.Location           = new System.Drawing.Point(0, 0);
            this.gridCompAImputar.Name         = "gridCompAImputar";
            this.gridCompAImputar.ScrollBars   = Janus.Windows.GridEX.ScrollBars.Both;
            this.gridCompAImputar.Size         = new System.Drawing.Size(664, 128);
            this.gridCompAImputar.TabIndex     = 0;
            this.gridCompAImputar.DoubleClick += new System.EventHandler(this.gridCompAImputar_DoubleClick);
            //
            // uneTotalImputado
            //
            this.uneTotalImputado.Location      = new System.Drawing.Point(568, 132);
            this.uneTotalImputado.Name          = "uneTotalImputado";
            this.uneTotalImputado.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.uneTotalImputado.Size          = new System.Drawing.Size(96, 21);
            this.uneTotalImputado.TabIndex      = 8;
            this.uneTotalImputado.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
            //
            // label8
            //
            this.label8.BackColor = System.Drawing.Color.Transparent;
            this.label8.Location  = new System.Drawing.Point(441, 136);
            this.label8.Name      = "label8";
            this.label8.Size      = new System.Drawing.Size(120, 16);
            this.label8.TabIndex  = 32;
            this.label8.Text      = "Total";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            //
            // ultraExplorerBar1
            //
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl5);
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl6);
            this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
            this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
            ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl5;
            ultraExplorerBarGroup1.Settings.ContainerHeight = 143;
            ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup1.Text      = "Informacion General";
            ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl6;
            ultraExplorerBarGroup2.Settings.ContainerHeight = 205;
            ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup2.Text      = "Valores";
            ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl1;
            ultraExplorerBarGroup3.Settings.ContainerHeight = 157;
            ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup3.Text = "Comprobantes A Imputar";
            this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
                ultraExplorerBarGroup1,
                ultraExplorerBarGroup2,
                ultraExplorerBarGroup3
            });
            this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 28);
            this.ultraExplorerBar1.Name     = "ultraExplorerBar1";
            this.ultraExplorerBar1.Size     = new System.Drawing.Size(864, 718);
            this.ultraExplorerBar1.TabIndex = 19;
            this.ultraExplorerBar1.TabStop  = false;
            //
            // toolBarStandar
            //
            this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
            this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
                this.tbbGuardar
            });
            this.toolBarStandar.ButtonSize     = new System.Drawing.Size(65, 22);
            this.toolBarStandar.DropDownArrows = true;
            this.toolBarStandar.ImageList      = this.imglStandar;
            this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
            this.toolBarStandar.Name           = "toolBarStandar";
            this.toolBarStandar.ShowToolTips   = true;
            this.toolBarStandar.Size           = new System.Drawing.Size(864, 28);
            this.toolBarStandar.TabIndex       = 18;
            this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
            this.toolBarStandar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarStandar_ButtonClick);
            //
            // tbbGuardar
            //
            this.tbbGuardar.ImageIndex = 4;
            this.tbbGuardar.Text       = "&Guardar";
            //
            // toolBarButton8
            //
            this.toolBarButton8.ImageIndex = 4;
            this.toolBarButton8.Text       = "Guardar";
            //
            // tbStep3
            //
            this.tbStep3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
            //
            // tbDelete
            //
            this.tbDelete.ImageIndex = 7;
            this.tbDelete.Text       = "Borrar";
            //
            // FrmPagoCuentaCorriente
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(864, 746);
            this.Controls.Add(this.ultraExplorerBar1);
            this.Controls.Add(this.toolBarStandar);
            this.KeyPreview = true;
            this.Name       = "FrmPagoCuentaCorriente";
            this.Text       = "Pagos en Cuenta Corriente";
            this.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.FrmPagoCuentaCorriente_KeyDown);
            this.Load      += new System.EventHandler(this.FrmPagoCuentaCorriente_Load);
            this.ultraExplorerBarContainerControl5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.mzCEInstanciasCaja)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mzCmbTipoComprobante)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cldFechaComprobante)).EndInit();
            this.ultraExplorerBarContainerControl6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridEXValores)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uneTotalValores)).EndInit();
            this.ultraExplorerBarContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridCompAImputar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uneTotalImputado)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
            this.ultraExplorerBar1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
コード例 #10
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Janus.Windows.GridEX.GridEXLayout jsgConditions_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmFormatConditions));
            this.explorerBarGroup2 = new System.Windows.Forms.Panel();
            this.jsgConditions = new Janus.Windows.GridEX.GridEX();
            this.ImageList1 = new System.Windows.Forms.ImageList(this.components);
            this.excConditionName = new System.Windows.Forms.Panel();
            this.txtConditionName = new Janus.Windows.GridEX.EditControls.EditBox();
            this.lblName = new System.Windows.Forms.Label();
            this.excConditionCriteria = new System.Windows.Forms.Panel();
            this.lblFields = new System.Windows.Forms.Label();
            this.txtValue2 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.txtValue1 = new Janus.Windows.GridEX.EditControls.EditBox();
            this.cboCondition = new System.Windows.Forms.ComboBox();
            this.lblCondition = new System.Windows.Forms.Label();
            this.lblValue1 = new System.Windows.Forms.Label();
            this.lblValue2 = new System.Windows.Forms.Label();
            this.cboFields = new System.Windows.Forms.ComboBox();
            this.UiTab1 = new System.Windows.Forms.TabControl();
            this.fontPage = new System.Windows.Forms.TabPage();
            this.UiGroupBox2 = new System.Windows.Forms.GroupBox();
            this.chkStrikeout = new System.Windows.Forms.CheckBox();
            this.chkUnderline = new System.Windows.Forms.CheckBox();
            this.chkItalic = new System.Windows.Forms.CheckBox();
            this.chkBold = new System.Windows.Forms.CheckBox();
            this.colorsPage = new System.Windows.Forms.TabPage();
            this.btnBackColor = new System.Windows.Forms.Button();
            this.btnForeColor = new System.Windows.Forms.Button();
            this.lblBackColor = new System.Windows.Forms.Label();
            this.lblForeColor = new System.Windows.Forms.Label();
            this.UiGroupBox1 = new System.Windows.Forms.GroupBox();
            this.ExplorerBar1 = new System.Windows.Forms.Panel();
            this.btnMoveDown = new System.Windows.Forms.Button();
            this.btnMoveUp = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnNew = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnOK = new System.Windows.Forms.Button();
            this.colorDialog1 = new System.Windows.Forms.ColorDialog();
            this.panel1 = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.jsgConditions)).BeginInit();
            this.excConditionName.SuspendLayout();
            this.excConditionCriteria.SuspendLayout();
            this.UiTab1.SuspendLayout();
            this.fontPage.SuspendLayout();
            this.UiGroupBox2.SuspendLayout();
            this.colorsPage.SuspendLayout();
            this.UiGroupBox1.SuspendLayout();
            this.ExplorerBar1.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // explorerBarGroup2
            // 
            this.explorerBarGroup2.Location = new System.Drawing.Point(0, 0);
            this.explorerBarGroup2.Name = "explorerBarGroup2";
            this.explorerBarGroup2.Size = new System.Drawing.Size(311, 45);
            this.explorerBarGroup2.TabIndex = 4;
            this.explorerBarGroup2.Text = "New Group";
            // 
            // jsgConditions
            // 
            this.jsgConditions.BorderStyle = Janus.Windows.GridEX.BorderStyle.None;
            this.jsgConditions.ColumnAutoResize = true;
            jsgConditions_DesignTimeLayout.LayoutString = resources.GetString("jsgConditions_DesignTimeLayout.LayoutString");
            this.jsgConditions.DesignTimeLayout = jsgConditions_DesignTimeLayout;
            this.jsgConditions.Dock = System.Windows.Forms.DockStyle.Fill;
            this.jsgConditions.GroupByBoxVisible = false;
            this.jsgConditions.ImageList = this.ImageList1;
            this.jsgConditions.Location = new System.Drawing.Point(3, 17);
            this.jsgConditions.Name = "jsgConditions";
            this.jsgConditions.ScrollBarWidth = 17;
            this.jsgConditions.Size = new System.Drawing.Size(276, 364);
            this.jsgConditions.TabIndex = 0;
            this.jsgConditions.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            this.jsgConditions.CurrentCellChanging += new Janus.Windows.GridEX.CurrentCellChangingEventHandler(this.jsgConditions_CurrentCellChanging);
            this.jsgConditions.UpdatingRecord += new System.ComponentModel.CancelEventHandler(this.jsgConditions_UpdatingRecord);
            this.jsgConditions.SelectionChanged += new System.EventHandler(this.jsgConditions_SelectionChanged);
            this.jsgConditions.FormattingRow += new Janus.Windows.GridEX.RowLoadEventHandler(this.jsgConditions_FormattingRow);
            // 
            // ImageList1
            // 
            this.ImageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList1.ImageStream")));
            this.ImageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.ImageList1.Images.SetKeyName(0, "");
            this.ImageList1.Images.SetKeyName(1, "");
            this.ImageList1.Images.SetKeyName(2, "");
            this.ImageList1.Images.SetKeyName(3, "");
            this.ImageList1.Images.SetKeyName(4, "");
            this.ImageList1.Images.SetKeyName(5, "");
            // 
            // excConditionName
            // 
            this.excConditionName.Controls.Add(this.txtConditionName);
            this.excConditionName.Controls.Add(this.lblName);
            this.excConditionName.Location = new System.Drawing.Point(8, 7);
            this.excConditionName.Name = "excConditionName";
            this.excConditionName.Size = new System.Drawing.Size(295, 27);
            this.excConditionName.TabIndex = 1;
            // 
            // txtConditionName
            // 
            this.txtConditionName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtConditionName.ControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.txtConditionName.Location = new System.Drawing.Point(104, 4);
            this.txtConditionName.Name = "txtConditionName";
            this.txtConditionName.Size = new System.Drawing.Size(185, 21);
            this.txtConditionName.TabIndex = 0;
            this.txtConditionName.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            this.txtConditionName.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            this.txtConditionName.TextChanged += new System.EventHandler(this.txtConditionName_TextChanged);
            // 
            // lblName
            // 
            this.lblName.AutoSize = true;
            this.lblName.BackColor = System.Drawing.Color.Transparent;
            this.lblName.Location = new System.Drawing.Point(8, 8);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(85, 13);
            this.lblName.TabIndex = 4;
            this.lblName.Text = "Condition name:";
            // 
            // excConditionCriteria
            // 
            this.excConditionCriteria.Controls.Add(this.lblFields);
            this.excConditionCriteria.Controls.Add(this.txtValue2);
            this.excConditionCriteria.Controls.Add(this.txtValue1);
            this.excConditionCriteria.Controls.Add(this.cboCondition);
            this.excConditionCriteria.Controls.Add(this.lblCondition);
            this.excConditionCriteria.Controls.Add(this.lblValue1);
            this.excConditionCriteria.Controls.Add(this.lblValue2);
            this.excConditionCriteria.Controls.Add(this.cboFields);
            this.excConditionCriteria.Location = new System.Drawing.Point(8, 61);
            this.excConditionCriteria.Name = "excConditionCriteria";
            this.excConditionCriteria.Size = new System.Drawing.Size(295, 101);
            this.excConditionCriteria.TabIndex = 2;
            // 
            // lblFields
            // 
            this.lblFields.AutoSize = true;
            this.lblFields.BackColor = System.Drawing.Color.Transparent;
            this.lblFields.Location = new System.Drawing.Point(8, 7);
            this.lblFields.Name = "lblFields";
            this.lblFields.Size = new System.Drawing.Size(38, 13);
            this.lblFields.TabIndex = 4;
            this.lblFields.Text = "Fields:";
            // 
            // txtValue2
            // 
            this.txtValue2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtValue2.ControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.txtValue2.Location = new System.Drawing.Point(72, 76);
            this.txtValue2.Name = "txtValue2";
            this.txtValue2.Size = new System.Drawing.Size(215, 21);
            this.txtValue2.TabIndex = 3;
            this.txtValue2.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            this.txtValue2.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // txtValue1
            // 
            this.txtValue1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtValue1.ControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
            this.txtValue1.Location = new System.Drawing.Point(72, 52);
            this.txtValue1.Name = "txtValue1";
            this.txtValue1.Size = new System.Drawing.Size(215, 21);
            this.txtValue1.TabIndex = 2;
            this.txtValue1.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
            this.txtValue1.VisualStyle = Janus.Windows.GridEX.VisualStyle.Office2003;
            // 
            // cboCondition
            // 
            this.cboCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cboCondition.Location = new System.Drawing.Point(72, 28);
            this.cboCondition.Name = "cboCondition";
            this.cboCondition.Size = new System.Drawing.Size(215, 21);
            this.cboCondition.TabIndex = 1;
            this.cboCondition.SelectedIndexChanged += new System.EventHandler(this.cboCondition_SelectedIndexChanged);
            // 
            // lblCondition
            // 
            this.lblCondition.AutoSize = true;
            this.lblCondition.BackColor = System.Drawing.Color.Transparent;
            this.lblCondition.Location = new System.Drawing.Point(8, 32);
            this.lblCondition.Name = "lblCondition";
            this.lblCondition.Size = new System.Drawing.Size(56, 13);
            this.lblCondition.TabIndex = 4;
            this.lblCondition.Text = "Condition:";
            // 
            // lblValue1
            // 
            this.lblValue1.AutoSize = true;
            this.lblValue1.BackColor = System.Drawing.Color.Transparent;
            this.lblValue1.Location = new System.Drawing.Point(8, 56);
            this.lblValue1.Name = "lblValue1";
            this.lblValue1.Size = new System.Drawing.Size(46, 13);
            this.lblValue1.TabIndex = 4;
            this.lblValue1.Text = "Value 1:";
            // 
            // lblValue2
            // 
            this.lblValue2.AutoSize = true;
            this.lblValue2.BackColor = System.Drawing.Color.Transparent;
            this.lblValue2.Location = new System.Drawing.Point(8, 80);
            this.lblValue2.Name = "lblValue2";
            this.lblValue2.Size = new System.Drawing.Size(46, 13);
            this.lblValue2.TabIndex = 4;
            this.lblValue2.Text = "Value 2:";
            // 
            // cboFields
            // 
            this.cboFields.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.cboFields.Location = new System.Drawing.Point(72, 4);
            this.cboFields.Name = "cboFields";
            this.cboFields.Size = new System.Drawing.Size(215, 21);
            this.cboFields.TabIndex = 0;
            // 
            // UiTab1
            // 
            this.UiTab1.Controls.Add(this.fontPage);
            this.UiTab1.Controls.Add(this.colorsPage);
            this.UiTab1.ImageList = this.ImageList1;
            this.UiTab1.Location = new System.Drawing.Point(8, 164);
            this.UiTab1.Name = "UiTab1";
            this.UiTab1.SelectedIndex = 0;
            this.UiTab1.Size = new System.Drawing.Size(295, 196);
            this.UiTab1.TabIndex = 0;
            // 
            // fontPage
            // 
            this.fontPage.Controls.Add(this.UiGroupBox2);
            this.fontPage.ImageIndex = 0;
            this.fontPage.Location = new System.Drawing.Point(4, 23);
            this.fontPage.Name = "fontPage";
            this.fontPage.Size = new System.Drawing.Size(287, 169);
            this.fontPage.TabIndex = 0;
            this.fontPage.TabStop = true;
            this.fontPage.Text = "Font";
            // 
            // UiGroupBox2
            // 
            this.UiGroupBox2.BackColor = System.Drawing.Color.Transparent;
            this.UiGroupBox2.Controls.Add(this.chkStrikeout);
            this.UiGroupBox2.Controls.Add(this.chkUnderline);
            this.UiGroupBox2.Controls.Add(this.chkItalic);
            this.UiGroupBox2.Controls.Add(this.chkBold);
            this.UiGroupBox2.Location = new System.Drawing.Point(8, 8);
            this.UiGroupBox2.Name = "UiGroupBox2";
            this.UiGroupBox2.Size = new System.Drawing.Size(248, 40);
            this.UiGroupBox2.TabIndex = 0;
            this.UiGroupBox2.TabStop = false;
            this.UiGroupBox2.Text = "Font Style";
            // 
            // chkStrikeout
            // 
            this.chkStrikeout.BackColor = System.Drawing.Color.Transparent;
            this.chkStrikeout.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkStrikeout.Location = new System.Drawing.Point(176, 16);
            this.chkStrikeout.Name = "chkStrikeout";
            this.chkStrikeout.Size = new System.Drawing.Size(64, 16);
            this.chkStrikeout.TabIndex = 7;
            this.chkStrikeout.Text = "Strikeout";
            this.chkStrikeout.UseVisualStyleBackColor = false;
            // 
            // chkUnderline
            // 
            this.chkUnderline.BackColor = System.Drawing.Color.Transparent;
            this.chkUnderline.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkUnderline.Location = new System.Drawing.Point(104, 16);
            this.chkUnderline.Name = "chkUnderline";
            this.chkUnderline.Size = new System.Drawing.Size(72, 16);
            this.chkUnderline.TabIndex = 6;
            this.chkUnderline.Text = "Underline";
            this.chkUnderline.UseVisualStyleBackColor = false;
            // 
            // chkItalic
            // 
            this.chkItalic.BackColor = System.Drawing.Color.Transparent;
            this.chkItalic.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkItalic.Location = new System.Drawing.Point(56, 16);
            this.chkItalic.Name = "chkItalic";
            this.chkItalic.Size = new System.Drawing.Size(48, 16);
            this.chkItalic.TabIndex = 5;
            this.chkItalic.Text = "Italic";
            this.chkItalic.UseVisualStyleBackColor = false;
            // 
            // chkBold
            // 
            this.chkBold.BackColor = System.Drawing.Color.Transparent;
            this.chkBold.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkBold.Location = new System.Drawing.Point(8, 16);
            this.chkBold.Name = "chkBold";
            this.chkBold.Size = new System.Drawing.Size(48, 16);
            this.chkBold.TabIndex = 4;
            this.chkBold.Text = "Bold";
            this.chkBold.UseVisualStyleBackColor = false;
            // 
            // colorsPage
            // 
            this.colorsPage.Controls.Add(this.btnBackColor);
            this.colorsPage.Controls.Add(this.btnForeColor);
            this.colorsPage.Controls.Add(this.lblBackColor);
            this.colorsPage.Controls.Add(this.lblForeColor);
            this.colorsPage.ImageIndex = 3;
            this.colorsPage.Location = new System.Drawing.Point(4, 23);
            this.colorsPage.Name = "colorsPage";
            this.colorsPage.Size = new System.Drawing.Size(287, 508);
            this.colorsPage.TabIndex = 1;
            this.colorsPage.TabStop = true;
            this.colorsPage.Text = "Colors";
            // 
            // btnBackColor
            // 
            this.btnBackColor.Location = new System.Drawing.Point(88, 44);
            this.btnBackColor.Name = "btnBackColor";
            this.btnBackColor.Size = new System.Drawing.Size(128, 23);
            this.btnBackColor.TabIndex = 3;
            this.btnBackColor.Text = "(none)";
            this.btnBackColor.UseVisualStyleBackColor = true;
            this.btnBackColor.Click += new System.EventHandler(this.btnBackColor_Click);
            // 
            // btnForeColor
            // 
            this.btnForeColor.Location = new System.Drawing.Point(88, 12);
            this.btnForeColor.Name = "btnForeColor";
            this.btnForeColor.Size = new System.Drawing.Size(128, 23);
            this.btnForeColor.TabIndex = 2;
            this.btnForeColor.Text = "(none)";
            this.btnForeColor.UseVisualStyleBackColor = true;
            this.btnForeColor.Click += new System.EventHandler(this.btnForeColor_Click_1);
            // 
            // lblBackColor
            // 
            this.lblBackColor.AutoSize = true;
            this.lblBackColor.Location = new System.Drawing.Point(8, 44);
            this.lblBackColor.Name = "lblBackColor";
            this.lblBackColor.Size = new System.Drawing.Size(67, 13);
            this.lblBackColor.TabIndex = 1;
            this.lblBackColor.Text = "Background:";
            // 
            // lblForeColor
            // 
            this.lblForeColor.AutoSize = true;
            this.lblForeColor.Location = new System.Drawing.Point(8, 12);
            this.lblForeColor.Name = "lblForeColor";
            this.lblForeColor.Size = new System.Drawing.Size(33, 13);
            this.lblForeColor.TabIndex = 1;
            this.lblForeColor.Text = "Text:";
            // 
            // UiGroupBox1
            // 
            this.UiGroupBox1.Controls.Add(this.jsgConditions);
            this.UiGroupBox1.Controls.Add(this.ExplorerBar1);
            this.UiGroupBox1.Controls.Add(this.btnCancel);
            this.UiGroupBox1.Controls.Add(this.btnOK);
            this.UiGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.UiGroupBox1.Location = new System.Drawing.Point(0, 30);
            this.UiGroupBox1.Name = "UiGroupBox1";
            this.UiGroupBox1.Size = new System.Drawing.Size(593, 384);
            this.UiGroupBox1.TabIndex = 0;
            this.UiGroupBox1.TabStop = false;
            // 
            // ExplorerBar1
            // 
            this.ExplorerBar1.Controls.Add(this.UiTab1);
            this.ExplorerBar1.Controls.Add(this.excConditionName);
            this.ExplorerBar1.Controls.Add(this.excConditionCriteria);
            this.ExplorerBar1.Controls.Add(this.explorerBarGroup2);
            this.ExplorerBar1.Dock = System.Windows.Forms.DockStyle.Right;
            this.ExplorerBar1.Location = new System.Drawing.Point(279, 17);
            this.ExplorerBar1.Name = "ExplorerBar1";
            this.ExplorerBar1.Size = new System.Drawing.Size(311, 364);
            this.ExplorerBar1.TabIndex = 7;
            this.ExplorerBar1.Text = "ExplorerBar1";
            // 
            // btnMoveDown
            // 
            this.btnMoveDown.Enabled = false;
            this.btnMoveDown.Location = new System.Drawing.Point(257, 3);
            this.btnMoveDown.Name = "btnMoveDown";
            this.btnMoveDown.Size = new System.Drawing.Size(80, 24);
            this.btnMoveDown.TabIndex = 6;
            this.btnMoveDown.Text = "Move Down";
            this.btnMoveDown.Click += new System.EventHandler(this.btnMoveDown_Click);
            // 
            // btnMoveUp
            // 
            this.btnMoveUp.Enabled = false;
            this.btnMoveUp.Location = new System.Drawing.Point(171, 3);
            this.btnMoveUp.Name = "btnMoveUp";
            this.btnMoveUp.Size = new System.Drawing.Size(80, 24);
            this.btnMoveUp.TabIndex = 5;
            this.btnMoveUp.Text = "Move Up";
            this.btnMoveUp.Click += new System.EventHandler(this.btnMoveUp_Click);
            // 
            // btnDelete
            // 
            this.btnDelete.Location = new System.Drawing.Point(85, 3);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(80, 24);
            this.btnDelete.TabIndex = 3;
            this.btnDelete.Text = "Delete";
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnNew
            // 
            this.btnNew.Location = new System.Drawing.Point(3, 3);
            this.btnNew.Name = "btnNew";
            this.btnNew.Size = new System.Drawing.Size(80, 24);
            this.btnNew.TabIndex = 2;
            this.btnNew.Text = "New";
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(887, 770);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(80, 24);
            this.btnCancel.TabIndex = 10;
            this.btnCancel.Text = "Cancel";
            // 
            // btnOK
            // 
            this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnOK.Location = new System.Drawing.Point(799, 770);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(80, 24);
            this.btnOK.TabIndex = 9;
            this.btnOK.Text = "OK";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.btnDelete);
            this.panel1.Controls.Add(this.btnNew);
            this.panel1.Controls.Add(this.btnMoveDown);
            this.panel1.Controls.Add(this.btnMoveUp);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(593, 30);
            this.panel1.TabIndex = 1;
            // 
            // frmFormatConditions
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
            this.ClientSize = new System.Drawing.Size(593, 414);
            this.Controls.Add(this.UiGroupBox1);
            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.FixedDialog;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frmFormatConditions";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Automatic Formatting";
            this.Closing += new System.ComponentModel.CancelEventHandler(this.FormatsForm_Closing);
            ((System.ComponentModel.ISupportInitialize)(this.jsgConditions)).EndInit();
            this.excConditionName.ResumeLayout(false);
            this.excConditionName.PerformLayout();
            this.excConditionCriteria.ResumeLayout(false);
            this.excConditionCriteria.PerformLayout();
            this.UiTab1.ResumeLayout(false);
            this.fontPage.ResumeLayout(false);
            this.UiGroupBox2.ResumeLayout(false);
            this.colorsPage.ResumeLayout(false);
            this.colorsPage.PerformLayout();
            this.UiGroupBox1.ResumeLayout(false);
            this.ExplorerBar1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
コード例 #11
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmVisualizacionCuentaCorrienteGeneral));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup4 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl4 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.label2    = new System.Windows.Forms.Label();
     this.udteHasta = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraExplorerBarContainerControlClientes = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.hierarchicalSearchControlClientes        = new mz.erp.ui.controls.HierarchicalSearchControl();
     this.ultraExplorerBarContainerControl2        = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.gridManagerView1   = new mz.erp.ui.controls.GridManagerView();
     this.gridEX1            = new Janus.Windows.GridEX.GridEX();
     this.contextMenu1       = new System.Windows.Forms.ContextMenu();
     this.Detalles           = new System.Windows.Forms.MenuItem();
     this.toolBarStandar     = new System.Windows.Forms.ToolBar();
     this.tbbAnterior        = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3     = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton4     = new System.Windows.Forms.ToolBarButton();
     this.tbbVerCtaCte       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1     = new System.Windows.Forms.ToolBarButton();
     this.tbbImprimir        = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2     = new System.Windows.Forms.ToolBarButton();
     this.tbbVerAsociaciones = new System.Windows.Forms.ToolBarButton();
     this.imglStandar        = new System.Windows.Forms.ImageList(this.components);
     this.ultraExplorerBar1  = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl4.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.udteHasta)).BeginInit();
     this.ultraExplorerBarContainerControlClientes.SuspendLayout();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl4
     //
     this.ultraExplorerBarContainerControl4.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl4.Location = new System.Drawing.Point(28, 24);
     this.ultraExplorerBarContainerControl4.Name     = "ultraExplorerBarContainerControl4";
     this.ultraExplorerBarContainerControl4.Size     = new System.Drawing.Size(871, 24);
     this.ultraExplorerBarContainerControl4.TabIndex = 3;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(871, 23);
     this.labelTarea.TabIndex  = 1;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.udteHasta);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 107);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(871, 21);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(0, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 24);
     this.label2.TabIndex  = 81;
     this.label2.Text      = "Hasta:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // udteHasta
     //
     this.udteHasta.Location = new System.Drawing.Point(112, 0);
     this.udteHasta.Name     = "udteHasta";
     this.udteHasta.Size     = new System.Drawing.Size(216, 21);
     this.udteHasta.TabIndex = 0;
     //
     // ultraExplorerBarContainerControlClientes
     //
     this.ultraExplorerBarContainerControlClientes.Controls.Add(this.hierarchicalSearchControlClientes);
     this.ultraExplorerBarContainerControlClientes.Location = new System.Drawing.Point(28, 187);
     this.ultraExplorerBarContainerControlClientes.Name     = "ultraExplorerBarContainerControlClientes";
     this.ultraExplorerBarContainerControlClientes.Size     = new System.Drawing.Size(871, 104);
     this.ultraExplorerBarContainerControlClientes.TabIndex = 4;
     //
     // hierarchicalSearchControlClientes
     //
     this.hierarchicalSearchControlClientes.BackColor = System.Drawing.Color.Transparent;
     this.hierarchicalSearchControlClientes.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.hierarchicalSearchControlClientes.Location  = new System.Drawing.Point(35, 8);
     this.hierarchicalSearchControlClientes.Name      = "hierarchicalSearchControlClientes";
     this.hierarchicalSearchControlClientes.Size      = new System.Drawing.Size(784, 88);
     this.hierarchicalSearchControlClientes.TabIndex  = 56;
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.gridManagerView1);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.gridEX1);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 227);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(871, 255);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // gridManagerView1
     //
     this.gridManagerView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.gridManagerView1.BackColor = System.Drawing.Color.Transparent;
     this.gridManagerView1.Location  = new System.Drawing.Point(0, 8);
     this.gridManagerView1.Name      = "gridManagerView1";
     this.gridManagerView1.Size      = new System.Drawing.Size(872, 24);
     this.gridManagerView1.TabIndex  = 7;
     //
     // gridEX1
     //
     this.gridEX1.AllowEdit         = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridEX1.AlternatingColors = true;
     this.gridEX1.Anchor            = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.gridEX1.ContextMenu = this.contextMenu1;
     this.gridEX1.ControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEX1.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridEX1.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEX1.EnterKeyBehavior                = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.gridEX1.Font                            = new System.Drawing.Font("Tahoma", 8.25F);
     this.gridEX1.GroupByBoxInfoText              = "Arraste un encabezado de columna hasta aquí para agrupar por esa columna.";
     this.gridEX1.GroupByBoxVisible               = false;
     this.gridEX1.HeaderFormatStyle.FontBold      = Janus.Windows.GridEX.TriState.True;
     this.gridEX1.HeaderFormatStyle.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.gridEX1.IncrementalSearchMode           = Janus.Windows.GridEX.IncrementalSearchMode.FirstCharacter;
     this.gridEX1.InvalidValueAction              = Janus.Windows.GridEX.InvalidValueAction.DiscardChangesAndShowErrorMessage;
     this.gridEX1.Location                        = new System.Drawing.Point(0, 40);
     this.gridEX1.Name                            = "gridEX1";
     this.gridEX1.RecordNavigator                 = true;
     this.gridEX1.RecordNavigatorText             = "Registro:|de";
     this.gridEX1.RowHeaders                      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.gridEX1.ShowEmptyFields                 = false;
     this.gridEX1.Size                            = new System.Drawing.Size(872, 208);
     this.gridEX1.TabIndex                        = 6;
     this.gridEX1.UpdateMode                      = Janus.Windows.GridEX.UpdateMode.CellUpdate;
     //
     // contextMenu1
     //
     this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.Detalles
     });
     this.contextMenu1.Popup += new System.EventHandler(this.contextMenu1_Popup);
     //
     // Detalles
     //
     this.Detalles.Index  = 0;
     this.Detalles.Text   = "Ver detalle";
     this.Detalles.Click += new System.EventHandler(this.Detalles_Click);
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.toolBarButton3,
         this.tbbSiguiente,
         this.toolBarButton4,
         this.tbbVerCtaCte,
         this.toolBarButton1,
         this.tbbImprimir,
         this.toolBarButton2,
         this.tbbVerAsociaciones
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(920, 28);
     this.toolBarStandar.TabIndex       = 17;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "Anterior";
     //
     // toolBarButton3
     //
     this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "Siguiente";
     //
     // toolBarButton4
     //
     this.toolBarButton4.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbVerCtaCte
     //
     this.tbbVerCtaCte.ImageIndex = 6;
     this.tbbVerCtaCte.Text       = "Detalle &Cta Cte";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbImprimir
     //
     this.tbbImprimir.ImageIndex = 4;
     this.tbbImprimir.Text       = "&Imprimir";
     this.tbbImprimir.Visible    = false;
     //
     // toolBarButton2
     //
     this.toolBarButton2.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.toolBarButton2.Visible = false;
     //
     // tbbVerAsociaciones
     //
     this.tbbVerAsociaciones.Text = "Ver Cta. Cte.";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl4);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControlClientes);
     this.ultraExplorerBar1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl4;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 24;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 21;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text      = "Filtros";
     ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControlClientes;
     ultraExplorerBarGroup3.Expanded  = false;
     ultraExplorerBarGroup3.Key       = "Jerarquia";
     ultraExplorerBarGroup3.Settings.ContainerHeight = 104;
     ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text      = "Jerarquia Clientes";
     ultraExplorerBarGroup4.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup4.Settings.ContainerHeight = 255;
     ultraExplorerBarGroup4.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup4.Text = "Detalle";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3,
         ultraExplorerBarGroup4
     });
     this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 28);
     this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size     = new System.Drawing.Size(920, 642);
     this.ultraExplorerBar1.TabIndex = 78;
     //
     // FrmVisualizacionCuentaCorrienteGeneral
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(920, 670);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.KeyPreview = true;
     this.Name       = "FrmVisualizacionCuentaCorrienteGeneral";
     this.Text       = "Cuenta Corriente";
     this.ultraExplorerBarContainerControl4.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.udteHasta)).EndInit();
     this.ultraExplorerBarContainerControlClientes.ResumeLayout(false);
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #12
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmMovimientosCajaEx));
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     Infragistics.Win.Appearance    appearance1    = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance2    = new Infragistics.Win.Appearance();
     Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.uneTotal                = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.ubEliminar              = new Infragistics.Win.Misc.UltraButton();
     this.imglStandar             = new System.Windows.Forms.ImageList(this.components);
     this.ubAgregar               = new Infragistics.Win.Misc.UltraButton();
     this.label1                  = new System.Windows.Forms.Label();
     this.gridEXValores           = new Janus.Windows.GridEX.GridEX();
     this.gridEXFormasDePago      = new Janus.Windows.GridEX.GridEX();
     this.ultraLabel1             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3             = new Infragistics.Win.Misc.UltraLabel();
     this.mzCmbTiposMovimiento    = new mz.erp.ui.controls.mzComboEditor();
     this.ultraLabel2             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraCalendarCombo1     = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.ultraLabel4             = new Infragistics.Win.Misc.UltraLabel();
     this.gridExCotizaciones      = new Janus.Windows.GridEX.GridEX();
     this.mzCEInstanciasCaja      = new mz.erp.ui.controls.mzComboEditor();
     this.label2                  = new System.Windows.Forms.Label();
     this.ultraLabel5             = new Infragistics.Win.Misc.UltraLabel();
     this.txtObservaciones        = new System.Windows.Forms.TextBox();
     this.mzCmbSubTiposMovimiento = new mz.erp.ui.controls.mzComboEditor();
     this.ultraLabel6             = new Infragistics.Win.Misc.UltraLabel();
     this.txtNumero               = new Infragistics.Win.UltraWinMaskedEdit.UltraMaskedEdit();
     this.ultraLabel7             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel8             = new Infragistics.Win.Misc.UltraLabel();
     this.mzCmbTipoComp           = new mz.erp.ui.controls.mzComboEditor();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uneTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEXValores)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEXFormasDePago)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbTiposMovimiento)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCalendarCombo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridExCotizaciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEInstanciasCaja)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbSubTiposMovimiento)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbTipoComp)).BeginInit();
     this.SuspendLayout();
     //
     // toolBarStandar
     //
     this.toolBarStandar.Name = "toolBarStandar";
     this.toolBarStandar.Size = new System.Drawing.Size(864, 28);
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 240;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text = "Detalle de Valores";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1
     });
     this.ultraExplorerBar1.GroupSettings.ForceSerialization = true;
     this.ultraExplorerBar1.ItemSettings.ForceSerialization  = true;
     this.ultraExplorerBar1.Margins.ForceSerialization       = true;
     this.ultraExplorerBar1.Name = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;                                                             //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size = new System.Drawing.Size(864, 454);
     this.ultraExplorerBar1.Controls.SetChildIndex(this.ultraExplorerBarContainerControl2, 0);
     this.ultraExplorerBar1.Controls.SetChildIndex(this.ultraExplorerBarContainerControl1, 0);
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCmbTipoComp);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.txtNumero);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel7);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel8);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCmbSubTiposMovimiento);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel6);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.txtObservaciones);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel5);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCEInstanciasCaja);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.gridExCotizaciones);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel4);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.gridEXFormasDePago);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCmbTiposMovimiento);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraCalendarCombo1);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, -21);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(798, 151);
     this.ultraExplorerBarContainerControl1.TabStop  = false;
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.uneTotal);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ubEliminar);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ubAgregar);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.label1);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.gridEXValores);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 189);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(798, 240);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // uneTotal
     //
     this.uneTotal.Anchor        = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.uneTotal.Location      = new System.Drawing.Point(671, 8);
     this.uneTotal.MaskInput     = "{LOC}nnnnnnn.nn";
     this.uneTotal.Name          = "uneTotal";
     this.uneTotal.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.uneTotal.Size          = new System.Drawing.Size(96, 21);
     this.uneTotal.TabIndex      = 2;
     this.uneTotal.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     //
     // ubEliminar
     //
     this.ubEliminar.ImageList = this.imglStandar;
     this.ubEliminar.Location  = new System.Drawing.Point(111, 8);
     this.ubEliminar.Name      = "ubEliminar";
     this.ubEliminar.Size      = new System.Drawing.Size(97, 24);
     this.ubEliminar.TabIndex  = 1;
     this.ubEliminar.Text      = "Eliminar";
     this.ubEliminar.Click    += new System.EventHandler(this.ubEliminar_Click);
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // ubAgregar
     //
     this.ubAgregar.ImageList = this.imglStandar;
     this.ubAgregar.Location  = new System.Drawing.Point(8, 8);
     this.ubAgregar.Name      = "ubAgregar";
     this.ubAgregar.Size      = new System.Drawing.Size(96, 24);
     this.ubAgregar.TabIndex  = 0;
     this.ubAgregar.Text      = "Agregar";
     this.ubAgregar.Click    += new System.EventHandler(this.ubAgregar_Click);
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(565, 10);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 16);
     this.label1.TabIndex  = 17;
     this.label1.Text      = "Total: ";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // gridEXValores
     //
     this.gridEXValores.AllowDelete      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.gridEXValores.AllowEdit        = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridEXValores.AutomaticSort    = false;
     this.gridEXValores.ContinuousScroll = false;
     this.gridEXValores.Cursor           = System.Windows.Forms.Cursors.Default;
     this.gridEXValores.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEXValores.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridEXValores.GroupByBoxVisible  = false;
     this.gridEXValores.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEXValores.Location           = new System.Drawing.Point(0, 40);
     this.gridEXValores.Name            = "gridEXValores";
     this.gridEXValores.ScrollBars      = Janus.Windows.GridEX.ScrollBars.Both;
     this.gridEXValores.Size            = new System.Drawing.Size(768, 192);
     this.gridEXValores.TabIndex        = 3;
     this.gridEXValores.RecordsDeleted += new System.EventHandler(this.gridEXValores_RecordsDeleted);
     this.gridEXValores.DoubleClick    += new System.EventHandler(this.gridEXValores_DoubleClick);
     //
     // gridEXFormasDePago
     //
     this.gridEXFormasDePago.AllowEdit          = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridEXFormasDePago.Cursor             = System.Windows.Forms.Cursors.Default;
     this.gridEXFormasDePago.GroupByBoxVisible  = false;
     this.gridEXFormasDePago.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEXFormasDePago.Location           = new System.Drawing.Point(760, 0);
     this.gridEXFormasDePago.Name         = "gridEXFormasDePago";
     this.gridEXFormasDePago.ScrollBars   = Janus.Windows.GridEX.ScrollBars.Both;
     this.gridEXFormasDePago.Size         = new System.Drawing.Size(256, 56);
     this.gridEXFormasDePago.TabIndex     = 3;
     this.gridEXFormasDePago.Visible      = false;
     this.gridEXFormasDePago.DoubleClick += new System.EventHandler(this.gridEXFormasDePago_DoubleClick);
     //
     // ultraLabel1
     //
     this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel1.Location  = new System.Drawing.Point(752, 8);
     this.ultraLabel1.Name      = "ultraLabel1";
     this.ultraLabel1.Size      = new System.Drawing.Size(96, 24);
     this.ultraLabel1.TabIndex  = 19;
     this.ultraLabel1.Text      = "Formas De Pago";
     this.ultraLabel1.Visible   = false;
     //
     // ultraLabel3
     //
     this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel3.Location  = new System.Drawing.Point(0, 25);
     this.ultraLabel3.Name      = "ultraLabel3";
     this.ultraLabel3.Size      = new System.Drawing.Size(62, 16);
     this.ultraLabel3.TabIndex  = 18;
     this.ultraLabel3.Text      = "Fecha";
     //
     // mzCmbTiposMovimiento
     //
     this.mzCmbTiposMovimiento.AutoComplete          = true;
     this.mzCmbTiposMovimiento.DataSource            = null;
     this.mzCmbTiposMovimiento.DisplayMember         = "";
     this.mzCmbTiposMovimiento.DisplayMemberCaption  = "";
     this.mzCmbTiposMovimiento.DropDownStyle         = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbTiposMovimiento.ImageTransparentColor = System.Drawing.Color.WhiteSmoke;
     this.mzCmbTiposMovimiento.Location             = new System.Drawing.Point(120, 46);
     this.mzCmbTiposMovimiento.MaxItemsDisplay      = 7;
     this.mzCmbTiposMovimiento.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbTiposMovimiento.Name               = "mzCmbTiposMovimiento";
     this.mzCmbTiposMovimiento.Size               = new System.Drawing.Size(272, 21);
     this.mzCmbTiposMovimiento.SorterMember       = "";
     this.mzCmbTiposMovimiento.TabIndex           = 2;
     this.mzCmbTiposMovimiento.ValueMember        = "";
     this.mzCmbTiposMovimiento.ValueMemberCaption = "";
     this.mzCmbTiposMovimiento.ValueChanged      += new System.EventHandler(this.mzCmbTiposMovimiento_ValueChanged);
     //
     // ultraLabel2
     //
     this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel2.Location  = new System.Drawing.Point(-1, 48);
     this.ultraLabel2.Name      = "ultraLabel2";
     this.ultraLabel2.Size      = new System.Drawing.Size(120, 16);
     this.ultraLabel2.TabIndex  = 16;
     this.ultraLabel2.Text      = "Tipo de Movimiento";
     //
     // ultraCalendarCombo1
     //
     dateButton1.Caption = "Today";
     this.ultraCalendarCombo1.DateButtons.Add(dateButton1);
     this.ultraCalendarCombo1.Enabled           = false;
     this.ultraCalendarCombo1.Location          = new System.Drawing.Point(120, 23);
     this.ultraCalendarCombo1.Name              = "ultraCalendarCombo1";
     this.ultraCalendarCombo1.NonAutoSizeHeight = 23;
     this.ultraCalendarCombo1.Size              = new System.Drawing.Size(272, 21);
     this.ultraCalendarCombo1.TabIndex          = 1;
     this.ultraCalendarCombo1.Value             = new System.DateTime(2006, 3, 20, 13, 44, 15, 429);
     //
     // ultraLabel4
     //
     this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel4.Location  = new System.Drawing.Point(752, 24);
     this.ultraLabel4.Name      = "ultraLabel4";
     this.ultraLabel4.Size      = new System.Drawing.Size(128, 16);
     this.ultraLabel4.TabIndex  = 21;
     this.ultraLabel4.Text      = "Cotizaciones Actuales";
     this.ultraLabel4.Visible   = false;
     //
     // gridExCotizaciones
     //
     this.gridExCotizaciones.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridExCotizaciones.Cursor    = System.Windows.Forms.Cursors.Default;
     this.gridExCotizaciones.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridExCotizaciones.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gridExCotizaciones.GroupByBoxVisible  = false;
     this.gridExCotizaciones.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridExCotizaciones.Location           = new System.Drawing.Point(760, 0);
     this.gridExCotizaciones.Name       = "gridExCotizaciones";
     this.gridExCotizaciones.ScrollBars = Janus.Windows.GridEX.ScrollBars.Both;
     this.gridExCotizaciones.Size       = new System.Drawing.Size(376, 48);
     this.gridExCotizaciones.TabIndex   = 5;
     this.gridExCotizaciones.Visible    = false;
     //
     // mzCEInstanciasCaja
     //
     this.mzCEInstanciasCaja.AutoComplete          = true;
     this.mzCEInstanciasCaja.DataSource            = null;
     this.mzCEInstanciasCaja.DisplayMember         = "";
     this.mzCEInstanciasCaja.DisplayMemberCaption  = "";
     this.mzCEInstanciasCaja.DropDownStyle         = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCEInstanciasCaja.ImageTransparentColor = System.Drawing.Color.WhiteSmoke;
     this.mzCEInstanciasCaja.Location             = new System.Drawing.Point(120, 0);
     this.mzCEInstanciasCaja.MaxItemsDisplay      = 7;
     this.mzCEInstanciasCaja.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCEInstanciasCaja.Name               = "mzCEInstanciasCaja";
     this.mzCEInstanciasCaja.Size               = new System.Drawing.Size(272, 21);
     this.mzCEInstanciasCaja.SorterMember       = "";
     this.mzCEInstanciasCaja.TabIndex           = 0;
     this.mzCEInstanciasCaja.ValueMember        = "";
     this.mzCEInstanciasCaja.ValueMemberCaption = "";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(0, 2);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 16);
     this.label2.TabIndex  = 24;
     this.label2.Text      = "Caja :";
     //
     // ultraLabel5
     //
     this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel5.Location  = new System.Drawing.Point(0, 93);
     this.ultraLabel5.Name      = "ultraLabel5";
     this.ultraLabel5.Size      = new System.Drawing.Size(120, 16);
     this.ultraLabel5.TabIndex  = 25;
     this.ultraLabel5.Text      = "Observaciones";
     //
     // txtObservaciones
     //
     this.txtObservaciones.Location     = new System.Drawing.Point(120, 93);
     this.txtObservaciones.Multiline    = true;
     this.txtObservaciones.Name         = "txtObservaciones";
     this.txtObservaciones.ScrollBars   = System.Windows.Forms.ScrollBars.Vertical;
     this.txtObservaciones.Size         = new System.Drawing.Size(472, 51);
     this.txtObservaciones.TabIndex     = 4;
     this.txtObservaciones.Text         = "TEXTBOX3";
     this.txtObservaciones.TextChanged += new System.EventHandler(this.txtObservaciones_TextChanged);
     //
     // mzCmbSubTiposMovimiento
     //
     this.mzCmbSubTiposMovimiento.AutoComplete          = true;
     this.mzCmbSubTiposMovimiento.DataSource            = null;
     this.mzCmbSubTiposMovimiento.DisplayMember         = "";
     this.mzCmbSubTiposMovimiento.DisplayMemberCaption  = "";
     this.mzCmbSubTiposMovimiento.DropDownStyle         = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbSubTiposMovimiento.ImageTransparentColor = System.Drawing.Color.WhiteSmoke;
     this.mzCmbSubTiposMovimiento.Location             = new System.Drawing.Point(120, 69);
     this.mzCmbSubTiposMovimiento.MaxItemsDisplay      = 7;
     this.mzCmbSubTiposMovimiento.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbSubTiposMovimiento.Name               = "mzCmbSubTiposMovimiento";
     this.mzCmbSubTiposMovimiento.Size               = new System.Drawing.Size(272, 21);
     this.mzCmbSubTiposMovimiento.SorterMember       = "";
     this.mzCmbSubTiposMovimiento.TabIndex           = 3;
     this.mzCmbSubTiposMovimiento.ValueMember        = "";
     this.mzCmbSubTiposMovimiento.ValueMemberCaption = "";
     //
     // ultraLabel6
     //
     this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel6.Location  = new System.Drawing.Point(0, 71);
     this.ultraLabel6.Name      = "ultraLabel6";
     this.ultraLabel6.Size      = new System.Drawing.Size(120, 16);
     this.ultraLabel6.TabIndex  = 28;
     this.ultraLabel6.Text      = "Sub-Tipo de Movim.";
     //
     // txtNumero
     //
     this.txtNumero.EditAs    = Infragistics.Win.UltraWinMaskedEdit.EditAsType.UseSpecifiedMask;
     this.txtNumero.InputMask = "\\A-####-########";
     this.txtNumero.Location  = new System.Drawing.Point(576, 24);
     this.txtNumero.Name      = "txtNumero";
     this.txtNumero.TabIndex  = 6;
     this.txtNumero.Text      = "A--";
     //
     // ultraLabel7
     //
     appearance1.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel7.Appearance = appearance1;
     this.ultraLabel7.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel7.Location   = new System.Drawing.Point(448, 8);
     this.ultraLabel7.Name       = "ultraLabel7";
     this.ultraLabel7.Size       = new System.Drawing.Size(116, 16);
     this.ultraLabel7.TabIndex   = 35;
     this.ultraLabel7.Text       = "Tipo de Comprobante";
     //
     // ultraLabel8
     //
     appearance2.TextHAlign      = Infragistics.Win.HAlign.Right;
     this.ultraLabel8.Appearance = appearance2;
     this.ultraLabel8.BackColor  = System.Drawing.Color.Transparent;
     this.ultraLabel8.Location   = new System.Drawing.Point(504, 32);
     this.ultraLabel8.Name       = "ultraLabel8";
     this.ultraLabel8.Size       = new System.Drawing.Size(62, 11);
     this.ultraLabel8.TabIndex   = 34;
     this.ultraLabel8.Text       = "Número";
     //
     // mzCmbTipoComp
     //
     this.mzCmbTipoComp.AutoComplete          = true;
     this.mzCmbTipoComp.DataSource            = null;
     this.mzCmbTipoComp.DisplayMember         = "";
     this.mzCmbTipoComp.DisplayMemberCaption  = "";
     this.mzCmbTipoComp.DropDownStyle         = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCmbTipoComp.ImageTransparentColor = System.Drawing.Color.WhiteSmoke;
     valueListItem1.DataValue   = "Fact.A";
     valueListItem1.DisplayText = "Fact. A";
     valueListItem2.DataValue   = "Fact.B";
     valueListItem2.DisplayText = "Fact. B";
     valueListItem3.DataValue   = "Fact.C";
     valueListItem3.DisplayText = "Fact. C";
     valueListItem4.DataValue   = "Ticket";
     valueListItem4.DisplayText = "Ticket";
     valueListItem5.DataValue   = "No";
     valueListItem5.DisplayText = "No/I";
     this.mzCmbTipoComp.Items.Add(valueListItem1);
     this.mzCmbTipoComp.Items.Add(valueListItem2);
     this.mzCmbTipoComp.Items.Add(valueListItem3);
     this.mzCmbTipoComp.Items.Add(valueListItem4);
     this.mzCmbTipoComp.Items.Add(valueListItem5);
     this.mzCmbTipoComp.Location             = new System.Drawing.Point(576, 0);
     this.mzCmbTipoComp.MaxItemsDisplay      = 7;
     this.mzCmbTipoComp.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCmbTipoComp.Name               = "mzCmbTipoComp";
     this.mzCmbTipoComp.Size               = new System.Drawing.Size(137, 21);
     this.mzCmbTipoComp.SorterMember       = "";
     this.mzCmbTipoComp.TabIndex           = 5;
     this.mzCmbTipoComp.ValueMember        = "";
     this.mzCmbTipoComp.ValueMemberCaption = "";
     this.mzCmbTipoComp.ValueChanged      += new System.EventHandler(this.mzCmbTipoComp_ValueChanged);
     //
     // FrmMovimientosCajaEx
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(864, 482);
     this.Name = "FrmMovimientosCajaEx";
     this.Text = "Movimiento de Caja";
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uneTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEXValores)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEXFormasDePago)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbTiposMovimiento)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCalendarCombo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridExCotizaciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEInstanciasCaja)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbSubTiposMovimiento)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCmbTipoComp)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #13
0
ファイル: Bilanc.cs プロジェクト: azeneli2000/HotelManagement
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.groupBox1      = new VisionInfoSolutionLibrary.GroupBox();
     this.dtpMbarimi     = new VisionInfoSolutionLibrary.DateTimePicker();
     this.dtpFillimi     = new VisionInfoSolutionLibrary.DateTimePicker();
     this.lblDeri        = new VisionInfoSolutionLibrary.Label();
     this.lblNga         = new VisionInfoSolutionLibrary.Label();
     this.btnKerko       = new VisionInfoSolutionLibrary.Button(this.components);
     this.grid1          = new VisionInfoSolutionLibrary.DataGrid();
     this.ds             = new System.Data.DataSet();
     this.ds1            = new System.Data.DataSet();
     this.lblgrid1       = new VisionInfoSolutionLibrary.Label();
     this.lblgrid2       = new VisionInfoSolutionLibrary.Label();
     this.groupBox2      = new VisionInfoSolutionLibrary.GroupBox();
     this.dsDetyrime     = new System.Data.DataSet();
     this.dsBilanciDitor = new System.Data.DataSet();
     this.gridEX2        = new Janus.Windows.GridEX.GridEX();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ds)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ds1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox2)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsDetyrime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBilanciDitor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEX2)).BeginInit();
     this.SuspendLayout();
     //
     // lblStatus
     //
     this.lblStatus.Name   = "lblStatus";
     this.lblStatus.Size   = new System.Drawing.Size(1016, 24);
     this.lblStatus.Click += new System.EventHandler(this.lblStatus_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.dtpMbarimi);
     this.groupBox1.Controls.Add(this.dtpFillimi);
     this.groupBox1.Controls.Add(this.lblDeri);
     this.groupBox1.Controls.Add(this.lblNga);
     this.groupBox1.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location    = new System.Drawing.Point(10, 40);
     this.groupBox1.Name        = "groupBox1";
     this.groupBox1.Size        = new System.Drawing.Size(256, 76);
     this.groupBox1.TabIndex    = 1;
     this.groupBox1.Text        = "Kerko bilanc per datat";
     this.groupBox1.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // dtpMbarimi
     //
     this.dtpMbarimi.CustomFormat        = "dd.MM.yyyy";
     this.dtpMbarimi.DefaultErrorMessage = "";
     this.dtpMbarimi.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpMbarimi.IsValid      = true;
     this.dtpMbarimi.Location     = new System.Drawing.Point(92, 44);
     this.dtpMbarimi.Name         = "dtpMbarimi";
     this.dtpMbarimi.Required     = false;
     this.dtpMbarimi.ShowCheckBox = true;
     this.dtpMbarimi.ShowUpDown   = true;
     this.dtpMbarimi.Size         = new System.Drawing.Size(148, 20);
     this.dtpMbarimi.TabIndex     = 4;
     this.dtpMbarimi.Value        = new System.DateTime(2005, 10, 25, 16, 9, 0, 0);
     //
     // dtpFillimi
     //
     this.dtpFillimi.CustomFormat        = "dd.MM.yyyy";
     this.dtpFillimi.DefaultErrorMessage = "";
     this.dtpFillimi.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFillimi.IsValid      = true;
     this.dtpFillimi.Location     = new System.Drawing.Point(92, 16);
     this.dtpFillimi.Name         = "dtpFillimi";
     this.dtpFillimi.Required     = false;
     this.dtpFillimi.ShowCheckBox = true;
     this.dtpFillimi.ShowUpDown   = true;
     this.dtpFillimi.Size         = new System.Drawing.Size(148, 20);
     this.dtpFillimi.TabIndex     = 3;
     this.dtpFillimi.Value        = new System.DateTime(2005, 10, 25, 16, 7, 0, 0);
     //
     // lblDeri
     //
     this.lblDeri.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.lblDeri.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblDeri.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(64)), ((System.Byte)(64)));
     this.lblDeri.Location  = new System.Drawing.Point(12, 44);
     this.lblDeri.Name      = "lblDeri";
     this.lblDeri.Size      = new System.Drawing.Size(72, 20);
     this.lblDeri.TabIndex  = 2;
     this.lblDeri.Text      = "Date mbarimi";
     this.lblDeri.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblNga
     //
     this.lblNga.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.lblNga.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblNga.Location  = new System.Drawing.Point(28, 16);
     this.lblNga.Name      = "lblNga";
     this.lblNga.Size      = new System.Drawing.Size(56, 20);
     this.lblNga.TabIndex  = 1;
     this.lblNga.Text      = "Date fillimi";
     this.lblNga.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnKerko
     //
     this.btnKerko.BackColor    = System.Drawing.Color.Blue;
     this.btnKerko.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.btnKerko.DoValidation = true;
     this.btnKerko.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnKerko.Location     = new System.Drawing.Point(284, 68);
     this.btnKerko.Name         = "btnKerko";
     this.btnKerko.Size         = new System.Drawing.Size(90, 21);
     this.btnKerko.TabIndex     = 5;
     this.btnKerko.Text         = "Kerko";
     this.toolTips.SetToolTip(this.btnKerko, "Shfaq bilancin midis dy datave te zgjedhura.");
     this.btnKerko.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnKerko.Click      += new System.EventHandler(this.btnKerko_Click);
     //
     // grid1
     //
     this.grid1.AllowSorting            = false;
     this.grid1.BackgroundColor         = System.Drawing.Color.WhiteSmoke;
     this.grid1.CanDelete               = true;
     this.grid1.CaptionVisible          = false;
     this.grid1.DataMember              = "";
     this.grid1.HeaderBackColor         = System.Drawing.SystemColors.InactiveCaptionText;
     this.grid1.HeaderForeColor         = System.Drawing.SystemColors.ControlText;
     this.grid1.HideHorizontalScrollBar = false;
     this.grid1.HideVerticalScrollBar   = false;
     this.grid1.Location            = new System.Drawing.Point(12, 40);
     this.grid1.Name                = "grid1";
     this.grid1.ParentRowsBackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.grid1.RowHeadersVisible   = false;
     this.grid1.RowHeaderWidth      = 36;
     this.grid1.Selekto             = true;
     this.grid1.Size                = new System.Drawing.Size(228, 260);
     this.grid1.TabIndex            = 6;
     this.toolTips.SetToolTip(this.grid1, "Bilanci per intervalin midis dy datave.");
     this.grid1.CurrentCellChanged += new System.EventHandler(this.grid1_CurrentCellChanged);
     //
     // ds
     //
     this.ds.DataSetName = "NewDataSet";
     this.ds.Locale      = new System.Globalization.CultureInfo("sq-AL");
     //
     // ds1
     //
     this.ds1.DataSetName = "NewDataSet";
     this.ds1.Locale      = new System.Globalization.CultureInfo("sq-AL");
     //
     // lblgrid1
     //
     this.lblgrid1.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.lblgrid1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblgrid1.Location  = new System.Drawing.Point(12, 12);
     this.lblgrid1.Name      = "lblgrid1";
     this.lblgrid1.Size      = new System.Drawing.Size(232, 28);
     this.lblgrid1.TabIndex  = 4;
     this.lblgrid1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // lblgrid2
     //
     this.lblgrid2.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.lblgrid2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblgrid2.Location  = new System.Drawing.Point(280, 12);
     this.lblgrid2.Name      = "lblgrid2";
     this.lblgrid2.Size      = new System.Drawing.Size(292, 28);
     this.lblgrid2.TabIndex  = 11;
     this.lblgrid2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.lblgrid2);
     this.groupBox2.Controls.Add(this.grid1);
     this.groupBox2.Controls.Add(this.lblgrid1);
     this.groupBox2.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location    = new System.Drawing.Point(10, 124);
     this.groupBox2.Name        = "groupBox2";
     this.groupBox2.Size        = new System.Drawing.Size(986, 316);
     this.groupBox2.TabIndex    = 12;
     this.groupBox2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2003;
     //
     // dsDetyrime
     //
     this.dsDetyrime.DataSetName = "NewDataSet";
     this.dsDetyrime.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // dsBilanciDitor
     //
     this.dsBilanciDitor.DataSetName = "NewDataSet";
     this.dsBilanciDitor.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // gridEX2
     //
     this.gridEX2.AlternatingColors = true;
     this.gridEX2.AlternatingRowFormatStyle.BackColor = System.Drawing.Color.Bisque;
     this.gridEX2.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridEX2.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridEX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridEX2.GroupByBoxVisible = false;
     this.gridEX2.GroupMode         = Janus.Windows.GridEX.GroupMode.Collapsed;
     this.gridEX2.GroupRowFormatStyle.Appearance = Janus.Windows.GridEX.Appearance.RaisedLight;
     this.gridEX2.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
     this.gridEX2.HeaderFormatStyle.BackColor         = System.Drawing.SystemColors.InactiveCaptionText;
     this.gridEX2.HeaderFormatStyle.BackColorGradient = System.Drawing.SystemColors.InactiveCaptionText;
     this.gridEX2.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridEX2.LayoutData         = "<GridEXLayoutData><RootTable><AllowEdit>False</AllowEdit><Columns Collection=\"tru" +
                                       "e\"><Column0 ID=\"Emri\"><Caption>Emri</Caption><DataMember>Emri</DataMember><Key>E" +
                                       "mri</Key><Position>0</Position><Width>130</Width><HeaderStyle><BackColor>Inactiv" +
                                       "eCaptionText</BackColor><BackColorAlphaMode>UseAlpha</BackColorAlphaMode><BlendG" +
                                       "radient>0</BlendGradient><BackColorGradient>InactiveCaptionText</BackColorGradie" +
                                       "nt><BackgroundGradientMode>Diagonal</BackgroundGradientMode></HeaderStyle></Colu" +
                                       "mn0><Column1 ID=\"Koment\"><Caption>Koment</Caption><DataMember>Koment</DataMember" +
                                       "><Key>Koment</Key><Position>1</Position><Width>189</Width><HeaderStyle><BackColo" +
                                       "r>InactiveCaptionText</BackColor><BackColorGradient>InactiveCaptionText</BackCol" +
                                       "orGradient></HeaderStyle></Column1><Column2 ID=\"Vlera\"><Caption>Vlera e hedhur</" +
                                       "Caption><DataMember>Vlera</DataMember><Key>Vlera</Key><Position>2</Position><Wid" +
                                       "th>82</Width></Column2><Column3 ID=\"Komisioni\"><Caption>Komisioni</Caption><Data" +
                                       "Member>Komisioni</DataMember><Key>Komisioni</Key><Position>3</Position><Width>57" +
                                       "</Width></Column3><Column4 ID=\"Totali\"><AggregateFunction>Sum</AggregateFunction" +
                                       "><Caption>Totali</Caption><DataMember>Totali</DataMember><DefaultGroupFormatStri" +
                                       "ng /><Key>Totali</Key><Position>4</Position><Width>119</Width><TotalFormatString" +
                                       ">SHUMA = {0.00}</TotalFormatString><HeaderStyle><BackColor>InactiveCaptionText</" +
                                       "BackColor><BackColorGradient>InactiveCaptionText</BackColorGradient></HeaderStyl" +
                                       "e></Column4><Column5 ID=\"Perdoruesi\"><Caption>Perdoruesi</Caption><DataMember>Pe" +
                                       "rdoruesi</DataMember><Key>Perdoruesi</Key><Position>5</Position></Column5><Colum" +
                                       "n6 ID=\"Larguar\"><Caption>Larguar</Caption><DataMember>LARGUAR</DataMember><Key>L" +
                                       "arguar</Key><Position>6</Position><Visible>False</Visible><Width>8</Width></Colu" +
                                       "mn6></Columns><GroupCondition ID=\"\" /><Key>Bilanci ditor</Key><SortKeys Collecti" +
                                       "on=\"true\"><SortKey0 ID=\"SortKey0\"><ColIndex>4</ColIndex></SortKey0></SortKeys><H" +
                                       "eaderFormatStyle><Appearance>Flat</Appearance><BackColor>InactiveCaptionText</Ba" +
                                       "ckColor></HeaderFormatStyle><GroupRowFormatStyle><BackColor>White</BackColor><Ba" +
                                       "ckColorGradient>White</BackColorGradient></GroupRowFormatStyle><TotalRowFormatSt" +
                                       "yle><BackColor>InactiveCaptionText</BackColor><BackColorGradient>InactiveCaption" +
                                       "Text</BackColorGradient></TotalRowFormatStyle></RootTable></GridEXLayoutData>";
     this.gridEX2.Location = new System.Drawing.Point(288, 164);
     this.gridEX2.Name     = "gridEX2";
     this.gridEX2.Size     = new System.Drawing.Size(696, 260);
     this.gridEX2.TabIndex = 7;
     this.gridEX2.TableHeaderFormatStyle.Appearance = Janus.Windows.GridEX.Appearance.RaisedLight;
     this.gridEX2.TableHeaderFormatStyle.BackColor  = System.Drawing.SystemColors.InactiveCaptionText;
     this.gridEX2.ThemedAreas = Janus.Windows.GridEX.ThemedArea.ScrollBars;
     this.toolTips.SetToolTip(this.gridEX2, "Bilanci i detajuar per diten e zgjedhur.");
     this.gridEX2.TotalRow      = Janus.Windows.GridEX.InheritableBoolean.True;
     this.gridEX2.TreeLineColor = System.Drawing.SystemColors.Desktop;
     //
     // Bilanc
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1016, 704);
     this.Controls.Add(this.gridEX2);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.btnKerko);
     this.HelpFile      = "BILANC DITOR.htm";
     this.Name          = "Bilanc";
     this.Text          = "Bilanc";
     this.TitullGjeresi = 1016;
     this.Load         += new System.EventHandler(this.Bilanc_Load);
     this.Controls.SetChildIndex(this.btnKerko, 0);
     this.Controls.SetChildIndex(this.groupBox1, 0);
     this.Controls.SetChildIndex(this.groupBox2, 0);
     this.Controls.SetChildIndex(this.lblStatus, 0);
     this.Controls.SetChildIndex(this.gridEX2, 0);
     ((System.ComponentModel.ISupportInitialize)(this.groupBox1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ds)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ds1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBox2)).EndInit();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsDetyrime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBilanciDitor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEX2)).EndInit();
     this.ResumeLayout(false);
 }