コード例 #1
0
        private void FrmacfGIS_UbicacionElectrica_Load(object sender, EventArgs e)
        {
            DataTable dat = NacfGIS_UbicacionElectrica.Last();

            if (dat.Rows.Count > 0)
            {
                DataRow row = dat.Rows[0];
                //guardo datos en variables
                lbltultimoid.Text = Convert.ToString(row["ACFid"]);
                ACFidNum          = lbltultimoid.Text;
            }
            else
            {
                lbltultimoid.Text = "No Existe Registro";
            }

            dataListado.DataSource = NGIS_AFintermedia.Mostrar();
        }
コード例 #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            Form FrmacfGIS_UbicacionElectricaImportar = new FrmacfGIS_UbicacionElectricaImportar();

            FrmacfGIS_UbicacionElectricaImportar.ShowDialog();

            dataListado.DataSource = NGIS_AFintermedia.Mostrar();

            DataTable dat = NacfGIS_UbicacionElectrica.Last();

            if (dat.Rows.Count > 0)
            {
                DataRow row = dat.Rows[0];
                //guardo datos en variables
                lbltultimoid.Text = Convert.ToString(row["ACFid"]);
                ACFidNum          = lbltultimoid.Text;
            }
            else
            {
                lbltultimoid.Text = "No Existe Registro";
            }
        }
コード例 #3
0
        private void button1_Click(object sender, EventArgs e)
        {
            string val1 = "0";
            string val2 = "0";
            string Rta  = string.Empty;

            MessageBox.Show("Espere Por favor....");
            try
            {
                foreach (DataGridViewRow row in dataListado.Rows)
                {              // capturar ultimo Id Activo Fijo
                    string ACFidNum;

                    DataTable dat  = NacfGIS_UbicacionElectrica.Last();
                    DataRow   rows = dat.Rows[0];
                    ACFidNum = Convert.ToString(rows["ACFid"]);
                    int NumId = Convert.ToInt32(ACFidNum);
                    NumId    = NumId + 1;
                    ACFidNum = Convert.ToString(NumId);
                    MessageBox.Show(ACFidNum);
                    // -----------------------------

                    Rta = NacfACFp_Activo_Fijo.Editar3(
                        ACFidNum
                        , this.dataListado.CurrentRow.Cells[18].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[19].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[21].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[23].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[25].Value.ToString()
                        , val1
                        , val2
                        );

                    Rta = NacfGIS_UbicacionElectrica.Editar(
                        this.dataListado.CurrentRow.Cells[0].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[1].Value.ToString()
                        , ACFidNum
                        , this.dataListado.CurrentRow.Cells[3].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[4].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[5].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[6].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[7].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[8].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[9].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[10].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[11].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[12].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[13].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[14].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[15].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[16].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[17].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[18].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[19].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[20].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[21].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[22].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[23].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[24].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[25].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[26].Value.ToString()
                        , this.dataListado.CurrentRow.Cells[27].Value.ToString()
                        );
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message + ex.StackTrace);
            }
            this.Dispose();
        }