| View previous topic :: View next topic |
| Author |
Message |
Sorin Guest
|
Posted: Sun Jul 10, 2005 5:01 pm Post subject: Event Editor problem |
|
|
Hi
I try to add some code to the event editor on Delphi7 Rave version.
I add to the OnGetText the code:
"if Value = '1' then
Value := 'aaaa';
end if;"
this work ok but when I add the code:
"if Value = '1' then
Value := 'aaaa';
elseif Value = '2' then
Value := 'bbbbb';
end if;"
the compile stage run ok but when trying to execute the report
it raise the error
Cannot execute the command (00);
What I'm missing?
Thanks Sorin
|
|
| Back to top |
|
 |
Eldon Lewis Guest
|
Posted: Mon Jul 11, 2005 6:49 pm Post subject: Re: Event Editor problem |
|
|
Sorin,
There were significant enhancement and bug fixes to the Rave Language that
didn't occur until after the delivery to Borland for the Delphi 7 release.
You can accomplish what you are trying to do through the use of DataMirrors.
If you have a desire to use the event editor instead then I would recommend
that you upgrade to the BEX version of Rave. The BEX version entitles you
to technical support, source code and the latest patches directly from us.
Eldon Lewis
Nevrona Designs
"Sorin" <sorinh (AT) zahav (DOT) net.il> wrote
| Quote: | Hi
I try to add some code to the event editor on Delphi7 Rave version.
I add to the OnGetText the code:
"if Value = '1' then
Value := 'aaaa';
end if;"
this work ok but when I add the code:
"if Value = '1' then
Value := 'aaaa';
elseif Value = '2' then
Value := 'bbbbb';
end if;"
the compile stage run ok but when trying to execute the report
it raise the error
Cannot execute the command (00);
What I'm missing?
Thanks Sorin
|
|
|
| Back to top |
|
 |
|