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!

formatting output

Status
Not open for further replies.

mjmiller24

Programmer
Aug 29, 2001
17
0
0
US
Hello,

I have a one to many link. I have each record, for one ID printed out. The problem is that I get the output like this:

For the ID 343

11. Problem Number

45
34
75

However, I want it to display like this:


11. Problem Number

45 34 75


This is my current code


local stringvar str := "";

if ( RecordNumber > 1) then
str := "SEE ATTACHED"
else
str := "";

f_result


So, how do I get the code to display in a horizontal line instead of a vertical line?

I appreciate any help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top