March 8, 200520 yr Author I have a credit card field that I would like the first 12 digits to use the bulletz font and the last 4 to use the arial font. Is this possible? I haven't been able to get it to work but wasn't sure if it wasn't possible or if it was the way I was using the TextFont function. This is the 1st time I have used the TextFont function. Thanks, John
March 8, 200520 yr I have a credit card field that I would like the first 12 digits to use the bulletz font and the last 4 to use the arial font. Is this possible? I haven't been able to get it to work but wasn't sure if it wasn't possible or if it was the way I was using the TextFont function. This is the 1st time I have used the TextFont function. Thanks, John
March 8, 200520 yr Author I have a credit card field that I would like the first 12 digits to use the bulletz font and the last 4 to use the arial font. Is this possible? I haven't been able to get it to work but wasn't sure if it wasn't possible or if it was the way I was using the TextFont function. This is the 1st time I have used the TextFont function. Thanks, John
March 8, 200520 yr Probably yes. But as a security measure it's only a copy and paste away from clear text.
March 8, 200520 yr Probably yes. But as a security measure it's only a copy and paste away from clear text.
March 8, 200520 yr Probably yes. But as a security measure it's only a copy and paste away from clear text.
March 9, 200520 yr If you are talking a simple display field, the answer is yes. If you are talking a data entry field, the answer is no. The reason is that you can't establish a 'zone' for part of an entry field. Of course the answer is simple, split the credit card number up into 4 (or 2) separate fields. However, Vaughn is right; now matter what I can think of to obscure part of the CC number, it is vulnerable to copy'n'paste should someone figure that out.
March 9, 200520 yr If you are talking a simple display field, the answer is yes. If you are talking a data entry field, the answer is no. The reason is that you can't establish a 'zone' for part of an entry field. Of course the answer is simple, split the credit card number up into 4 (or 2) separate fields. However, Vaughn is right; now matter what I can think of to obscure part of the CC number, it is vulnerable to copy'n'paste should someone figure that out.
March 9, 200520 yr If you are talking a simple display field, the answer is yes. If you are talking a data entry field, the answer is no. The reason is that you can't establish a 'zone' for part of an entry field. Of course the answer is simple, split the credit card number up into 4 (or 2) separate fields. However, Vaughn is right; now matter what I can think of to obscure part of the CC number, it is vulnerable to copy'n'paste should someone figure that out.
March 9, 200520 yr As an FYI - You could create an auto enter calc with the option Do not replace existing contents (if any) turned off. This could look like Let ( [ bulletz = TextFont ( Left (your field here;12); "Bulletz" ); arial = TextFont (Right (your field here;4); "Arial")]; Bulletz & Arial ) This would change the contents of the field to be bulletz followed by arial after the user entered the initial value (and would stay that way until otherwise changed) But see Vaughan's post for security isues.
March 9, 200520 yr As an FYI - You could create an auto enter calc with the option Do not replace existing contents (if any) turned off. This could look like Let ( [ bulletz = TextFont ( Left (your field here;12); "Bulletz" ); arial = TextFont (Right (your field here;4); "Arial")]; Bulletz & Arial ) This would change the contents of the field to be bulletz followed by arial after the user entered the initial value (and would stay that way until otherwise changed) But see Vaughan's post for security isues.
March 9, 200520 yr As an FYI - You could create an auto enter calc with the option Do not replace existing contents (if any) turned off. This could look like Let ( [ bulletz = TextFont ( Left (your field here;12); "Bulletz" ); arial = TextFont (Right (your field here;4); "Arial")]; Bulletz & Arial ) This would change the contents of the field to be bulletz followed by arial after the user entered the initial value (and would stay that way until otherwise changed) But see Vaughan's post for security isues.
March 9, 200520 yr Author It can be only a display field, that is no big deal. We don't want the processors to be able to see all the numbers. So what do I set the fields font to be initially, Arial or BulletZ? Maybe it doesn't matter? Thanks for the help! John
March 9, 200520 yr Author It can be only a display field, that is no big deal. We don't want the processors to be able to see all the numbers. So what do I set the fields font to be initially, Arial or BulletZ? Maybe it doesn't matter? Thanks for the help! John
March 9, 200520 yr Author It can be only a display field, that is no big deal. We don't want the processors to be able to see all the numbers. So what do I set the fields font to be initially, Arial or BulletZ? Maybe it doesn't matter? Thanks for the help! John
March 9, 200520 yr If you don't want them to see it, what's the point in showing it as bullets? Make your field Right (CC# ;4 ) and show that. If you really want this, you can put a text object on the layout, containing 12 bullets followed by a merged field showing the last 4 digits. BTW: TextFont ( "xxxxxxxxxxxx" ) ; "Bulletz" ) & TextFont (Right ( CC# ; 4 ) ; "Arial" ) can be copied and pasted with no security problems.
March 9, 200520 yr If you don't want them to see it, what's the point in showing it as bullets? Make your field Right (CC# ;4 ) and show that. If you really want this, you can put a text object on the layout, containing 12 bullets followed by a merged field showing the last 4 digits. BTW: TextFont ( "xxxxxxxxxxxx" ) ; "Bulletz" ) & TextFont (Right ( CC# ; 4 ) ; "Arial" ) can be copied and pasted with no security problems.
March 9, 200520 yr If you don't want them to see it, what's the point in showing it as bullets? Make your field Right (CC# ;4 ) and show that. If you really want this, you can put a text object on the layout, containing 12 bullets followed by a merged field showing the last 4 digits. BTW: TextFont ( "xxxxxxxxxxxx" ) ; "Bulletz" ) & TextFont (Right ( CC# ; 4 ) ; "Arial" ) can be copied and pasted with no security problems.
March 9, 200520 yr Author Because it makes our processors feel warm & fuzzy! I may use your suggestion of a text image and a merge field. That would be simpler than distributing the bulletz font to everyone. BTW: TextFont ( "xxxxxxxxxxxx" ) ; "Bulletz" ) & TextFont (Right ( CC# ; 4 ) ; "Arial" ) can be copied and pasted with no security problems. Not if you don't allow them to enter the field in browse mode. Thanks for the suggestion! John
March 9, 200520 yr Author Because it makes our processors feel warm & fuzzy! I may use your suggestion of a text image and a merge field. That would be simpler than distributing the bulletz font to everyone. BTW: TextFont ( "xxxxxxxxxxxx" ) ; "Bulletz" ) & TextFont (Right ( CC# ; 4 ) ; "Arial" ) can be copied and pasted with no security problems. Not if you don't allow them to enter the field in browse mode. Thanks for the suggestion! John
March 9, 200520 yr Author Because it makes our processors feel warm & fuzzy! I may use your suggestion of a text image and a merge field. That would be simpler than distributing the bulletz font to everyone. BTW: TextFont ( "xxxxxxxxxxxx" ) ; "Bulletz" ) & TextFont (Right ( CC# ; 4 ) ; "Arial" ) can be copied and pasted with no security problems. Not if you don't allow them to enter the field in browse mode. Thanks for the suggestion! John
Create an account or sign in to comment