CHMlib Logo Leading Translation Management System for Translation Agencies, Top Translation Management Software for Freelance Translators, Time Tracking Software, Word Count, Character Count and Line Count Software, Computer Assisted Translation Tool for Easy Word Count, Clipboard Character Count Software, User-Friendly Translation Memory Software, Terminology Management Software, Terminology Management Server, Microsoft Glossary Software, Dictionary of Acronyms, Social Network for Translators and Translation Agencies, Acronyms and Abbreviations Search Engine, Russian Translation Lab, Ukrainian Translation Lab.
You are reading help file online using chmlib.com
CrisisHelper - First Aid in Tough Times of World Economic Crisis


_bm0 Rave Reports Developer Reference

TBaseReport. StreamMode property (read/write/published)

Top  Previous  Next
Declaration
property StreamMode: TStreamMode;

 

Default
smMemory

 

Category

 

Description
This property defines how the stream for the report file is maintained.

smFile

This setting uses a TFileStream to store the report file and is very good for large reports, but may run a little slower.

smTempFile

This will send the output to a temporary file in the \Windows\Temp directory. This filename used by smTempFile is created by the system and will be deleted when you exit the reporting system.

smMemory

This setting uses a TMemoryStream and is good for small reports to run faster, but do not use this option for reports that may be large.

smUser

This does not create a stream, but uses the stream that has been assigned to the Stream property before the report was started. The programmer is responsible for creating and freeing the stream if smUser is used.

 

See also

 

Example (Delphi)
RvNDRWriter1.StreamMode := smMemory;
RvNDRWriter2.FileName   := 'TEMP.RpT';
RvNDRWriter2.StreamMode := smFile;

 

Example (C++Builder)
RvNDRWriter1->StreamMode = smMemory;
RvNDRWriter2->FileName   = "TEMP.RPT";
RvNDRWriter2->StreamMode = smFile;



You are reading help file online using chmlib.com

If you want your help file to be removed or added please send e-mail to chmlibcom@gmail.com