|
-
Oct 14th, 2008, 08:45 AM
#1
Thread Starter
Hyperactive Member
CR9 Report Labels add trailing dots
Hi All,
I do not know if this is possible. What I would like to do is add trailing dots programatically so that each text object box is the same length.
example:
Cost of Consumables ........ :
Total Cost ...................... :
I sure would be grateful if someone can tell me how to do this.
Thanks, AC
If you find information helpful from any member, please take a second and rate their post. Its a nice gesture of your appreciation.
"I have not failed 10,000 times. I have successfully identified 10,000 ways that will not work" Thomas Edison
Do illiterate people get the full effect of Alphabet Soup?
ADO FAQ 2005-2008 Masked Textbox Patch FoxPro Date MZ Tools Great Free Tool
-
Oct 14th, 2008, 01:36 PM
#2
Re: CR9 Report Labels add trailing dots
In order to obtain right results, you must use a fixed font (let's say Courier)
Here I use 50 characters, you can change it
Code:
Trim ({Table1.Field1})+ReplicateString (".",50-Length (Trim ({Table1.Field1})))
Other solution could be just add the dots and truncate the field at your needs using any font
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|