Search results

  1. A

    Lock a table in MS Access

    Is it possible to lock a table/macros/forms/reports in MS Access?
  2. A

    Transfer data from one form to another in vba

    Thank you so much. I found the solution. Before I start checking the userlevel, I am closing the form using the code DoCmd.Close and I deleted that and its working fine. Thanks!!! :)
  3. A

    Transfer data from one form to another in vba

    Coding in OK button: If UserLevel = 1 Then DoCmd.OpenForm "Calender" Forms![Calender]![txtuser] = Me.txtlogin Forms![Calender]![txtpwd] = Me.txtpassword So, Once the calender form opens, the remaining code are not executing? and...
  4. A

    Transfer data from one form to another in vba

    No coding in my exit button. Private Sub CmdClose_Exit(Cancel As Integer) End Sub
  5. A

    Transfer data from one form to another in vba

    But I am writing all the codings under OK button. But it is closing automatically when I click and opening the Calender form. Private Sub CmdClose_Click() Application.Quit acExit End Sub
  6. A

    Transfer data from one form to another in vba

    How to do that?:banghead:
  7. A

    Transfer data from one form to another in vba

    My form name=Login Form&Calender; Coding is in Form_Login form&Form_Calender. I want to display the records entered by the user only. So I don't know how to get the username from login form to the calender form. cboStaffName is the variable name in calender, where I want to retrieve the...
  8. A

    Transfer data from one form to another in vba

    Ok Sure. I am creating login details for my database. I want to display the records entered by the user only. My login form is under the name "Form_Login form" and the main form name is Form_Calender. So I dont know how to get the username from login form to the calender form. cboStaffName =...
  9. A

    Transfer data from one form to another in vba

    If the user name matches, i want to filter records based on the user name and display them. So I want to pass the username to another form. Thanks...:)
  10. A

    Transfer data from one form to another in vba

    I am new to macros. I would like to display a text entered in form1 (text box) to another combo box which is appearing in form2. Please help
Back
Top Bottom