Search found 47 matches

by pierrew
August 21st, 2012, 2:32 am
Forum: Other
Topic: CSPro Beta 5 testing
Replies: 16
Views: 19186

Re: CSPro Beta 5 testing

I have noticed it happens when I copy certain line boxes and text from another form and paste them into a new form then drag a roster with a alphanumeric field, change that field to a multiline, remove tickboxes then trying to resize the roster before adjusting the size of the multiline text box. Th...
by pierrew
August 20th, 2012, 7:58 pm
Forum: Entry
Topic: How do we know the Length of numeric field with decimal plac
Replies: 10
Views: 13427

Re: How do we know the Length of numeric field with decimal

Try this ... num = 12345678.1234567891; nomi = length(strip(maketext("%d",num))); //get rid of decimals denomi = int(10000000000 * (num - int(num))); //get rid of zeros do until (denomi/10) <> int(denomi/10) denomi = denomi / 10; enddo; denomi = length(strip(maketext("%d",denomi)...
by pierrew
August 19th, 2012, 9:13 pm
Forum: Entry
Topic: How do we know the Length of numeric field with decimal plac
Replies: 10
Views: 13427

Re: How do we know the Length of numeric field with decimal

Hello ... Use %f to write a floating point into text. Be aware that it is limited to, I believe, 6 places before the decimal. So if you only have 2 digits, the "%f" will automatically add 3 more zeros. So your value of 12.3456 will contain a length of 9 -> [12.345600]. Oh and its NUMERIC a...
by pierrew
August 19th, 2012, 6:44 pm
Forum: Other
Topic: CSPro Beta 5 testing
Replies: 16
Views: 19186

Re: CSPro Beta 5 testing

Sorry Greg,

Its not a big deal just thought you might be interested in this fault. dealing with multi-line text fields in rosters.

Pierre
Roster Picture.jpg
Roster Picture.jpg (81.5 KiB) Viewed 7516 times
by pierrew
August 12th, 2012, 12:31 am
Forum: Feature Requests
Topic: improvement of form layout
Replies: 8
Views: 11991

Re: improvement of form layout

Been working a lot with forms lately and it would be nice to 1) insert a multiple line text field 2) images 3) page borders lines that are predenifed to certain screen resolutions e.g., 800x600 ... I normally make my own by editing the form file. 4) change color of an active item box (in addtion to ...
by pierrew
August 8th, 2012, 6:10 pm
Forum: Other
Topic: CSPro Beta 5 testing
Replies: 16
Views: 19186

Re: CSPro Beta 5 testing

I was able to save my work and reconstuct the form file using a large file text editor. Here is the compressed file you might be interested in seeing what has been going on. I removed some text near the header it looked like dashes and it brought the form file back to its original size about 70k. Al...
by pierrew
August 8th, 2012, 5:24 am
Forum: Other
Topic: CSPro Beta 5 testing
Replies: 16
Views: 19186

Re: CSPro Beta 5 testing

Hey Greg,
1)Using a bunch of text fields in the Entry system creates a large form file.
Try to mimic by copy and pasting text in Entry.

2) Multiple line text field in roster will not adjust until you modify row text then resize row height.

Pierre