Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 8 of 8 total
Thread DBISAM & FastReports???
Fri, Mar 3 2006 5:39 AMPermanent Link

"Ian Branch"
Hi Guys,

   Anybody successfully got the Current DBISAM & FastReports versions working
together successfully and properly in C/S mode?  I'm having a devil of a time
getting it sorted.  Hopefully it is me rather then FastReports....Smiley

Regards,

Ian


--
Fri, Mar 3 2006 8:58 AMPermanent Link

"Scott Martin"
Ian,

No problems here.. working as expected.

What problems are you having?
Are you using the C/S version of FR3 as well? (Not required, but I am able to use either w/ no problem)

Regards,
Scott.

"Ian Branch" <branch@sitathome.net> wrote in message news:7D1B4A83-F995-4FFB-A81A-5A259D8223C9@news.elevatesoft.com...
> Hi Guys,
>
> Anybody successfully got the Current DBISAM & FastReports versions working
> together successfully and properly in C/S mode?  I'm having a devil of a time
> getting it sorted.  Hopefully it is me rather then FastReports....Smiley
>
> Regards,
>
> Ian
>
>
> --
>

Fri, Mar 3 2006 3:59 PMPermanent Link

"Ian Branch"
Hi Scott,

Scott Martin wrote:

> Ian,
>
> No problems here.. working as expected.
>
> What problems are you having?
> Are you using the C/S version of FR3 as well? (Not required, but I am able to
> use either w/ no problem)
>

Let me say up front I am a novice at FastReports and really this should be in
the FR NG but I havn't been able to get assistance there.  My apologies to the
non-FR people.

Firstly, no, I am not using the C/S version, one step at a time...Smiley

I'm trying to create two environments,  1. A standalone report creater/editor
based on the 'enduser' examples for the 'administrator' to use to create/edit
report definitions to be called from an End User application, as well as any
other ad-hoc reports that management may require.  2. End user ability from the
main application to be able to print an Invoice, Quote, Parts Order, etc, using
the report definitions previously created.  In the case of say the Invoice &
Quote I need to tell the report the specific job # to print.

I seem to have 1. sorted OK now but in try to achieve 2. I keep running into
road blocks.  I put some code into the report that I thought would set the
filter when the report is run..

begin

Invoices.Filter := 123456;
Invoices.Filtered := True;

end.

This is a precursor to having a variable in the report that can be set by the
Enduser program to print a specific invoice #.

However when I either compile in the code page or attempt to run the report I
get an Unknown type: 'TfrxDBI4Table' error message.

Now, I acknowledge I could be doing this all around the wrong way and am happy
to be corrected.

Any assistance to get to the end goal appreciated.

Regards & TIA,

Ian



It took me ages to get it all to work as just a report writer which I can now
do reasonably comfortably.  Of course a report on it's own is only usefull when
generated via the


--
Sat, Mar 4 2006 12:37 AMPermanent Link

"Scott Martin"
Ian,

Email me direct and I will send you some code to review.

Regards,
Scott

"Ian Branch" <branch@sitathome.net> wrote in message news:1A824EF5-476B-4FD0-A0A4-1D9F32FBCBBE@news.elevatesoft.com...
> Hi Scott,
>
> Scott Martin wrote:
>
>> Ian,
>>
>> No problems here.. working as expected.
>>
>> What problems are you having?
>> Are you using the C/S version of FR3 as well? (Not required, but I am able to
>> use either w/ no problem)
>>
>
> Let me say up front I am a novice at FastReports and really this should be in
> the FR NG but I havn't been able to get assistance there.  My apologies to the
> non-FR people.
>
> Firstly, no, I am not using the C/S version, one step at a time...Smiley
>
> I'm trying to create two environments,  1. A standalone report creater/editor
> based on the 'enduser' examples for the 'administrator' to use to create/edit
> report definitions to be called from an End User application, as well as any
> other ad-hoc reports that management may require.  2. End user ability from the
> main application to be able to print an Invoice, Quote, Parts Order, etc, using
> the report definitions previously created.  In the case of say the Invoice &
> Quote I need to tell the report the specific job # to print.
>
> I seem to have 1. sorted OK now but in try to achieve 2. I keep running into
> road blocks.  I put some code into the report that I thought would set the
> filter when the report is run..
>
> begin
>
> Invoices.Filter := 123456;
> Invoices.Filtered := True;
>
> end.
>
> This is a precursor to having a variable in the report that can be set by the
> Enduser program to print a specific invoice #.
>
> However when I either compile in the code page or attempt to run the report I
> get an Unknown type: 'TfrxDBI4Table' error message.
>
> Now, I acknowledge I could be doing this all around the wrong way and am happy
> to be corrected.
>
> Any assistance to get to the end goal appreciated.
>
> Regards & TIA,
>
> Ian
>
>
>
> It took me ages to get it all to work as just a report writer which I can now
> do reasonably comfortably.  Of course a report on it's own is only usefull when
> generated via the
>
>
> --
>

