Search results

  1. J

    Form and Query Help Please!

    Have you looked at the code behind the button, else look at it?
  2. J

    Form and Query Help Please!

    I think that is what you want, (look at the attached database).
  3. J

    Making pivots in xlsx files in Access VBA

    You code is missing a lot reference back to the created Excel object. You need the reference to the Excel object in front of the following words, (because they are unknown for MS-Access) Sheets ActiveWorkbook Cells ActiveSheet xlPageField xlPageField xlColumnField xlRowField If you can't get...
  4. J

    Frame on subform won't update

    Because the sub form is placed on the main form.
  5. J

    report showing data it shouldnt

    Do you have a field called "ComplianceCode" in the table "tblEmailAddress"? I ask because I can't find it and you use it in the below Where clause.
  6. J

    Pass Data from MS Access to AS400

    Can't you use a comma separated file instead? Why should it be from MS-Access to AS400, why not from AS400 to MS-Access?
  7. J

    Compile Error Syntax Error in Search Form VBA Code

    And a &, (sorry that I haven't seen that in first post. Me.Filter = "CommitteeContact = '" & Me.CommitteeContact & "'"
  8. J

    Compile Error Syntax Error in Search Form VBA Code

    You are missing a ' Me.Filter = "CommitteeContact = '" & Me.CommitteeContact "'"
  9. J

    uneditable textbox record source from recordset

    Could it be so simple that you need the Recordset? Set Me.Recordset = rst.Recordset Else post your database with some sample data + name of the form. Zip the database because you haven't post 10 post yet.
  10. J

    Using Year

    Yes these two are the same, but it was not what you wrote, go back and read your post #2. You wrote that 11/12/2009 and 21/11/2009 refer to the same date!
  11. J

    Using Year

    Sorry - I do not agree.
  12. J

    Unwanted CR LF character when using Chr(26)

    No - I just tested it. :)
  13. J

    Unwanted CR LF character when using Chr(26)

    I think rpeare had the solution with the Filesystemobject. Looking at the output it looks perfect.
  14. J

    Unwanted CR LF character when using Chr(26)

    How do you delete it, do you save the file afterwards?
  15. J

    Exporting a graph/chart from Microsoft Access to PDF/JPEG/GIF

    You can make a work around - close and open the form again by code, it is not perfect but it works. Dim TheFormName As String .. .. TheFormName = Me.Name DoCmd.Close acForm, TheFormName, acSaveNo DoCmd.OpenForm TheFormName
  16. J

    Exporting a graph/chart from Microsoft Access to PDF/JPEG/GIF

    Sorry - No. Get use to it - the error message from Access isn't always clear, (mostly not, but you learn what it can cause the error when you stay long enough by MS-Access), by me it was a quiet another error message, more and less the below: "The OLE server may not be registered. "To register...
  17. J

    open Form from form

    Sorry can't open your database, seems to be corrupt - hopeful others have more luck.
  18. J

    Exporting a graph/chart from Microsoft Access to PDF/JPEG/GIF

    It works by me with the below code, new codeline added marked with red, (remember to change the blue codeline). Working database (by me) attached. Set grpApp = Nothing Set grpApp = Me.AdvancedGraph.Object grpApp.export "C:\Access programmer\TestJHB.jpg" Me.AdvancedGraph.Locked =...
  19. J

    open Form from form

    Post your database with some sample data, zip it!
  20. J

    Exporting a graph/chart from Microsoft Access to PDF/JPEG/GIF

    The database crash when I try to change the tab, (from Report Builder to Summary Charts). I'm using MS-Access 2010, which version do you use? Have you tried to download your database from here and open it and change the tab?
Back
Top Bottom