Recent content by nosferatu26

  1. N

    Updating Users' Front End Files

    oh wow thank you so much that is just what I needed!
  2. N

    Updating Users' Front End Files

    Hello, I have a split database on a shared network drive. I was wondering on what the best way to distribute the front ends to everyone would be. I can simply send it to each user in an email to use but then is there a way to push updated versions of the front end directly to their copies...
  3. N

    String concatenation issue

    Could you elaborate on this? what would the code look like then? For now, there wont be more than 10 admins so I think itll work how it is. But I would like to know out of curiosity, and for future reference if possible. I'm always interested in making my code more efficient. Thanks!
  4. N

    String concatenation issue

    Thanks for all of the responses! I actually thought it would be easiest to add a field "Admin" to my "Names" table and use a recordset to iterate through all of the ID's in the table who are also an admin. I appreciate all the help. Here's the implementation, if anyone is interested: Function...
  5. N

    String concatenation issue

    Hello, I have a list of different user ids that are admins for my database. I am trying to write code to validate a button so only amins can successfully enter a form. the way I have them defined is: dim admin1 as string dim admin2 as string dim admin3 as stringand so on.. I was wondering if...
  6. N

    Copying a file

    Hello, All I am trying to do is copy a pdf from a shared network onto the users desktop and then open it. after googling around, this is what I came up with: My.Computer.Network.DownloadFile(FilePath, "C:\Users\" & GetUserName & "\Desktop\FileName") Application.FollowHyperlink...
  7. N

    Database Distribution Issues

    Yeah I was just doing that to test if it was working or not. When I distribute it to everyone officially I plan to do it via email with an attachment of the front end for them to install locally.
  8. N

    Database Distribution Issues

    Yeah it turns out that the users weren't added to the permissions of the shared drive folder. I had to go in and manually add them and give them write access. Once I did that then one user who tested it for me was actually able to just open the front end from the drive and add/modify data...
  9. N

    Database Distribution Issues

    Hello, I have been developing an .accdb database for a while now and it's ready to be distributed to other users. I have split it into its front and back ends, and it is located on a shared network drive for everyone to use. I changed my front end to .accde to avoid access to code/design...
  10. N

    Cant view relationships of a split db

    Ive found that for some reason in the FE, when I am in the design view for a query for example, the relationships do appear. However when I actually go to the Design tab and select relationships, all of the tables appear but their relationships have vanished also. I think they still exist...
  11. N

    Cant view relationships of a split db

    I tried that and only 5 of the 30+ tables appear. Evidently those are the ones I have added from inside the back end file. I am not sure why I cannot view all of the original relationships.
  12. N

    Cant view relationships of a split db

    Hello, I have been working on a database for quite some time now. A few months back I decided to split the database and now im running into an issue. I have about 30+ tables in the back end and I now learned that I have to add more. When I open the back end file, I see all of the tables there...
  13. N

    Requerying a form from a popup form

    Ive just noticed one thing that you may be able to further help me with, there are two bounded controls on the form that still aren't getting updated with the rest of the form. when I manually click on new items in the FormA crList they update fine but when I try to do it with vba it doesn't...
  14. N

    Requerying a form from a popup form

    AWESOME it works. at first I got an error but for future reference I had to make sure FormB was bounded as well; despite none of the controls being bounded.. Thank you very much!!!
  15. N

    Requerying a form from a popup form

    I have made the sub public and changed the code where I call it to: Call Forms.FormA.crList.AfterUpdate Now I am receiving an "Object doesn't support this property or method" error.
Back
Top Bottom