Search results

  1. T

    Television episode tracker

    I can think of the set of actors that might change for each season.
  2. T

    Solved Ugly new Access bug

    > Older versions of Access closed the form when you press End. Not necessarily. That may depend on which event the error occurred in (the cancellable Form_Open perhaps?), if there is an error handler in place (your code apparently did not have one), and possibly other factors like if the form...
  3. T

    Solved Ampersand in Page.Caption Right-Justifies Its Text

    This is a screenshot from the Northwind 2 Dev Edition, Product form. I don't see the issue you're raising, but because of the tight cropping there is not much difference between a right aligned and a center aligned tab. Post your screenshot, please.
  4. T

    different versions of ODBC driver on computers on network ok?

    I foresee problems. User1 opens the shared FE and relinks the tables with ODBC13. User2 opens it and relinks with ODBC18. What will happen to User1? Bite the bullet, and give every user their own FE, per best practices. If you look around, there are several tools / scripts available to keep the...
  5. T

    Change backcolor on account change

    No, it is an RGB value, long integer. There are a few defined constants like vbYellow, but otherwise you need to cobble a color together yourself. There is a color selector for the color properties.
  6. T

    public declare of DB and Rst

    Yes you can, in a Standard Module you can write: Public g_db as dao.database 'g_ prefix for global objects and then set it in your startup code. I do this in my code. For recordsets it can be more tricky because you may sometimes want to keep them open for more than the current procedure, but...
  7. T

    Trust Center and Auto Updating Front Ends

    Are you saying ACCDR does not require Trusted Location?
  8. T

    Access vs Comercially available databases

    We know nothing about your company (a common line of business, or a unique one?), your hierarchy (e.g. where are you placed in the org chart, and where is the asker?), your equipment (is it connected to your app), the strengths and weaknesses of your app. So giving advice is perilous. In your...
  9. T

    Round function being ignored in query

    In Access we don't have Float data type, but Double is the equivalent. The VBA.Round function takes any "Numeric expression", per this documentation. That means my "real" data type is supported.
  10. T

    Round function being ignored in query

    @The_Doc_Man: I like your suggestion of using Format, but I am still puzzled by several aspects already introduced above: * Immediate window result * Round with literal value in query * Not limited to very small numbers.
  11. T

    Round function being ignored in query

    I doubt that Mark. This is not a passthrough query. Also note that the Nz function does not throw errors, while it does not exist in T-SQL. The BE is SQL Server 2017. That's what the customer is using.
  12. T

    Round function being ignored in query

    It is not directly related to the value I cited. Another record has a value of 0.675999999046326, and it is not being rounded either.
  13. T

    Round function being ignored in query

    A365-32 semi-annual, v2408. Using classic SQL editor. Experiment 1: Select CSng(Nz([Ingredients].[MaxQty],[Ingredients].[Qty])) AS IngredientQty From … Experiment 2: Select Round(CSng(Nz([Ingredients].[MaxQty],[Ingredients].[Qty])),3) AS IngredientQty From … Both return the exact same value...
  14. T

    download invoice documents from Amazon - possible?

    I don't know anything about authentication with Amazon, but I would be very surprised if this would not work: Tim Hall - https://github.com/VBA-tools/VBA-Web The code supports multiple authentication methods.
  15. T

    AccessSweeper: Uncover the Fun!

    Looking at your code a bit more: I bet you were getting tired of flawlessly writing the 100 MouseDown events. There is a better way: control subclassing. The modified version is attached.
  16. T

    FYI: One of my replies is in the queue, awaiting moderation.

    FYI: One of my replies is in the queue, awaiting moderation.
  17. T

    AccessSweeper: Uncover the Fun!

    Nice. For your next version, make sure the code compiles.
  18. T

    Get volume (loudness) attribute of audio file, set volume

    "music files" is not specific enough. Each file format has its own capabilities. For example, this blog entry of mine is about WAV files, and shows how to interpret the file metadata. In the case of WAV, there is no loudness attribute.
  19. T

    Solved Extracting part of string

    I would do a double Split on this: first Split on the space, then Split the resulting items on the forward slash. Look up the Split function in Help.
Back
Top Bottom