Hi all,
I used to use FastReport in Delphi7 but it seems to be different in FR Studio.
I downloaded FR Studio Demo and, now, I'm developing an application in Visual Studio C# and have 3 questions about it;
1) Is it compatable and can be interface between FR Studio and Visual Studio 2008 Professional (just want to make sure)?
2) When I import FR in to my project as reference (COM Object), it is fine. Below is my code;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using FastReport;
namespace TestFastReport
{
public partial class frmTestFastReport : Form
{
TfrxReportClass report;
public frmTestFastReport()
{
InitializeComponent();
report = report = new TfrxReportClass();
}
private void button1_Click(object sender, EventArgs e)
{
report.LoadReportFromFile("C:/Report/TestFastReport/Report.fr3");
report.ShowReport();
}
}
}
But the problem is when I want to open it in client machines, there is an error. So, what do I have to install into my client's machine first to be able to view the report? Is there a run-time version or some things like that?
3)How to send a variable from Visual Studio C# to FR Studio?
I'm looking for your help and many thanks for answering.
