Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print out a memo using Absolutedb and Delphi and tbasereport (Rvsystem

Status
Not open for further replies.

glewins

Programmer
Jan 24, 2012
3
0
0
CA
I am new at AbsoluteDB. I am currently using Topaz.

I need to print out a multi-line memofield,
I am guessing I need to use tstream to get into stringlist?

How would anyone else do it?


George Lewins
 
Got it. Pseudocode

Procedure print report with memo
var mylist : tstringlist;
Lines : integer;

begin
mylist := tstringlist.create;
mylist.assign(Abstable1.fieldbyname(‘emp_address’);
For lines := 0 to mylist.count – 1 do
begin
printtab(mylist.strings[ lines]);
end;
mylist.free
Prints out memo’s just fine.

I just needed to put my thinking cap on.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top