473,385 Members | 2,028 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

c# Late Binding to MS Acesss Report

How can I late bind to an MS Access Report from c#
This is how far I have gotten so far
I dont know how to do the open report call
Thanks
David
Expand|Select|Wrap|Line Numbers
  1. string message = "Failed to create Access application.";
  2. Type accessType = Type.GetTypeFromProgID("Access.Application");
  3.        if (accessType == null)
  4.          {
  5.             throw new Exception(message);
  6.          }
  7. accessApplication = Activator.CreateInstance(accessType);
  8.  
  9.  string fileName = "C:\\Report.accdb";
  10.  
  11.  accessApplication.GetType().InvokeMember(
  12.                    "OpenCurrentDatabase",
  13.                    System.Reflection.BindingFlags.Default |     System.Reflection.BindingFlags.InvokeMethod,
  14.                 null,
  15.                 accessApplication,
  16.                         new Object[] { fileName  });
Dec 3 '08 #1
5 3450
anijos
52
Try

DoCmd.OpenReport(
"Name", //ReportName
Access.AcView.acViewPreview, //View
System.Reflection.Missing.Value, //FilterName
System.Reflection.Missing.Value //WhereCondition
);

Regards,
AniJos
Dec 4 '08 #2
AniJos
Thanks
That code is for early binding when one uses
using Access = Microsoft.Office.Interop.Access;

I would like to use late binding to pick up the MS Access version of the machine the program is running on

Regards
David
Dec 4 '08 #3
leddy
4
hi david,

did you find a solution to this?

cheers
leddy
Mar 9 '09 #4
No I did not get a solution for this
Mar 9 '09 #5
leddy
4
This is how I've done it if anyone's interested.....

I have a function in the db called 'printReports' which is where the report is run, it takes three parameters, string dbfFileName, string dbfFilePath and string roundListName.

Expand|Select|Wrap|Line Numbers
  1.             object accessObject = null;
  2.             object[] Parameters;
  3.  
  4.             string dbfFilePath = Path.GetDirectoryName(sf.Filename);
  5.             string roundListName = getTXT(dbfFilePath);
  6.             roundListName = roundListName.Split(',')[1];
  7.             roundListName = roundListName.ToUpper();
  8.             string dbfFileName = Path.GetFileNameWithoutExtension(sf.Filename) + ".dbf";
  9.  
  10.             try
  11.             {
  12.                 accessObject = Activator.CreateInstance(Type.GetTypeFromProgID("Access.Application"));
  13.  
  14.                 accessObject.GetType().InvokeMember(
  15.                    "OpenCurrentDatabase",
  16.                    BindingFlags.Default | BindingFlags.InvokeMethod,
  17.                    null,
  18.                    accessObject,
  19.                    new Object[] { @"S:\DATA\SMART2\Data\SMART2_DB.mdb" });
  20.  
  21.                 accessObject.GetType().InvokeMember(
  22.                    "Run",
  23.                    System.Reflection.BindingFlags.Default | System.Reflection.BindingFlags.InvokeMethod,
  24.                    null,
  25.                    accessObject,
  26.                    new Object[] { "printReports", dbfFilePath, dbfFileName, roundListName });
  27.  
  28.                 accessObject.GetType().InvokeMember(
  29.                    "CloseCurrentDatabase",
  30.                    System.Reflection.BindingFlags.Default | System.Reflection.BindingFlags.InvokeMethod,
  31.                    null,
  32.                    accessObject,
  33.                    null);
  34.  
  35.             }
  36.             catch (Exception ex)
  37.             {
  38.                 string message = ex.Message;
  39.                 while (ex.InnerException != null)
  40.                 {
  41.                     ex = ex.InnerException;
  42.                     message += "\r\n----\r\n" + ex.Message;
  43.                 }
  44.                 MessageBox.Show(message);
  45.             }
  46.             finally
  47.             {
  48.                 if (accessObject != null)
  49.                 {
  50.                     System.Runtime.InteropServices.Marshal.ReleaseComObject(accessObject);
  51.                     accessObject = null;
  52.                 }
  53.             }
  54.  
  55.  
HTH

leddy
Mar 10 '09 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

21
by: Mike MacSween | last post by:
Had some trouble with Word automation. Sorted it, in the process thought I would try late binding. Some people reccomend it. So this: *********************************************************...
1
by: JD Kronicz | last post by:
Hi .. I have an issue I have been beating my head against the wall on for some time. I am trying to use late binding for MS graph so that my end users don't have to worry about having the right...
14
by: Composer | last post by:
I've read many postings about the problem of Access.References.IsBroken and the consensus seems to be that late binding is the cure-all. I have a very complex Access application that needs...
9
by: Zlatko Matić | last post by:
I was reading about late binding, but I'm not completely sure what is to be done in order to adjust code to late binding... For example, I'm not sure if this is correct: early binding: Dim ws...
5
by: eBob.com | last post by:
In another thread VJ made me aware of Tag. Fantastic! I've been wanting this capability for a long time. But it seems that I cannot use it with Option Strict On. In an event handler I have ......
30
by: lgbjr | last post by:
hi All, I've decided to use Options Strict ON in one of my apps and now I'm trying to fix a late binding issue. I have 5 integer arrays: dim IA1(500), IA2(500), IA3(500), IA4(500), IA5(500) as...
6
by: Tim Roberts | last post by:
I've been doing COM a long time, but I've just come across a behavior with late binding that surprises me. VB and VBS are not my normal milieux, so I'm hoping someone can point me to a document...
3
ADezii
by: ADezii | last post by:
The process of verifying that an Object exists and that a specified Property or Method is valid is called Binding. There are two times when this verification process can take place: during compile...
14
by: Siv | last post by:
hi, I am converting an application that writes to an Excel spreadsheet and the code trips the "option Strict" that I would like on because the parser says "option Strict On disallows late...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.