Search results

  1. X

    Inroducing mdfOffman

    Welcome mdfOffman!
  2. X

    How to refer to objects in referenced db?

    Perhaps this old thread on this forum can help you with some examples. Search and look up this threat: "Opening a form in a library and retrieving a returned value"
  3. X

    Hello

    BBD, welcome to AWF!
  4. X

    Hi all I am new to this forum

    Hello and welcome, Benedict!
  5. X

    Hi I'm new of this forum

    Welcome Francesco.
  6. X

    Solved linking text box with after_update procedure using VBA.

    Yes, I agree with you. My post is only a warning.
  7. X

    Solved linking text box with after_update procedure using VBA.

    If I'm not mistaken, creating dynamic controls doesn't work on MDE/ACCDE databases, so I hope you don't have to convert your database.
  8. X

    Need to print a crosstab report without complete data

    I thing you'll need a dummy table with 52 rows, one for each week of the year and join it with your data.
  9. X

    Error Filtering on Lookup Field from a Query

    I can filter both columns without any issue too.
  10. X

    VBA MS Access Error Handling

    Perhaps you should use transactions to assure the stock is properly updated.
  11. X

    Blank Sign In Window When Attempting to Access Microsoft Account

    Basic tests: - Delete browse cache and cookies. - Test it using another browser - Test it on another computer,
  12. X

    task sch, Accees VBA

    I have always had to execute scheduled tasks using the option "Run only when user is logged on" on servers.
  13. X

    Solved Why double highlight text fails?

    If you change the fld1 and fld2 type to Longtext in the table tbl your database example works properly:
  14. X

    I Need Advice on Optimizing a Large Database Query

    Read Allen Browne's tips:
  15. X

    VBA Code error on the counter

    In the JSON data I see: "totItemCnt": 2, And the "ItemList" array contains only one item instead of 2
  16. X

    Solved Create table by VBA in accde

    Try using Application.RefreshDatabaseWindow : Private Sub CmdCreateTable_Click() Dim dbs As Database ' Modify this line to include the path to Northwind ' on your computer. Set dbs = Application.CurrentDb ' Create a table with two text fields...
  17. X

    Solved Create table by VBA in accde

    Hi zelarra821, In the ACCDE the error raises in the line: Application.RunCommand acCmdSave If I'm not mistaken this instruction saves the current object, and it can only be used on ACCDB files. If you comment or delete this line, the table is properly created in the ACCDE file but not shown...
  18. X

    Solved Cannot see the wood for the trees :(

    I don't know if this can can help you: I've tested the code on 32 bit MS Access 365 using Early Binding with no issues: Call SendToExcel ("Consulta1","Sheet1","c:\Tmp\Cambridge.xlsx") strTQname: Consulta1 strSheetName: Sheet1 strPath: c:\Tmp\Cambridge.xlsx
Back
Top Bottom