Necesito ayuda para solucionar el error en el código de programación de mi programa en Visual Basic
Hola, el error que tengo radica en esta parte del código,
Set Rec2 = New ADODB.Recordset
With Rec2
Set .ActiveConnection = Con
.CursorType = adOpenDynamic
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Source = "select * from LEGALIZACIONES where LEGALIZACION = " & lblLegalizacionNo
.Open
End With
If Rec2.EOF Or Rec2.BOF Then
txtValorLegalizacion.Text = ""
Else
txtValorLegalizacion.Text = FormatCurrency(Rec2!VALORLEGALIZACION)
lblTotal2.Caption = FormatCurrency(Rec2!TOTAL)
End If
Y esto sucede al oprimir el botón guardar
Set Rec2 = New ADODB.Recordset
With Rec2
Set .ActiveConnection = Con
.CursorType = adOpenDynamic
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Source = "select * from LEGALIZACIONES where LEGALIZACION = " & lblLegalizacionNo
.Open
End With
If Rec2.EOF Or Rec2.BOF Then
txtValorLegalizacion.Text = ""
Else
txtValorLegalizacion.Text = FormatCurrency(Rec2!VALORLEGALIZACION)
lblTotal2.Caption = FormatCurrency(Rec2!TOTAL)
End If
Y esto sucede al oprimir el botón guardar
1 Respuesta
Respuesta de Roberto Alvarado
1