|
I'm not sure if this should be posted as a bug or features request, but at least I think it would be good to find a better solution for this than mine..
Problem: If you use textfields that has newline characters Cardexchange always (at least with access and MySql) puts a ' character at the start and end of the textfield. So if a textfield has many lines Cardexchange always puts the string separator ' at the start and beginning of the field. A quick solve for me was using the function [Copy(<Fieldname>,2,Length(<Fieldname >)-2)], but that of course requires every row to have newline characters in that field, otherwise it strips of the first and last character of that field.
Just to give one example if my text was unclear, if you have a text field with the following: --------- Firstname(newline) Surname --------- Cardexchange will output the field as: --------- 'Firstname Surname' ----------
So an option to remove the string separators would be really handy. Quite seldom you use text fields with new lines when making cards, but for instance one customer we made cards for wanted us to do 7 different layouts. The only difference in the layouts were the text on the backside of the card, and our customer wanted to be able to change the text in the database. By using a multiline textfield we didn't have to do 7 formats, we managed with one, but luckily all fields were multiline otherwise we would have had to inform our customer to always include a newline even if he just wanted one row of text on the backside. A replace or remove function to remove a certain character could also be handy(Haven't tried version 4 that much yet, is there a function to remove or change a certain character??).
|