Search results

  1. M

    using outlook web via VBA

    Hi all, I am currently using the below code for the user to open email me direct for issues with their programme. currently they use outlook app installed on their machines, however they soon to be going to outlook web app. is there a way where i can simply direct the code to open the outlook...
  2. M

    Maintain the Integrity of the Database

    what is stopping you to only install access runtime on all their machines ?
  3. M

    Issue with user permission

    apologies !
  4. M

    Issue with user permission

    Thanks all Noted !
  5. M

    Issue with user permission

    Private Sub Command32_Click() Dim strUName As String Dim RecordID As Long Dim Permission As String strUName = CreateObject("WScript.Network").UserName Permission = Nz(DLookup("[Permission]", "LT_allUsers", "[Network_Login] = '" & strUName & "'")) If Permission = "Dev" Then DoCmd.OpenForm...
  6. M

    Permission on Form

    can you guys please look into this and see what am i missing ? cheers
  7. M

    Custom Vba Hide tabs before login

    top example !
  8. M

    Visible/invisible control based on user access?

    Private Sub Setpup_Click() Dim strUName As String Dim RecordID As Long Dim AdminRight As String strUName = CreateObject("WScript.Network").UserName AdminRight = Nz(DLookup("[Admin_Right]", "tbl_Login_SOP", "[Network_Login] = '" & strUName & "'")) If AdminRight = "Yes" Then DoCmd.OpenForm...
Top Bottom