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
V

vtecman

@vtecman
About
Posts
1
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem automating Access to run a report
    V vtecman

    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!

    COM
  • Login

  • Don't have an account? Register

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