Search results

  1. S

    SQL Anywhere 17 some tables show #deleted via ODBC

    It was Sybase SQL Anywhere for ~20 years before SAP bought them. Review all options in the ODBC driver configuration dialog whether there is something related to BigInt. There was a "Keys in SQL Statistics" option required for Access according to some documentation. - However, it doesn't seem...
  2. S

    SQL Anywhere 17 some tables show #deleted via ODBC

    Relink the Sybase tables. Configuration changes affecting ODBC linked tables usually only become active after the tables are relinked with the new configuration.
  3. S

    Closing Form Instances

    This should still be correct. Can you provide a reproducible example were it fails? Just send a WM_CLOSE message to the form window.
  4. S

    Solved Update records through a recordset

    Why did you split this into two steps? You could also include the DogId in the Insert statement. If Reccount = 0 Then CurrentDb.Execute ("INSERT INTO tblDNAProfile (dnatestid, dnacategoryid, dnatypeid, DogId ) " & _ "SELECT dnatestid, dnacategoryid...
  5. S

    Enter Parameter Value? I cannot seem to use sum in footer. my field or control not found. Need help please

    All your references to ResultPromote have a trailing space inside the square brackets. The square brackets make this space part of the Name that is being searched for. This control cannot be found and thus the error is raised. I believe, you cannot (and more importantly, absolutely should not!)...
  6. S

    Solved Attache files from Subform in main form to Outlook

    None of the DAO.FieldX classes has an AttachmentCount property. - That's what the error message is trying to tell you. Isn't it enough to just check for: Not .....Fields("Sigend_Form").Value Is Nothing ?
  7. S

    public declare of DB and Rst

    Technically you can do that. But, as others in this thread, I strongly advise against doing so. You change the variables from being exclusive to the procedure they are declared in to global or module level variables, which can be accessed from a wide variety of procedures. Then previously...
  8. S

    different versions of ODBC driver on computers on network ok?

    Yes, that should work. It is generally advisable to copy the front-end to each user's local hard disk and thus give them their own file for exclusive use.
  9. S

    Run SQL in VBA

    DoCmd.RunSQL "UPDATE tbl_Net_TicketDays SET " & [Forms]![frmBackground]![subfrmTickets]![txtTableFieldDay] & " = [txtMonday]" (Requires txtMonday to be in the active form, otherwise you will need to fully qualify it with Forms!...) Please note: This will update all records in the table! You...
  10. S

    AccessTris: A Tetris Clone in MS Access

    I like this much better and I'm not aware of any naming conflicts, which of course doesn't mean much.
  11. S

    AccessTris: A Tetris Clone in MS Access

    The name "Actris" conflicts with several existing company, brand, and project names. I recommend to change that name to avoid confusion and maybe even legal troubles.
  12. S

    Solved Read Type Information (Classes & Methods) from COM DLL

    Exactly. That's why you declared it as IUnknown, isn't it? It might even make more sense to not even do that but only store the reference to it in a LongPtr. - However, I guess then it's the developers responsibility to explicitly call AddRef/Release when appropriate.
  13. S

    Solved Read Type Information (Classes & Methods) from COM DLL

    I tried once quite a while ago. - I didn't have the patience to achieve success. On first glance, the code on MrExcel looks complex indeed, but I fear this is what is required to make it work with pure VBA/API.
  14. S

    How to deal with dynamic IP address in MS Access to MYSQL DB Maria

    I doubt this will help. The problem is not the hostname of the server, but the IP addresses of the clients used for restricting access to the MySql server to known hosts only, - Is this correct, @nector ? Even when using dynamic DNS services like DYN (formerly DynDNS), a reverse DNS lookup of...
  15. S

    download invoice documents from Amazon - possible?

    When would that happen? If you define the data as an array of bytes, I don't see why it would change to a different data type without you doing it in your code.
  16. S

    Ribbon Backstage View Access 365

    The Backstage XML works unchanged even in the newest versions of Microsoft Access. However, someday in recent years, I believe in 2021, Microsoft introduced an entirely new screen to the Office applications; the "Home" screen. (The "Home" screen is different from the "Home" tab in the...
  17. S

    OpenArgs (my) class way

    JFTR: VBA does not have garbage collection. Memory for object variables is released based on COM reference counting.
  18. S

    Closing image viewing software

    Ok, I misunderstood this, but ... ...actually... I don't think this is a good idea. And I think, you will agree... On my computer a .jpeg file will open by default in an application, which identifies itself as Photos.exe. Now look at the registry key you were referring to:
  19. S

    Closing image viewing software

    @KitaYama and @cheekybuddha, I get the impression that you completely skipped an important step: How do you know that Microsoft.Photo.exe is actually the application the user has configured for viewing these types of files? I really wonder why nobody pursued this approach, which, in theory...
  20. S

    Closing image viewing software

    @KitaYama , did you notice that the backslashes in the path were replaced with the Yen currency symbol in your screenshot?
Back
Top Bottom