Recent content by arnelgp

  1. arnelgp

    Error 3828 when exporting queries to Excel

    what the code does is Replace the form parameter criteria of the query with the actual value of Text2 on the form. after running the TransferSpreadsheet, the query is re-instated to it's original.
  2. arnelgp

    Error 3828 when exporting queries to Excel

    can you test this again, i made another module. and modify the code a bit.
  3. arnelgp

    Error 3828 when exporting queries to Excel

    you don't get error when opening these 2 queries directly from the Navigation Pane. right? and only got error when Exporting them? is the Export code from the same form, PowerBI_Export_Pop_Up_Form?
  4. arnelgp

    Majp's Analog Clock

    here is what I added, a Tick sound on form, frmClock6.
  5. arnelgp

    Error 3828 when exporting queries to Excel

    maybe you can show us the SQL String of those two problematic queries.
  6. arnelgp

    Error 3828 when exporting queries to Excel

    this is very fast, total re-code. i remove the module and instead, change the query string if there is parameter. see the code on the button
  7. arnelgp

    Error 3828 when exporting queries to Excel

    here again with some modifications. before running the code, Kill Excel from Task Manager(Ctrl-Shit-ESC), then find Excel. Right-click on the Excel Process, the choose End Task.
  8. arnelgp

    Error 3828 when exporting queries to Excel

    for the two problematic query, use manual export and the rest using TransferSpreadsheet. something like this on a command button. '/Code on form Private Sub cmdExport_Click() Dim strFilePath Dim arrQueries As Variant Dim i As Integer If IsDate(Me.Text2) = False Then...
  9. arnelgp

    Error 3828 when exporting queries to Excel

    for you queries with criteria (SalesInboice_Query and PurchaseOrder_Query) use manual export (the code i gave you). for the rest, export normally with DoCmd.TransferSpreadsheet.
  10. arnelgp

    Error 3828 when exporting queries to Excel

    maybe you can use a Custom export routine like on the demo. open Form1 and see code on the form and on module modExcelExport.
  11. arnelgp

    Majp's Analog Clock

    As I search the forum for a sample form with Analog Clock, I came across many samples. ashleedawg has some interesting demo in https://www.access-programmers.co.uk/forums/threads/making-an-analog-clock-on-an-ms-access-form-manipulating-controls-no-activex.294673/, also Markk has one on the said...
  12. arnelgp

    Access Based Media Manager

    maybe what you need to start is to look for FileDialog or something. see Form1 and Module1 on this demo.
  13. arnelgp

    Need help with one of my Time Clock forms

    can you check this out. not related to your problem. see MainMenu form (the Auto_Date and Auto_Time textbox). I made them unbound and add timer event to set their value thus making them change the time/date in real-time.
  14. arnelgp

    Calculated Field Error

    poor AI, still to blame.
  15. arnelgp

    How to prevent query opening in maximum.

    using DoCmd.Maximize, will affect all "windows" you open and will open maximized. it is better to use DoCmd.Move
Back
Top Bottom