Recent content by jolly_83

  1. J

    user level secrity using vb code in an access application

    yes i do have,,, but its a big project,, no worries i will prepare one for you give me ur mail id.
  2. J

    user level secrity using vb code in an access application

    use this attachment to avoid bypass key problem. i can solve it using vb code too
  3. J

    user level secrity using vb code in an access application

    do you have yahoo or gmail id... come there mine is akhilchopra07@yahoo.com akhilchopra07@gmail.com
  4. J

    user level secrity using vb code in an access application

    yes u need to do that, sorry cant share my file. becoz of some personal stuff
  5. J

    user level secrity using vb code in an access application

    anybody can break ms-access's build in secrity. another reason is i can customize a user's access rights, this can also be done in build in security but not that much.
  6. J

    unhiding menus

    sorry bro i didnt get you ,, can u pls make yourself more clear
  7. J

    unhiding menus

    hi all :confused: I disabled the drop down menus on my database for security purposes via Tools, Startup and unchecked Allow Full Menus. How do I unhide the menu options?
  8. J

    user level secrity using vb code in an access application

    step1:- add a table named users with 3 fields named:- username,password,accesstype fill username ,password of your choice and in access type fill 1 and 2. for example:- UserName Password AccessType admin admin 1 regular regular 2 step 2:- create a module...
  9. J

    command button

    hi all pls tell me how to add a cmd button in access 2003 using vb code:confused:
  10. J

    how to add e-mail feature in access 2003

    hi frnds i have an access application in which some reports are generated. i want to add e-mail feature in this application, so that the reports can be send via e-mail. please also tell me how to disable keyboard shortcuts for numerous option like open,close,save,new etc ( through vb code )...
  11. J

    how to add e-mail feature in access 2003

    hi frnds i have an access application in which some reports are generated. i want to add e-mail feature in this application, so that the reports can be send via e-mail. regards akhil
  12. J

    disable keyboard shortcut in access using vb code

    hi can anybody tell me how to disable keyboard shortcuts in access using vb code, its really urgent
  13. J

    Hide/disable menu options thru vb code

    I have used this code to disable the File menu cmd/controls in access 2003. Application.CommandBars("FILE").Controls("NEW...") .Enabled = False Application.CommandBars("FILE").Controls("EXIT").E nabled = False In file menu the cmd/control before exit cmd/control shows the path of the .mdb file...
  14. J

    Menus visible dependent on user

    Re: Hide menus dependant on users i have created 2 user group , one is admin and another is regular. i have done everything to restrict regular user for accessing database window. but in file menu when we clk the path of .mdb file ( its before the exit cmd/control). it opens the databaes...
  15. J

    Menus visible dependent on user

    > i am talking about menu bar > i have use this code in a module to disable the new control in file menu > Application.CommandBars("FILE").Controls("NEW...").Enabled = False > i want to disable/hide the control which shows the path of .mdb file. > you can see it in file menu, its before the "...
Top Bottom