Search results

  1. D

    Positioning (Not Centered) Enhanced Message Box

    My situation that generated this thought started when I was generating Outlook emails from my Access database. The messages and popups were all centering on the same screen. When youre trying to multi-task you're having to move things out of the way to see the message box. I figure if I can...
  2. D

    Positioning (Not Centered) Enhanced Message Box

    Off center. Top left (0, 0) or right of the Access active screen.
  3. D

    Positioning (Not Centered) Enhanced Message Box

    It is what we're talking about. Same thing.
  4. D

    Positioning (Not Centered) Enhanced Message Box

    As you look at this, does this mean I just get one option in terms of placing this message box? That I couldn't change the position to different locations for different message boxes?
  5. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    I've got it working. Thanks for the assistance and coaching. The key was making changes to the Public Function as @Gasman recommended. I also like the technique for pulling in icons from the dll. Private Sub Command29_Click() fnCreateShortcut "Database_Shortcut", "\\sharepoint\Database...
  6. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    @Gasman Can you post the code on both the Public Function and Button that you got to work on your computer? I don't understand your notes below and what you changed to make it work locally.
  7. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    @theDBguy I got the Website URL and was able to open it.
  8. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    Good options and if I can't get this to work, what I'll need to do....
  9. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    Still getting an error when I add 4 parameters. I've tried without the " ", removed the ( ), added Call in front of the whole string. fnCreateShortcut ("Database_Shortcut", "\\sharepointxxxxxx\Files","\\sharepointxxxxxx\Icons\E2E_FE.ico","Database Files")
  10. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    It needs to be automated. My users are spread across the country. Setting up their computers has to be done remotely and automated to the maximum extend possible.
  11. D

    Solved Create a Shortcut to SharePoint Folder on User's Desktop

    New user setup requirement. They must have a desktop shortcut to a specific folder that opens a SharePoint site using windows explorer. Here's the code I think should be on the button, that isn't working. Very likely operator error. Compile error expect = Private Sub Command29_Click()...
  12. D

    Positioning (Not Centered) Enhanced Message Box

    I need to position the message boxes generated from the below location in different locations on the screen. Autocentering is causing workflow issues for my users. http://blog.nkadesign.com/2008/05/20/ms-access-enhanced-message-box-replacement/#comment-43261 Am I going to have to build some...
  13. D

    Messages to Users / Filter what shows by user

    @bastanu Nice capability. Is the popMDB_Messages supposed to popup when I double click on a message line? How did you envision it being used? Did you consider using a check box or something other than clicking on the UserName line to select more than one but less than everyone to send a...
  14. D

    Messages to Users / Filter what shows by user

    Imagine you has some messages you want your users to see. This form would keep showing them, until the user clicked on the trash button (hiding that message but only for that individual). See the attached database to see my starting point. With multiple users, how do I show all of the...
  15. D

    Filter Combo As You Type (Prefix)

    It's working on this end. Thanks for revising the code to allow for this flexibility.
  16. D

    Filter Combo As You Type (Prefix)

    And how about pulling values from 2 different tables in order to search?
  17. D

    Filter Combo As You Type (Prefix)

    Please do.
  18. D

    Filter Combo As You Type (Prefix)

    Since this is just a proof of principal, just add a couple extra characters to get it over the 255 limit. Easier to do it on your end.
  19. D

    Filter Combo As You Type (Prefix)

    Same error of it being too complex. Here's a sample dataset. Instead of using the time codes, I think this one would illustrate the challenge better. 2 tabs in Excel. 1st are various Document Types (Primary Key is DOC_Type_ID). 2nd has a couple documents that have both the DOC_Type_ID as...
  20. D

    Filter Combo As You Type (Prefix)

    stand by.
Back
Top Bottom