pvasile
pvasile
About
- Username
- pvasile
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
It seems to work fine with Word 2002/Word 2003 but not with Word 2000. Vasile
-
Sorry, wrong code. This one should work: AnsiString StringVariable = "Hello !!!"; int index = frxReport1->Variables->IndexOf("EXERCICE"); if(index >= 0) { frxReport1->Variables->Items[index]->Value = QuotedStr(StringVar…
-
Have you tried this: ? frxReport1->Variables["EXERCICE"] = QuotedStr(StringVariable);
-
property MaxMemSize: Integer default 10; This means that I should see in BCB's Object Inspector the default value of MaxMemSize = 10 and not 10000000, is that correct? Anyway, I use FR3 as report engine in my application server, and if I don't…
-
OK, I have tried again: In C++Builder 6: It works fine if you have only one detail band, but if you place onto the report 2 Detail bands linked to the same datasource, and set RowCount = 1 for both it won't work (it will produce lots of pages)…
-
In the meantime I found that this works as well: Report->Variables->Variables["MYVAR"] = QuotedStr("Hello World !"); Thanks, Vasile
-
I forgot to say that I'm using C++Builder 6.
-
OK, I have tested the demo reports and it seems to work fine. But I'm using C++Builder 6 and it doesn't work properly...maybe the BCB is the cause? You can reproduce this easily: 1. Open C++Builder 6 2. Drop a FastReport and a BDE table li…
-
Setting the property RowCount = 1 to a band displays the first record only which is OK but in this case the FR enters an infinite loop which creates a huge number of pages (every band gets displayed again and again, I have stopped it after 1500 page…
-
Yes, I agree with you, this is not a bug, but it would be very nice to have this functionality in one of the next releases... Vasile
-
In FastReport 2.53 the field name is displayed automatically inside the memo when you drag and drop it onto the raport. Can we have a similar functionality in FR3? Actually, in FR3 if you drag and drop several fields onto the report, you'll se…
-
Well, I can't do that because I have a single datasource for all the bands, so for some bands I want to display the first record, for others I want to display all records... Vasile