Search results

  1. A

    Solved Problem with the format property of a combo box.

    That's a completely different approach (thanks for the idea), but I'm inclined to use Colin's option 2.
  2. A

    Solved Problem with the format property of a combo box.

    - Using suggestion 1 results in having the first number column and not the text column beiing displayed after selecting a value. - Usind suggestion 2, as you already mentioned, has the disadvantage that I can no more read out the value property but have to read `uxMultiColumnSample.Column(0)`...
  3. A

    Solved Problem with the format property of a combo box.

    My goal is to display gray text in a combo box that does not contain a value (null), indicating that the user should select a value from the list. Once a value has been selected, it should be displayed in black text. This works fine in a combo box with a single column of type Text (see attached...
  4. A

    Solved Report Sent to Printer?

    I don't know the environment you're looking for a solution for, but I have an idea that I'd like to at least mention. As far as I understand, your software solution is about being able to say with certainty that your software has printed and that the job has reached the printer. Whether paper...
  5. A

    VBA class modules & factory design

    @bodders24 : If I understand you correctly you should dimension gclsHoliday as IHoliday: Public gclsHoliday As IHoliday
  6. A

    How can I read newly received invoice files without having to re-read the old ones?

    Perhaps you could encourage the creator of the files in the source folder to include the hash of the files in the file name when creating or modifying files. Then you wouldn't need to calculate the hash of the files in the source folder every time, but could take it from the file name.
  7. A

    Form sizing / scrolling for smaller screens

    Just because you didn't mention it (I'm not sure if you are aware of it): The reason why your forms seem to large on the laptop having the same screen resolution for sure is a different scaling factor in Windows screen settings.
  8. A

    Adapting automatically Access code from 32-bit to 32/64-bit

    Since I have had different experiences and cannot agree with your statement, I did a little research. The crux of the matter when using ADODB in conjunction with, for example, "RecordCount" is which version of the ADODB library you have referenced. In my 64-bit VBA environment: - "Microsoft...
  9. A

    Adapting automatically Access code from 32-bit to 32/64-bit

    While we are on the subject of what needs to be considered when converting 32-bit code to 64-bit, it is also worth mentioning non-API-specific issues: In an "ADODB.Recordset" object, the "RecordCount" property has the type "Long" in 32-bit and "LongLong" in 64-bit. So if the number of records...
  10. A

    RegExp Added to VBA Library with Office Version 2508

    One theory I have as to why @arnelgp already has "VBA.RegExp" in his Office-LTSC is that he also has Microsoft Project Professional 2024 installed (which is not an LTSC version). Perhaps the new VBA version/environment was installed on his computer via a Microsoft Project update?
  11. A

    RegExp Added to VBA Library with Office Version 2508

    Okay, it looks like there is only one channel for each of them: “PerpetualVL2021” and “PerpetualVL2024.” In any case, I can't change the channel in the UI.
  12. A

    RegExp Added to VBA Library with Office Version 2508

    Here is a small addendum from me, as I now also had access to two Microsoft Office versions that have already been mentioned here: 1. Microsoft Office LTSC Professional Plus 2021 Version 2108 (Build 14334.20296 C2R) 64-bit 2. Microsoft Office LTSC Professional Plus 2024 Version 2408 (Build...
  13. A

    Variable assignment not working.

    @MarkK : It simply could be a "WScript.Shell" object. CreateObject("WScript.Shell") @pdanes : In such weird situations I always try to DEcompile the accdb. Edit: @RonPaii : Yes, it seems he has. He wrote:
  14. A

    Class_Terminate() on project reset?

    The difference in behavior could be a matter of responsibility: Microsoft Access Team vs. VBA Team
  15. A

    Future of Access

    Ok, the problem seems to belong to my location: But it's no problem. It's not that important.
  16. A

    Future of Access

    (Currently?) the link doesn't work...
  17. A

    Solved Copy Paste Text Too Long error

    If the storage of an image as an Ole object stores just the raw binary data (I'm not sure) then storing a Base64 string instead would need more storage: (see here)
  18. A

    RegExp Added to VBA Library with Office Version 2508

    I could test another one, exactly the same version as @theDBguy has: Microsoft Office Professional Plus 2016 Version 2508 (Build 19127.20222) One more information from my side: It is a 32-bit Access. 'RegExp' is available in 'VBA'.
  19. A

    Solved Copy Paste Text Too Long error

    Base64 can also be represented as a character string.
  20. A

    RegExp Added to VBA Library with Office Version 2508

    @CJ_London : Good point. The versions I mentioned are both 64-bit.
Back
Top Bottom