Beispiel #1
0
        private void frmEnviarCertificados_Load(object sender, EventArgs e)
        {
            OperationResult objOperationResult = new OperationResult();
            EmailBL         oEmailBL           = new EmailBL();

            txtLabel.Select();
            txtLabel.DataSource    = oEmailBL.LlenarEmail(ref objOperationResult);
            txtLabel.DisplayMember = "v_Email";
            txtLabel.ValueMember   = "v_Email";

            txtLabel.AutoCompleteMode      = Infragistics.Win.AutoCompleteMode.Suggest;
            txtLabel.AutoSuggestFilterMode = Infragistics.Win.AutoSuggestFilterMode.Contains;
            this.txtLabel.DropDownWidth    = 550;
            //this.txtLabel.DisplayLayout.AutoFitStyle = AutoFitStyle.ResizeAllColumns;

            txtLabel.DisplayLayout.Bands[0].Columns[0].Width = 10;
            txtLabel.DisplayLayout.Bands[0].Columns[1].Width = 350;
        }
        private void frmEnvioEmailCalendar_Load(object sender, EventArgs e)
        {
            OperationResult  objOperationResult = new OperationResult();
            List <EmailList> ListaEmails        = new List <EmailList>();
            EmailBL          oEmailBL           = new EmailBL();

            txtLabel.Select();
            txtLabel.DataSource    = oEmailBL.LlenarEmail(ref objOperationResult);
            txtLabel.DisplayMember = "v_Email";
            txtLabel.ValueMember   = "v_Email";

            txtLabel.AutoCompleteMode      = Infragistics.Win.AutoCompleteMode.Suggest;
            txtLabel.AutoSuggestFilterMode = Infragistics.Win.AutoSuggestFilterMode.Contains;
            this.txtLabel.DropDownWidth    = 550;
            //this.txtLabel.DisplayLayout.AutoFitStyle = AutoFitStyle.ResizeAllColumns;

            txtLabel.DisplayLayout.Bands[0].Columns[0].Width = 10;
            txtLabel.DisplayLayout.Bands[0].Columns[1].Width = 350;
            var clientOrganization = BLL.Utils.GetJoinOrganization(ref objOperationResult, Globals.ClientSession.i_CurrentExecutionNodeId);
        }