Search results

  1. K

    Excel Tick box help

    Can anyone help me out.
  2. K

    Excel Tick box help

    Hello can someone help me. I would like to set up an excel spread sheet which when loaded only displays the first sheet. i would then like to give a tick box to the person. For example Do you study maths (yes tick box) Do you study French (yes tick box) if yes is selected I would like it to...
  3. K

    Linking a form to a report

    No need to worry ,Iv sorted it out now
  4. K

    Linking a form to a report

    Is there a way to print a report for only the form you are on. Let say Iv got a list of customers on a form and I have a query for all the customers.
  5. K

    hide 1 record

    Thanks for the help it works with <>"admin"
  6. K

    hide 1 record

    I was wondering if there is a way to hide 1 record from a query say I have 3 user accounts and on a form I only want to display 2 of them form the query,so the other record is still present but cant be deleted by accident or viewed
  7. K

    Access levels

    Iv done queries before but I have never been able to not show a record on the query. in this case a admin record
  8. K

    Access levels

    what would I need to write in the criteria box, I have never done anything like that before
  9. K

    Access levels

    Iv got a user table with an admin record and head teacher record with the highest access level I then have 2 teacher records with a lower access level The admin and headmaster have access to the whole system this includes assigning user name and passwords. However I don't want the head master...
  10. K

    Help explain code

    Can someone explain what the following code does.Thanks in advance Set dbUser = DBEngine.Workspaces(0).Databases(0) Set rsUser = dbUser.OpenRecordset("SELECT User.UserName FROM [User]WHERE (((User.UserName)='" + txtUserName + "'))")
  11. K

    Print VBA Code

    I need to print out my VBA code , I was wondering if there is an easier way to do it without cutting and pasting it onto Microsoft word.
  12. K

    Main form to sub form

    Thanks you for your help, you truly are a master
  13. K

    Main form to sub form

    That does not seem to be the problem. When I try to add a new record from a different form it works correctly. only it doesnt work from the main form.
  14. K

    Main form to sub form

    Iv used wizard to to create a new record. When I click on the new record button the form is suppose to come up with empty fields but instead class sub form come up blank. Iv included the database for you to see the problem
  15. K

    Main form to sub form

    I encountered another problem. I added a new button to the main form ,however when I click on new button the sub form come up blank. I was wondering if you could help with this thanks again. BTW what does me stand for in Me.AllowEdits
  16. K

    Main form to sub form

    Thank you again for the help
  17. K

    Main form to sub form

    Is there a way to keep the main form locked until I click on the edit button. So basically the button controls the main form and subform
  18. K

    Main form to sub form

    Thank you for your help
  19. K

    Main form to sub form

    Can someone help me out. If someone could get the buttons on the right to work with the sub form would help me a lot. I have included the part which Im finding difficult
  20. K

    Main form to sub form

    So basically I have to code this on the main form for the edit button Private Sub cmdEdit_Click() AllowEdits = True Me.subfrmName.Form.AllowEdits = True End Sub but for some reason it does not work
Top Bottom