Sat, Mar 4 2006 2:28 AMPermanent Link

"Ralf Bieber"
Ian Branch wrote:


>
> However when I either compile in the code page or attempt to run the
> report I get an Unknown type: 'TfrxDBI4Table' error message.
>
>
> Regards & TIA,
>
> Ian
>
>
>
> It took me ages to get it all to work as just a report writer which I
> can now do reasonably comfortably.  Of course a report on it's own is
> only usefull when generated via the


Hi Ian,


I use also DBIsam and Fastreport, but I don't use the DBIsam user
components. So I have only an tip:


Look in the ..

unit frxDBIRTTI;


constructor TFunctions.Create;

...
with AddClass(TfrxDBI4Table, '???') do
       AddProperty('Table', 'TTable', GetProp, nil);
...


unit frxDBIComponents;

...

initialization

...

frxObjects.RegisterObject1(TfrxDBI4Table, nil, '', '???', 0, 38);

...


Regards,

Ralf


Sun, Aug 5 2007 8:11 AMPermanent Link

Petrus van Breda
"Ian Branch" <branch@sitathome.net> wrote:

Hi Scott,

Scott Martin wrote:

> Ian,
>
> No problems here.. working as expected.
>
> What problems are you having?
> Are you using the C/S version of FR3 as well? (Not required, but I am able to
> use either w/ no problem)
>

Let me say up front I am a novice at FastReports and really this should be in
the FR NG but I havn't been able to get assistance there.  My apologies to the
non-FR people.

Firstly, no, I am not using the C/S version, one step at a time...Smiley

I'm trying to create two environments,  1. A standalone report creater/editor
based on the 'enduser' examples for the 'administrator' to use to create/edit
report definitions to be called from an End User application, as well as any
other ad-hoc reports that management may require.  2. End user ability from the
main application to be able to print an Invoice, Quote, Parts Order, etc, using
the report definitions previously created.  In the case of say the Invoice &
Quote I need to tell the report the specific job # to print.

I seem to have 1. sorted OK now but in try to achieve 2. I keep running into
road blocks.  I put some code into the report that I thought would set the
filter when the report is run..

begin

Invoices.Filter := 123456;
Invoices.Filtered := True;

end.

This is a precursor to having a variable in the report that can be set by the
Enduser program to print a specific invoice #.

However when I either compile in the code page or attempt to run the report I
get an Unknown type: 'TfrxDBI4Table' error message.

Now, I acknowledge I could be doing this all around the wrong way and am happy
to be corrected.

Any assistance to get to the end goal appreciated.

Regards & TIA,

Ian



It took me ages to get it all to work as just a report writer which I can now
do reasonably comfortably.  Of course a report on it's own is only usefull when
generated via the


--
Sun, Aug 5 2007 8:16 AMPermanent Link

Petrus van Breda
Hi

Don't know what happened but my post does not appear.

have you been able to resolve the problem Undeclared Identifier:frxDBdataset1 as I am having the same problem and does not have a solution to it yet. If you find a work around please let
me know.

Petrus

Petrus van Breda <petrusatspsoftdevdotcom> wrote:

"Ian Branch" <branch@sitathome.net> wrote:

Hi Scott,

Scott Martin wrote:

> Ian,
>
> No problems here.. working as expected.
>
> What problems are you having?
> Are you using the C/S version of FR3 as well? (Not required, but I am able to
> use either w/ no problem)
>

