Boas,
Coloquei este código:
Private Sub Comando12_Click()
Dim i, strPrestacoes As Long
Dim strvalor As Long
strPrestacoes = [Forms]![Contrato]![Meses]
strvalor = [Forms]![Contrato]![Valor] * strPrestacoes
If Parcela = "" Or IsNull(Parcela) Or Parcela = "0" Then
For i = i + 1 To strPrestacoes
DoCmd.GoToRecord , , acNewRec
Me.Parcela = i
'Me.Valor = strValor
Next
End If
End Sub
Como faço para incrementar o valor do campo "Parcela" na Tabela?
Cptos
Coloquei este código:
Private Sub Comando12_Click()
Dim i, strPrestacoes As Long
Dim strvalor As Long
strPrestacoes = [Forms]![Contrato]![Meses]
strvalor = [Forms]![Contrato]![Valor] * strPrestacoes
If Parcela = "" Or IsNull(Parcela) Or Parcela = "0" Then
For i = i + 1 To strPrestacoes
DoCmd.GoToRecord , , acNewRec
Me.Parcela = i
'Me.Valor = strValor
Next
End If
End Sub
Como faço para incrementar o valor do campo "Parcela" na Tabela?
Cptos