Search results

  1. June7

    Solved From with One-To-Many Relationship table

    Need a form/subform arrangement. Main form bound to tblProperty Subform bound to tblPropertyAttributes with a combobox using tblPropertyTypeAttributes as its RowSource This is essentially a many-to-many relationship where tblPropertyAttributes is a "junction" table that associates properties...
  2. June7

    Count(IIf( ...

    As I said, I did change the extension and it won't open, says file is corrupted. Attach the file in a Zip folder. Use Windows Compression. Could have included all those files in one Zip folder.
  3. June7

    Count(IIf( ...

    Build an aggregate query. This is basic Access functionality. Have you studied an introductory tutorial? File in post2 won't open, not even if I change extension.
  4. June7

    SetProperty visible problems

    Consider using a Toggle button instead. In either case, consider code to change button Caption property as well.
  5. June7

    SetProperty visible problems

    Use True and False instead of Yes and No. True is an intrinsic constant with value of -1 (False is 0). The reason it sets only to not visible is because ANYTHING that is not True (-1) is treated as False and that includes "Yes". I know, the property in design shows Yes or No but code expects...
  6. June7

    Help query Count

    Do you want to count how many distinct tickets or how many records for each ticket? For the first, consider a nested query like: SELECT Count(*) AS CntTick FROM (SELECT DISTINCT IDTicket FROM tablename WHERE Status = 1) AS Q1; For the latter, don't include ID. Post your actual SQL statement.
  7. June7

    Hidden dropdown items

    You said this is a field, are you viewing a table or a form? Need to use a form so you can control this. Is form in Single or Continuous or Datasheet view? Pat's solution may be simplest but if you really don't want to always show the archived values in list, here is another approach...
  8. June7

    Pop-up message when converting Access report to PDF

    I don't see an icon in upper left. All I see, very briefly, is an "in progress" popup with Cancel button. But output is so quick there is no opportunity to even click Cancel if I wanted to.
  9. June7

    I have saved the picture of Compliance 1 in my D:\picture folder. I want that when Compliance 2 is selected, the picture corresponding to 2 should

    Review https://www.accessforums.net/showthread.php?t=65686 and https://www.accessforums.net/showthread.php?t=73766
  10. June7

    Query Not Visible When Connecting to Excel

    Can force Excel to recognize Nz() by setting a VBA Editor reference to Microsoft Access x.x Object Library. Your expression using IIf: Sum(IIf([Amount] Is Null, 0, [Amount]))
  11. June7

    Solved Variable not defined in sql string

    Why would multiple fields hold same data? Want to provide sample data and desired result? Attach file or build tables in post. Why were you concatenating field references in original code? Boolean constants should never be within text delimiters as they are numeric and field actually contains...
  12. June7

    Debugger complains about [apparently] non-existant characters

    Doc, I tested a form with an UNBOUND textbox named same as a field in RecordSource. Following code both returned value from textbox: Debug.Print Me.Test1 Debug.Print Me!Test1 When there was no control by that name, same code returned value from field.
  13. June7

    Using Outlook, Word and Access to send bulk emails.

    Yes, the entire suite of apps installed. Best purchase deal I ever made.
  14. June7

    Using Outlook, Word and Access to send bulk emails.

    With my Office 2021 Pro Plus, I wasn't given option to not install. After install, when I opened Outlook the New version opened and there was a clickable prompt in upper right corner to "Switch to Classic". Both apps are still listed but now Classic is default.
  15. June7

    Using Outlook, Word and Access to send bulk emails.

    That video is showing MS Office Professional Plus 2021. As I said, I already installed 2021 for one PC and it is fine, Outlook Classic works. It was a cheap 3rd-party purchase and can't install on a second PC. My second PC still has Office 2010 and that Outlook is basically dead. My attempt to...
  16. June7

    Using Outlook, Word and Access to send bulk emails.

    Every time I click Install, it fails and advises "We couldn't install this product. Wait a bit and try again". So I just installed O365 and Outlook Classic app shows along with Outlook New. Opening Classic tells me this is a trial and I have to buy O365 subscription to continue. For my other PC...
  17. June7

    Using Outlook, Word and Access to send bulk emails.

    Yes, that is the download/install I attempted. The MS Store download doesn't work. The other download is for Office 365 I don't want.
  18. June7

    Using Outlook, Word and Access to send bulk emails.

    When I installed Office 2021 I had option for Outlook to switch to Classic. New and Classic both show in list of apps. Classic is my default mail app. Even if it isn't, Classic should be there for the CDO code to work with. I have read recent discussions that MS no longer includes Classic with...
  19. June7

    Upgrade to Windows 11 for free?

    On the PC I just checked, upgrade wiped away everything, like an original install. This was my first go at upgrade. Still no sign of Bitlocker after restart. The other PC I chose option to not wipe apps or user settings. I will now have to go check out these settings on that one.
  20. June7

    Upgrade to Windows 11 for free?

    No sign of CoPilot on this PC. gpedit.msc errors "can't find". As for all the other Settings, either I don't find or they are Off. Tried the Bitlocker procedure but it does not show in System and Security. Maybe I need to restart computer.
Back
Top Bottom