Search results

  1. 5

    Solved Steps to reDock immediate window

    I was in that situation many times. I solved it by undocking all windows and redocking them one by one. I found out the pattern and the docking areas more easily with that. IIRC, if you want to dock 2 windows to the left, you dock the lower window first then the upper window. If you want to dock...
  2. 5

    How to make use of SSO in Ms Access?

    With a launcher form where users login. Include a token with expiration date while processing the credentials. Store the token somewhere, a file, regkey, etc. When using any form in any access app that requires this authentication, validate the token on open. And so on
  3. 5

    Centralising Record in Continuous Subform

    I put it in a regular module in case it needs to be reused somewhere else, such was the case in the sample, where it's using the on click event of the subform and the buttons in the main form. I was going to add another form to test another variation with arrows, but I hope someone else...
  4. 5

    Centralising Record in Continuous Subform

    CurrentSectionTop would indeed help with that task. Depending on the full behavior you want to program, you could modify the following code to suit your needs. It's a combination of the suggestions by theDBguy and Josef, but with built in functionality. Public Function bounceRecordView(frm As...
  5. 5

    Opening Website - looking for error

    At this point, it would be best if you could post something we can play with, because that error is not very specific, but since it highlights the line that checks if it's fully loaded, we could add a timer or approach it differently. You have not yet confirmed if the "Incorrect Ref" string...
  6. 5

    Solved Sync/delivery problems multiple users editing the same Access form.

    Can confirm, pretty effective.
  7. 5

    Solved Sync/delivery problems multiple users editing the same Access form.

    @Pat Hartman I will rewrite what I said from: To: Let's not go down the path of me vs you. Thanks for your clarification on why you suspect this is a cloud issue.
  8. 5

    Solved Sync/delivery problems multiple users editing the same Access form.

    Mind elaborating why you believe this is a cloud issue? OP: Here's my 1.5 cents, when something in Access does not work, which is not uncommon, implement it yourself. Lock your records in a custom way, make a table where you can store which records should be locked and also release the locks...
  9. 5

    Opening Website - looking for error

    Private Sub FUNC_HRREFForm() Dim IE As InternetExplorer Dim doc As HTMLDocument Dim html As String Set IE = New InternetExplorer With IE .Visible = True .Navigate "http://corp/ViewHRDetails.asp?Headerid=" &...
  10. 5

    Opening Website - looking for error

    Something like this should do the job Private Sub FUNC_HRREFForm() Dim IE As InternetExplorer Dim doc As HTMLDocument Dim html As String Set IE = New InternetExplorer With IE .Visible = True .Navigate "https://www.google.com.mx/" While .Busy Or...
  11. 5

    Opening Website - looking for error

    Your code will find that string even if it's not meant to be shown. Maybe OP should post a snippet of the html.
  12. 5

    Help!

    Maybe the watercooler board is the tiktok of a few posters over here.
  13. 5

    Help!

    It could also be done by using a lookup function that checks a list of definition in the same worksheet, same workbook, another workbook, some access database, a text file, hardcoded definitions, and many other ways. I disagree.
  14. 5

    Help!

    I don't know what the guy in the tiktok video is doing, but you can easily accomplish that using a http request to some web service that gives you the definition of names. You make the function in VBA or use the built-in feature of the newest versions of Excel for that.
  15. 5

    Solved Access VBA code to retrieve server date

    I'm happy to help. Good luck in your project!
  16. 5

    Solved Access VBA code to retrieve server date

    Sure, modify the sub and make it return a date with dd/mm/yyyy as format. Since it returns something like this: Tue, 13 Jun 2023 17:10:34 GMT, we can extract the date starting from the 6th character, with a lenght of 11 characters using the Mid function. After that, we cast it into a date...
  17. 5

    Solved Access VBA code to retrieve server date

    Who knows. Oh I didn't read it, he uses a similar approach. But hey, my code is shorter, eh.
  18. 5

    Solved Access VBA code to retrieve server date

    Wouldn't your users be able to open the VBA editor and change the lines of code that prevent them from using your database? If that does not matter, then maybe it would be easier to just get the time from a http request. This is a google service that returns the date in the headers when called...
  19. 5

    Solved Access VBA code to retrieve server date

    Just make you server send you the response of a SELECT NOW() AS MyTimeStamp If that doesn't work, then let us know what you're using as backend.
  20. 5

    Solved Click listbox record, click button then append this record

    To get selected item: Me.MyListboxControl?
Back
Top Bottom