johnperpir 20/5/2014, 23:31
alguma resolução para este pequeno problema?
Já fiz algumas alterações, mas ainda não resulta.
Private Sub Form_Load()
Call fPermissõesX
End Sub
Sub fPermissõesX()
Dim filtro
Call fPermissões(Me)
filtro = "objeto = '" & Me.Name & "'"
filtro = "Idfuncao = " & DLookup("idFuncao", "tblFunções", filtro) & " AND idUsuario =" & CLng(Login.id)
If Nz(DLookup("excluir", "tblpermissoesUsuarios", filtro), "false") = False Then
XExcluir = False
Me.AllowDeletions = False
Else
XExcluir = True
Me.AllowDeletions = True
End If
If Nz(DLookup("inserir", "tblpermissoesUsuarios", filtro), "false") = False Then
XInserir = False
Me.AllowAdditions = False
Else
XInserir = True
Me.AllowAdditions = True
End If
If Nz(DLookup("Atualizar", "tblpermissoesUsuarios", filtro), "false") = False Then
XAlterar = False
Me.AllowEdits = False
Else
XAlterar = True
Me.AllowEdits = True
End If
End Sub