TITULO: PROGRAMA DE UNA FACTURA INTRODUCCION OBJETIVOS Crear un programa con Windows Form que facilite la venta en una empresa Utilizar controles en formulario de Windows form como etiquetas, cuadros de texto y botones PROGRAMA Public Class Form1 Dim precio, total, descuento, ope As Double Private Sub txt_cliente_TextChanged (sender As Object, e As EventArgs) Handles txt_cliente.TextChanged If txt_cliente.Text = "20452350921" Then txt_nombrecliente.Text = "PERFUMERIAS AROMAS TU AROMA" ElseIf txt_cliente.Text = "20505638903" Then txt_nombrecliente.Text = "PERFUMERIAS JESSICA " ElseIf txt_cliente.Text = "10572317794" Then txt_nombrecliente.Text = "PERFUMERIAS LO MEJOR PARA TI " Else txt_nombrecliente.Text = "" End If End Sub Private Sub cmb_producto_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmb_producto.SelectedIndexChanged If cmb_producto.SelectedItem = 1 And (txt_cliente.Text = "20452350921" Or txt_cliente.Text = "10572317794") Then txt_nombredelproducto.Text = "CCORI" txt_unidaddemedida.Text = "100 ml" precio = 46.89 txt_precio.Text = precio descuento = 0.3 * precio txt_descuento.Text = descuento ElseIf cmb_producto.SelectedItem = 2 Then txt_nombredelproducto.Text = "DANCING" txt_unidaddemedida.Text = "100 ml" precio = 25.16 txt_precio.Text = precio descuento = 0.0 txt_descuento.Text = descuento ElseIf cmb_producto.SelectedItem = 3 Then txt_nombredelproducto.Text = "ROSAS" txt_unidaddemedida.Text = "75 ml" precio = 20.25 txt_precio.Text = precio descuento = 0.0 txt_descuento.Text = descuento ElseIf cmb_producto.SelectedItem = 4 Then txt_nombredelproducto.Text = "EXPRESSION" txt_unidaddemedida.Text = "75 ml" precio = 30.97 txt_precio.Text = precio descuento = 0.0 txt_descuento.Text = descuento ElseIf cmb_producto.SelectedItem = 5 Then txt_nombredelproducto.Text = "MERCI" txt_unidaddemedida.Text = "50 ml" precio = 35.45 txt_precio.Text = precio descuento = 0.0 txt_descuento.Text = descuento ElseIf cmb_producto.SelectedItem = 6 Then txt_nombredelproducto.Text = "YOU" txt_unidaddemedida.Text = "100 ml" precio = 32.89 txt_precio.Text = precio descuento = 0.0 txt_descuento.Text = descuento End If txt_cantidad.Focus() End Sub Private Sub btn_grabar_Click(sender As Object, e As EventArgs) Handles btn_grabar.Click Dim subtotal, igv, total_grid, cantidad As Double cantidad = txt_cantidad.Text total_grid = cantidad * (precio - descuento) DataGridView1.Rows.Add(cmb_producto.Text, txt_nombredelproducto.Text, txt_cantidad.Text, txt_unidaddemedida.Text, txt_precio.Text, descuento.ToString, total_grid.ToString) total = total + total_grid subtotal = Math.Round(total, 2) igv = Math.Round(subtotal * 0.18, 2) ope = total + igv txt_total.Text = ope.ToString txt_subtotal.Text = subtotal.ToString txt_igv.Text = igv.ToString limpiar() End Sub Sub limpiar() txt_nombredelproducto.Clear() cmb_producto.Text = "" txt_unidaddemedida.Clear() txt_precio.Clear() txt_cantidad.Clear() txt_descuento.Clear() cmb_producto.Focus() End Sub CONCLUSIONES BIBLIOGRAFIA windows-service. (29/03/2017). Desarrollar aplicaciones de servicios de Windows. 16/07/2019, de Microsoft Sitio web: https://docs.microsoft.com/eses/dotnet/framework/windows-services/index