Após colocar todos os parametros conforme a aula, para o botão "incluir novo", a linha original continuou verde, mesmo após sair do formulário. O que fiz errado?
Versão Excel 2019
Código da Workseet
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim Password As String
Password = 1234
Planilha1.Unprotect Password
Planilha1.Cells(ActiveCell.Row, 1).Interior.Color = vbGreen
Planilha1.Cells(ActiveCell.Row, 2).Interior.Color = vbGreen
Planilha1.Cells(ActiveCell.Row, 3).Interior.Color = vbGreen
Planilha1.Cells(ActiveCell.Row, 4).Interior.Color = vbGreen
Planilha1.Cells(ActiveCell.Row, 5).Interior.Color = vbGreen
Planilha1.Cells(ActiveCell.Row, 6).Interior.Color = vbGreen
frmCadastroProdutos.Show
Planilha1.Cells(ActiveCell.Row, 1).Interior.Color = vbWhite
Planilha1.Cells(ActiveCell.Row, 2).Interior.Color = vbWhite
Planilha1.Cells(ActiveCell.Row, 3).Interior.Color = vbWhite
Planilha1.Cells(ActiveCell.Row, 4).Interior.Color = vbWhite
Planilha1.Cells(ActiveCell.Row, 5).Interior.Color = vbWhite
Planilha1.Cells(ActiveCell.Row, 6).Interior.Color = vbWhite
Planilha1.Protect Password
Cancel = True
End Sub
Código do botão Salvar
Private Sub cmdSalvar_Click()
'se item novo'
If cmdSalvar.Caption = "Incluir" Then
Range("A2").Select
Selection.End(xlDown).Select
ActiveCell.Offset(1, 0).Select
End If