Let me say up front I am a novice at FastReports and really this should be in
the FR NG but I havn't been able to get assistance there.  My apologies to the
non-FR people.

Firstly, no, I am not using the C/S version, one step at a time...Smiley

I'm trying to create two environments,  1. A standalone report creater/editor
based on the 'enduser' examples for the 'administrator' to use to create/edit
report definitions to be called from an End User application, as well as any
other ad-hoc reports that management may require.  2. End user ability from the
main application to be able to print an Invoice, Quote, Parts Order, etc, using
the report definitions previously created.  In the case of say the Invoice &
Quote I need to tell the report the specific job # to print.

I seem to have 1. sorted OK now but in try to achieve 2. I keep running into
road blocks.  I put some code into the report that I thought would set the
filter when the report is run..

begin

Invoices.Filter := 123456;
Invoices.Filtered := True;

end.

This is a precursor to having a variable in the report that can be set by the
Enduser program to print a specific invoice #.

However when I either compile in the code page or attempt to run the report I
get an Unknown type: 'TfrxDBI4Table' error message.

Now, I acknowledge I could be doing this all around the wrong way and am happy
to be corrected.

Any assistance to get to the end goal appreciated.

Regards & TIA,

Ian



It took me ages to get it all to work as just a report writer which I can now
do reasonably comfortably.  Of course a report on it's own is only usefull when
generated via the


--
Wed, Aug 8 2007 7:03 PMPermanent Link

Steve Forbes

Team Elevate Team Elevate

Hi Petrus,

As per my reply in the FR NG, can you please provide me with a cut-down
application with data and report that exhibits the problem, and I will try
to resolve.

--
Best regards

Steve

"Petrus van Breda" <petrusatspsoftdevdotcom> wrote in message
news:0ABAC694-BEED-4369-ADFC-D8747BF23A3C@news.elevatesoft.com...
> Hi
>
> Don't know what happened but my post does not appear.
>
> have you been able to resolve the problem Undeclared
> Identifier:frxDBdataset1 as I am having the same problem and does not have
> a solution to it yet. If you find a work around please let
> me know.
>
> Petrus
>
> Petrus van Breda <petrusatspsoftdevdotcom> wrote:
>
> "Ian Branch" <branch@sitathome.net> wrote:
>
> Hi Scott,
>
> Scott Martin wrote:
>
>> Ian,
>>
>> No problems here.. working as expected.
>>
>> What problems are you having?
>> Are you using the C/S version of FR3 as well? (Not required, but I am
>> able to
>> use either w/ no problem)
>>
>
> Let me say up front I am a novice at FastReports and really this should be
> in
> the FR NG but I havn't been able to get assistance there.  My apologies to
> the
> non-FR people.
>
> Firstly, no, I am not using the C/S version, one step at a time...Smiley
>
> I'm trying to create two environments,  1. A standalone report
> creater/editor
> based on the 'enduser' examples for the 'administrator' to use to
> create/edit
> report definitions to be called from an End User application, as well as
> any
> other ad-hoc reports that management may require.  2. End user ability
> from the
> main application to be able to print an Invoice, Quote, Parts Order, etc,
> using
> the report definitions previously created.  In the case of say the Invoice
> &
> Quote I need to tell the report the specific job # to print.
>
> I seem to have 1. sorted OK now but in try to achieve 2. I keep running
> into
> road blocks.  I put some code into the report that I thought would set the
> filter when the report is run..
>
> begin
>
> Invoices.Filter := 123456;
> Invoices.Filtered := True;
>
> end.
>
> This is a precursor to having a variable in the report that can be set by
> the
> Enduser program to print a specific invoice #.
>
> However when I either compile in the code page or attempt to run the
> report I
> get an Unknown type: 'TfrxDBI4Table' error message.
>
> Now, I acknowledge I could be doing this all around the wrong way and am
> happy
> to be corrected.
>
> Any assistance to get to the end goal appreciated.
>
> Regards & TIA,
>
> Ian
>
>
>
> It took me ages to get it all to work as just a report writer which I can
> now
> do reasonably comfortably.  Of course a report on it's own is only usefull
> when
> generated via the
>
>
> --
>

Image