Beispiel #1
0
        private void frmStaUsuario_Load(object sender, EventArgs e)
        {
            tipoPais = frmRegristroUsuario.tipoPais;
            Thread.CurrentThread.CurrentUICulture = new CultureInfo(tipoPais);
            AplicarIdioma();

            //lblDescripcion.Visible = false;
            this.Location = new System.Drawing.Point(0, 0);
            //lstViewStaUsuarios.OwnerDraw = true;

            ventTbSatus = new frmTbStatus();
            ventTbSatus.cargarLsvStatus();
        }
Beispiel #2
0
        private void btnPuntos_Click(object sender, EventArgs e)
        {
            //this.Location = new System.Drawing.Point(0, 175);

            // this.Hide();
            if (ventana == 0)
            {
                ventTbSatus         = new frmTbStatus();
                ventTbSatus.pasado += new frmTbStatus.pasar(ejecutar);
                ventTbSatus.ShowDialog();

                ventana++;
            }
            else
            {
                ventTbSatus.pasado += new frmTbStatus.pasar(ejecutar);
                ventTbSatus.ShowDialog();
            }
        }