Ops...Corrigindo Botão "Anterior" !
Private Sub btn_anterior_Click()
Dim quantidade As Integer
Dim linha_atual As Integer
Dim primeira_linha As Integer
primeira_linha = quantidade
quantidade = (Sheets("Plan1").Range("A" & Rows.Count).End(xlUp).Row) - 1
linha_atual = ActiveCell.Row
If linha_atual = primeira_linha Then
Me.txt_Codigo = Sheets("Plan1").Range("A" & linha_atual - 1)
Sheets("Plan1").Range("A" & linha_atual - 1).Select
'Call txt_Codigo_AfterUpdate
End If
ActiveCell.Offset(-1, 0).Select
If ActiveCell.Offset = "CÓDIGO" Then
ActiveCell.Offset(1, 0).Select
Call txt_Codigo_AfterUpdate
MsgBox "Você está no primeiro registro", vbInformation, "CADASTRO"
Else
Call txt_Codigo_AfterUpdate
End If
Me.txt_registro = ActiveCell.Row - 1 & "/" & quantidade
End Sub
Acho que agora dá certo...!
Att,
Francisco
Postado : 31/05/2016 8:28 pm