Normal Topic Freeform report scrolling limit? (Read 1401 times)
Infinity
Senior Member
Members
*****
Offline


Diagonally parked in a
parallel dimension

Posts: 1290
Location: Massachusetts
Joined: May 27th, 2005
Freeform report scrolling limit?
Nov 15th, 2007 at 9:15pm
Print Post Print Post  
I'm designing a freeform report to, basically, print an Invoice to the browser.  I seem to have reached a point where I can no longer scroll to the right in the designer window, which is going to be a problem because I have a whole bunch more elements to add.  Help, please?
  

**
Captain Infinity
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Freeform report scrolling limit?
Reply #1 - Nov 16th, 2007 at 12:08am
Print Post Print Post  
Infinity wrote on Nov 15th, 2007 at 9:15pm:
I'm designing a freeform report to, basically, print an Invoice to the browser.  I seem to have reached a point where I can no longer scroll to the right in the designer window, which is going to be a problem because I have a whole bunch more elements to add.  Help, please?


I think 2.0.4 expands those limits. Meanwhile, can you reduce the number of elements by concatenating some of the values in SBasic?
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
Infinity
Senior Member
Members
*****
Offline


Diagonally parked in a
parallel dimension

Posts: 1290
Location: Massachusetts
Joined: May 27th, 2005
Re: Freeform report scrolling limit?
Reply #2 - Nov 16th, 2007 at 3:09pm
Print Post Print Post  
Quote:
I think 2.0.4 expands those limits.

Looking forward to it.  Just what are the current limits?
Quote:
Meanwhile, can you reduce the number of elements by concatenating some of the values in SBasic?

OK, but don't the elements that are joined together still have to appear on the report (albeit marked as invisible)?  If so, can then be tossed into group headers and footers?
  

**
Captain Infinity
Back to top
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Freeform report scrolling limit?
Reply #3 - Nov 16th, 2007 at 3:23pm
Print Post Print Post  
Infinity wrote on Nov 16th, 2007 at 3:09pm:
OK, but don't the elements that are joined together still have to appear on the report (albeit marked as invisible)?  If so, can then be tossed into group headers and footers?


Spaces, Newlines, etc. can be joined in without them appearing as elements in the report.

What you can do is set the Group header to break when ever a unique value changes and then use the Group Header and Group body together. The Header will print first and then the Body will Print. Do not use the Group Footer as it will display data from the next record.

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
Infinity
Senior Member
Members
*****
Offline


Diagonally parked in a
parallel dimension

Posts: 1290
Location: Massachusetts
Joined: May 27th, 2005
Re: Freeform report scrolling limit?
Reply #4 - Nov 16th, 2007 at 3:32pm
Print Post Print Post  
If I can use multiple group headers filled with invisible elements that are joined together by programmed value elements residing in the group body, I think I can make it work.  Maybe a separate group header for each "section" of the report.  I'm envisioning approximately eight "sections" comprising approximately nine elements each, plus all the spacing and newlines.  The report would be run on only a single record.
  

**
Captain Infinity
Back to top
IP Logged
 
Infinity
Senior Member
Members
*****
Offline


Diagonally parked in a
parallel dimension

Posts: 1290
Location: Massachusetts
Joined: May 27th, 2005
Re: Freeform report scrolling limit?
Reply #5 - Nov 16th, 2007 at 3:39pm
Print Post Print Post  
Quote:
Spaces, Newlines, etc. can be joined in without them appearing as elements in the report.

New lines I've got going well, using @NewLine(), but spacing is giving me trouble.  Is there a similar command for spaces, or some trick to it?
  

**
Captain Infinity
Back to top
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Freeform report scrolling limit?
Reply #6 - Nov 16th, 2007 at 3:49pm
Print Post Print Post  
   If you need multiples of them just use @Text()

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Freeform report scrolling limit?
Reply #7 - Nov 16th, 2007 at 3:49pm
Print Post Print Post  
Infinity wrote on Nov 16th, 2007 at 3:39pm:
Quote:
Spaces, Newlines, etc. can be joined in without them appearing as elements in the report.

New lines I've got going well, using @NewLine(), but spacing is giving me trouble.  Is there a similar command for spaces, or some trick to it?

To get a space in HTML use  
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged