Search results

  1. C

    DataVerse / PowerBI

    Thanks all. Current set-up: Access front-end connected to SQL server on Azure server Wondering if DataVerse is as powerful as a front-end (user-friend forms, VBA capability, etc.) - does it work as an Access replacement? or more of a back-end storehouse? For PowerBI, just want to confirm what I...
  2. C

    DataVerse / PowerBI

    Has anyone explored using DataVerse? And/or PowerBI? I have questions please.
  3. C

    Can't close and delete a form

    What's weird is that IsLoaded = false, but it won't let me delete it, even manually!
  4. C

    Can't close and delete a form

    I did DoEvents still no luck.
  5. C

    Can't close and delete a form

    I'm actually running that code from a general module. And I've tested that the form is not Loaded before I run this code. Would subforms be a culprit?
  6. C

    Can't close and delete a form

    Hello. I have a MAIN form that needs to differ depending on the situation. So I have two TEMPLATE forms that I want to use to replace the MAIN form. So roughly the logic is this: Close the MAIN form Delete the MAIN form Copy TEMPLATE_A or TEMPLATE_B and rename them into MAIN form The problem...
  7. C

    Access going away?

    Not sure I'm following this item...
  8. C

    Access going away?

    Thanks everyone - great insight. If you HAD to give up Access tomorrow... what would you go to. that you think IT would support? Visual Studio? Something else?
  9. C

    Access going away?

    There is talk at my company of Microsoft slowly supporting MS Access less and less (not sure I believe that) and/or our IT dept supporting it only through say 2026. What are you hearing? And what alternatives are out there that allows for connecting to SQL server data, user-friendly forms, and...
  10. C

    Error 3252

    Thanks all. Need to dig into it more.
  11. C

    Error 3252

    Can't open a form whose underlying query contains a user-defined function that attempts to set or get the form's recordsetclone property. Just started seeing this error all of a sudden on Access front-end that accesses Access back-end DB and SQL server. Any suggestions?
  12. C

    Excel functions

    Duh?!?!?
  13. C

    Excel functions

    How to refer directly to Excel function within Access VBA, please? Thanks! Old database has this coding which is bombing... Abs(Round(Excel.WorksheetFunction.Days360 I get "variable not defined" for the "Excel" word.
  14. C

    Grabbing XML field

    I can grab other fields from the table, but any XML type field gets truncated, and not always at 18 characters. It varies.
  15. C

    Grabbing XML field

    Okay here's my new issue ... when I grab the XML field from SQL server, it only grabs the first 18 characters, whereas I know it's much longer. I'm using a String type in VBA. xmlstring = rst("XMLField") EDIT: It is grabbing the last 18 characters of the XML field (last 2 lines). Why won't it...
  16. C

    Grabbing XML field

    Actually now it's working - THANKS!!!
  17. C

    Grabbing XML field

    I get this error using that coding... 3305: Invalid connection string in pass-through query
  18. C

    Grabbing XML field

    Thanks. How about any suggestions on Connection Strings for an Azure SQL server database, from Excel? THANKS.
  19. C

    Grabbing XML field

    Okay I have access to the SQL server database now. I'm trying to set a recordset = a passthrough query on the server, but in Excel VBA (not Access VBA). Any coding examples? This is what I would use in Access... Function fnServerRecordset(pSQL As String) As DAO.Recordset Dim qdf As...
  20. C

    Grabbing XML field

    Also, for connecting to sql server on Azure, any suggested connection strings that work well for you? Thanks.
Back
Top Bottom