Ejemplo n.º 1
0
        private void FormVenta_Load(object sender, EventArgs e)
        {
            BLL.ClassColores productos = new BLL.ClassColores();
            textBox1.Text = "0";


            productos = new ClassColores();
            this.dataGridView3.DataSource = productos.MostrarClienteNIT(cliente);
            textBox4.Enabled = false;
            textBox5.Enabled = false;
            textBox6.Enabled = false;
            textBox7.Enabled = false;
            textBox3.Enabled = false;
            textBox4.Text    = this.dataGridView3.Rows[0].Cells[1].Value.ToString();
            textBox5.Text    = this.dataGridView3.Rows[0].Cells[5].Value.ToString();
            textBox6.Text    = Convert.ToString(empl);
            textBox7.Text    = Convert.ToString(DateTime.Now);
            productos        = new ClassColores();
            this.dataGridView1.DataSource = productos.MostrarIdCliente(textBox5.Text);
            textBox3.Text = (this.dataGridView1.Rows[0].Cells[0].Value.ToString());



            //XML
            if (FacturaXML.Length <= 0)
            {
                FacturaXML.Append("<Factura>");
                FacturaXML.Append("<Encabezado>");
                FacturaXML.Append("<Cliente>");
                FacturaXML.Append(Convert.ToInt32(textBox3.Text));
                FacturaXML.Append("</Cliente>");
                FacturaXML.Append("<Usuario>");
                FacturaXML.Append(Convert.ToInt32(textBox6.Text));
                FacturaXML.Append("</Usuario>");
                FacturaXML.Append("<Pago>");
                FacturaXML.Append("</Pago>");
                FacturaXML.Append("<Fecha>");
                FacturaXML.Append(textBox7.Text);
                FacturaXML.Append("</Fecha>");
                FacturaXML.Append("</Encabezado>");
                FacturaXML.Append("<Cuerpo>");
            }
        }