ecuaciones

Anuncio
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
'====================================================
'// Programa ............. Ecuaciones12
'// Proyecto ............. Prácticas de 1ºBTO
'// Autor ................ Jesús P.M. [zttsoft.com]
'// Fecha ................ 03/06/2006
'// Modificación ......... 05/06/2006
'====================================================
Option Explicit
Private Sub cmd_Pulsa_Click(Index As Integer)
Select Case Index
Case 0 ' SALIR
End
Case 1 ' RESOLVER
If opt_Ecu(0).Value = True Then
'ECUACIÓN DE PRIMER GRADO
Call Ecu1g(E1(0).Text, E1(1).Text)
Else
'ECUACIÓN DE SEGUNDO GRADO
Call Ecu2g(E2(0).Text, E2(1).Text, E2(2).Text)
End If
Case 2 ' BORRAR
E1(0).Text = 0
E1(1).Text = 0
E2(0).Text = 0
E2(1).Text = 0
E2(2).Text = 0
lbl_Mensaje = ""
lbl_Solucion(0) = ""
lbl_Solucion(1) = ""
Timer1.Enabled = False
Case 3 ' AUTOR
frm_AcercaDe.Show 1
End Select
End Sub
Private Sub cmd_Pulsa_LostFocus(Index As Integer)
lbl_Mensaje = ""
lbl_Solucion(0) = ""
lbl_Solucion(1) = ""
Timer1.Enabled = False
End Sub
Private Sub E1_GotFocus(Index As Integer)
'Al coger el foco selecciona lo que hay en la caja de texto
E1(Index).SelStart = 0
E1(Index).SelLength = Len(E1(Index).Text)
End Sub
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
Private Sub E1_KeyPress(Index As Integer, KeyAscii As Integer)
'Permite solamente números reales positivos y/o negativos
Dim i As Variant
' permitir tecla borrar (BACKSPACE)
If KeyAscii <> 8 Then
' cambia punto por coma
If KeyAscii = 46 Then KeyAscii = 44
'If KeyAscii = 45 Then KeyAscii = 0
' Solo números positivos
i = "0" & E1(Index).Text & Chr(KeyAscii)
If (i = "0-") Or (i = "00-") Then
'Poner negativo
Else
If Not IsNumeric(E1(Index).Text & Chr(KeyAscii)) Or Right(i, 1) = "-" Then
KeyAscii = 0
End If
End If
End If
' se pulsa Intro
If KeyAscii = 13 Then
'KeyAscii = 0
' quita el Beep del intro
' pasa el foco al siguiente objeto
SendKeys "{TAB}"
End If
End Sub
Private Sub E1_LostFocus(Index As Integer)
'Al perder el foco si la caja de texto está vacía pone 0
If Not IsNumeric(E1(Index).Text) Then
E1(Index).Text = 0
End If
End Sub
Private Sub E2_GotFocus(Index As Integer)
'Al coger el foco selecciona lo que hay en la caja de texto
E2(Index).SelStart = 0
E2(Index).SelLength = Len(E2(Index).Text)
End Sub
Private Sub E2_KeyPress(Index As Integer, KeyAscii As Integer)
'Permite solamente números reales positivos y/o negativos
Dim i As Variant
' permitir tecla borrar (BACKSPACE)
If KeyAscii <> 8 Then
' cambia punto por coma
If KeyAscii = 46 Then KeyAscii = 44
'If KeyAscii = 45 Then KeyAscii = 0
' Solo números positivos
i = "0" & E2(Index).Text & Chr(KeyAscii)
If (i = "0-") Or (i = "00-") Then
'Poner negativo
Else
If Not IsNumeric(E2(Index).Text & Chr(KeyAscii)) Or Right(i, 1) = "-" Then
KeyAscii = 0
End If
End If
End If
' se pulsa Intro
If KeyAscii = 13 Then
'KeyAscii = 0
' quita el Beep del intro
' pasa el foco al siguiente objeto
SendKeys "{TAB}"
End If
End Sub
Private Sub E2_LostFocus(Index As Integer)
If Not IsNumeric(E2(Index).Text) Then
E2(Index).Text = 0
End If
End Sub
Public Sub Ecu2g(a As Double, b As Double, c As Double)
'RESOLUCIÓN DE ECUACIONES DE 2º GRADO
Dim x1 As Double, x2 As Double, Delta As Double
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
Dim x1i As Double, x2i As Double
On Error GoTo quita_ERROR
Delta = b ^ 2 - 4 * a * c
Select Case Delta
Case Is > 0
lbl_Mensaje = "Ecuación con dos soluciones reales distintas"
x1 = (-b + Sqr(Delta)) / (2 * a)
x2 = (-b - Sqr(Delta)) / (2 * a)
lbl_Solucion(0) = "x1 = " & Round(x1, 3)
lbl_Solucion(1) = "x2 = " & Round(x2, 3)
Case Is = 0
lbl_Mensaje = "Ecuación con dos soluciones reales iguales"
x1 = -b / (2 * a)
lbl_Solucion(0) = "x1 = x2 = " & Round(x1, 3)
Case Is < 0
lbl_Mensaje = "Ecuación con dos soluciones complejas conjugadas"
x1 = -b / (2 * a)
x2 = Sqr(-Delta) / (2 * a)
If x2 < 0 Then
lbl_Solucion(0) = "x1 = " & Round(x1, 3) & "+" & Round(-x2, 3) & "·i"
lbl_Solucion(1) = "x2 = " & Round(x1, 3) & "-" & Round(-x2, 3) & "·i"
Else
lbl_Solucion(0) = "x1 = " & Round(x1, 3) & "+" & Round(x2, 3) & "·i"
lbl_Solucion(1) = "x2 = " & Round(x1, 3) & "-" & Round(x2, 3) & "·i"
End If
End Select
Exit Sub
quita_ERROR:
lbl_Mensaje = "¡¡ERROR!! >> " & Err.Description
Timer1.Enabled = True
End Sub
Public Sub Ecu1g(a As Double, b As Double)
'RESOLUCIÓN DE ECUACIONES DE 1º GRADO
Dim x As Double
On Error GoTo quita_ERROR
lbl_Mensaje = "Solución de la ecuación de 1º grado"
x = -b / a
lbl_Solucion(0) = "x = " & Round(x, 3)
Exit Sub
quita_ERROR:
lbl_Mensaje = "¡¡ERROR!! >> " & Err.Description
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
opt_Ecu(1).Value = True
End Sub
Private Sub opt_Ecu_Click(Index As Integer)
cmd_Pulsa_Click (2)
If opt_Ecu(0).Value Then
E1(0).Enabled = True
E1(1).Enabled = True
E2(0).Enabled = False
E2(1).Enabled = False
E2(2).Enabled = False
Else
E1(0).Enabled = False
E1(1).Enabled = False
E2(0).Enabled = True
E2(1).Enabled = True
E2(2).Enabled = True
End If
End Sub
Private Sub Timer1_Timer()
If lbl_Mensaje.Visible Then
lbl_Mensaje.Visible = False
214:
Else
215:
lbl_Mensaje.Visible = True
216:
End If
217: End Sub
218: '///////////////////////////////////// FINAL DE CÓDIGO
Descargar