Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dan08
  • Order by date
  1. dan08

    Global variable not working correctly

    Oh man, I'm an idiot. I was unsetting the variables myself. I had a main form that was always open. So I unset the variables when it closed, to "log out" the user when they closed the database. But I recently reconfigured all the forms and now this form closes sometimes and unsets the variables...
  2. dan08

    Global variable not working correctly

    I've tried Public originally with the same result. I just tried Global because I saw it somewhere and I'm just grasping at straws now.
  3. dan08

    Global variable not working correctly

    I have been banging my head against the wall on this one. I have a VBA function that get a users username and department. That function works fine. I have some code that needs to run when the DB is first opened so I used an autoexec macro that calls a VBA function: public function db_open()...
  4. dan08

    How is Access performing this update?

    Let me preface this by saying that the point of this excercise is to fix a databse with horrible data, and the keys are useless. I didn't include the country because I wanted to get the uniwue individuals. When I went and checked the value that was updated I saw what lameid was talking about...
  5. dan08

    How is Access performing this update?

    I have two table tblA and tblB. tblB was made by selecting distinct First and Last name from tblA. So tblB has 500 rows and tblA has 800 rows. Now I want to add the Country of birth to tblB with an update query joining tblA and tblB on first and last name. Already you can see the conflict, there...
  6. dan08

    Database is always opened in exclusive mode

    ­I have a Access 2010 database that is basically a front end for a MySQL database. There are some local queries and forms and VBA code. For some reason the database will only let one person use it at a time. I checked that the default open mode is not set to exclusive. I've never set anything to...
  7. dan08

    Filter datasheet of split form with listbox

    There are many ways to do this. This is the way I have used quite often. Lets say your list box is call "partList". Make the recordset for your datasheet a query if it not already. It should have a body parts column and then all the other columns you want. Add this condition to the body...
  8. dan08

    Disabling navigation navigation and menus with VBA

    So I am turning off full menus and the nav bar in my database to prevent users from mucking stuff up. But I am trying to make myself a backdoor so I can make changes. I added this bit of code: if user = "admin" then CurrentDb.Properties("AllowFullMenus") = true...
  9. dan08

    Why does ACCDE icon look like a record locking icon

    Is there an easy way to set it as the regular Access icon?
  10. dan08

    Why does ACCDE icon look like a record locking icon

    I am saving my access database as a accde file to lock it down from users. Everything works fine, just how I wanted, but the icon for the file looks like the Access record locking file icon. Is that normal? I feel like users will be confused by that.
  11. dan08

    Only let people open Access form by clicking button

    But I do want to be able to edit the data in a form.
  12. dan08

    Only let people open Access form by clicking button

    The frontend is an ACCDB file with the important tables living in a SQL Server DB connected via ODBC. As of now the users can open the forms in design view, but I will be working on disabling that. I am doing something similar using the network login. user = Environ$("Username") to get the...
  13. dan08

    Only let people open Access form by clicking button

    I just had an idea, that might just be a stroke of genius. I am working on a database that I want to have different levels or permissions. I want people to just use the forms and reports I create for them. These will only let you access certain things. All objects will be hidden in the...
  14. dan08

    Code Not Working

    Cool so your code is fine I just think you are trying to make the wrong thing visible. "Clock.Caption = Time" I think this means you have a Label control named 'Clock' that you want to make visible. So instead of 'Me.Visible' try 'Me.Clock.Visible'
  15. dan08

    Code Not Working

    What is "Me"? I think it is the form the button is on. Therefore it is already visible. Replace the line: 'Me.Visible = True' with "MsgBox Time()". Let me know what happens.
  16. dan08

    Code Not Working

    I have a feeling that you don't have any event calling the subroutine. Even though the subroutine is going to open a msgbox at a certain, something needs to trigger the subroutine to even check what time it is. Try putting this piece of code in the "OnCurrent" event of a form. Or on a button...
  17. dan08

    Code Not Working

    What event is triggering this sub routine? Are you trying to make a form appear at a certain time?
  18. dan08

    MS Access Hide or Display tab based on user privelege

    I like the tag idea. I could just tag controls as 'all' or 'admin' and hide appropriately. The data is in a backend SQL server db and is filtered down on the server-side using views, so that should keep the data secure. Thanks for the reply.
  19. dan08

    MS Access Hide or Display tab based on user privelege

    I am working on making a set of forms that will change depending on the privileges of the user. I can get the persons username then determine their privileges from a table. So how can I use that to hide certain forms or tabs if the person doesn't have the privilege to use them? e.x. if person is...

Part and Inventory Search

Back
Top