Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. COM
  4. Problem automating Access to run a report

Problem automating Access to run a report

Scheduled Pinned Locked Moved COM
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V Offline
    V Offline
    vtecman
    wrote on last edited by
    #1

    I am using automation to open an Access 97 database, and run a report. It works fine as long as I'm not trying to use a WHERE clause. For example, this code works fine: void CAccessReports::RunReport(CString strReportName) { if (m_pAccess && m_pDoCmd) { m_pDoCmd->OpenReport( COleVariant(strReportName), 2, // acViewPreview COleVariant(), COleVariant()); m_pAccess->SetVisible(TRUE); } } but this code: void CAccessReports::RunReport2(CString strReportName,CString dfilter) { if (m_pAccess && m_pDoCmd) { m_pDoCmd->OpenReport( COleVariant(strReportName), 2, // acViewPreview COleVariant(), COleVariant(dfilter); m_pAccess->SetVisible(TRUE); } } blows up with an Access error: "Data type mismatch in criteria expression.@@@2@5003464@2" (My WHERE clause is: [StartDate]>='04/02/2001' and [EndDate]<='04/18/2001') What am I doing wrong here? Thanks in advance for any help!

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups