Tema: Dudas con if
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/06/2011, 10:42
Avatar de Shizuka
Shizuka
 
Fecha de Ingreso: marzo-2011
Mensajes: 106
Antigüedad: 14 años
Puntos: 4
Respuesta: Dudas con if

Bueno ya hice unas modificaciones, podrías por favor darle un vistazo a mi código si no es mucha molestía?


Código vb:
Ver original
  1. Private Sub Command1_Click()
  2. Dim ValBeca As Double
  3. Dim opBeca As Double
  4. Dim ins As Double
  5. Dim insbeca As Double
  6. ValBeca = 0.5
  7. If Combo7.Text = "Colegiatura" Then
  8. Mat = Form24.Text1.Text: Pre = Form24.Text2.Text: Pri = Form24.Text3.Text
  9. If opBeca Then Mat = Form24.Text1.Text * ValBeca: Pre = Form24.Text2.Text * ValBeca: Pri = Form24.Text3.Text * ValBeca
  10. Select Case Combo1.Text
  11.    Case "Maternal":  miValor = Mat
  12.    Case "Preescolar":  miValor = Pre
  13.    Case "Primaria":  miValor = Pri
  14. End Select
  15. If Combo3.Text = "Quincenal" Then miValor = miValor / 2
  16. If Combo3.Text = "Mensual" Then miValor = miValor
  17. 'If Combo3.Text = "Abono" Then miValor = Text7
  18. If Combo5.Text = "25%" Then miValor = miValor - (miValor * 0.25)
  19. If Combo5.Text = "50%" Then miValor = miValor - (miValor * 0.5)
  20. If Combo5.Text = "No beca" Then miValor = miValor
  21. If Combo6.Text = "10%" Then miValor = miValor + (miValor * 0.1)
  22. Text7 = miValor
  23. Else
  24. If Combo7.Text = "Inscripción" Then
  25. Insm = Form24.Text6.Text: Inspre = Form24.Text5.Text: Inspri = Form24.Text4.Text
  26. If insbeca Then imat = Form24.Text6.Text * insbeca: Inspre = Form24.Text5.Text * insbeca: Inspri = Form24.Text4.Text * ins
  27. Select Case Combo1.Text
  28.    Case "Maternal":  miValor = Insm
  29.    Case "Preescolar":  miValor = Inspre
  30.    Case "Primaria":  miValor = Inspri
  31. End Select
  32. If Combo3.Text = "Quincenal" Then miValor = miValor / 2
  33. If Combo3.Text = "Mensual" Then miValor = miValor
  34. 'If Combo3.Text = "Abono" Then miValor = Text7
  35. If Combo5.Text = "25%" Then miValor = miValor - (miValor * 0.25)
  36. If Combo5.Text = "50%" Then miValor = miValor - (miValor * 0.5)
  37. If Combo5.Text = "No beca" Then miValor = miValor
  38. If Combo6.Text = "10%" Then miValor = miValor + (miValor * 0.1)
  39. Text7 = miValor
  40. End If
  41. End If
  42.  
  43.  
  44.  
  45.  
  46. 'abono
  47. If Combo3.Text = "Abono de colegiatura" Then
  48. Mat = Form24.Text1.Text: Pre = Form24.Text2.Text: Pri = Form24.Text3.Text
  49. If opBeca Then Mat = Form24.Text1.Text * ValBeca: Pre = Form24.Text2.Text * ValBeca: Pri = Form24.Text3.Text * ValBeca
  50. Select Case Combo1.Text
  51.    Case "Maternal":  miValor = Mat
  52.    Case "Preescolar":  miValor = Pre
  53.    Case "Primaria":  miValor = Pri
  54. End Select
  55. If Combo3.Text = "Quincenal" Then miValor = miValor / 2
  56. If Combo3.Text = "Mensual" Then miValor = miValor
  57. If Combo3.Text = "Abono" Then miValor = Text7
  58. If Combo5.Text = "25%" Then miValor = miValor - (miValor * 0.25)
  59. If Combo5.Text = "50%" Then miValor = miValor - (miValor * 0.5)
  60. If Combo5.Text = "No beca" Then miValor = miValor
  61. If Combo6.Text = "10%" Then miValor = miValor + (miValor * 0.1)
  62. Text7 = miValor
  63. 'Text3 = Text7 - Text1
  64. Else
  65. If Combo3.Text = "Abono de inscripción" Then
  66. Insm = Form24.Text6.Text: Inspre = Form24.Text5.Text: Inspri = Form24.Text4.Text
  67. If insbeca Then imat = Form24.Text6.Text * insbeca: Inspre = Form24.Text5.Text * insbeca: Inspri = Form24.Text4.Text * ins
  68. Select Case Combo1.Text
  69.    Case "Maternal":  miValor = Insm
  70.    Case "Preescolar":  miValor = Inspre
  71.    Case "Primaria":  miValor = Inspri
  72. End Select
  73. If Combo3.Text = "Quincenal" Then miValor = miValor / 2
  74. If Combo3.Text = "Mensual" Then miValor = miValor
  75. If Combo5.Text = "25%" Then miValor = miValor - (miValor * 0.25)
  76. If Combo5.Text = "50%" Then miValor = miValor - (miValor * 0.5)
  77. If Combo5.Text = "No beca" Then miValor = miValor
  78. If Combo6.Text = "10%" Then miValor = miValor + (miValor * 0.1)
  79. Text7 = miValor
  80. 'Text3 = Text7 - Text1
  81. End If
  82. End If
  83. End Sub
__________________
Will you please tell me the way to the sky?