RE: ALP Password Font

Subject :RE: ALP Password Font
From :Timothy Penner
Date :Saturday, June 7, 2014 at 5:34 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId1467388e3e922028
p.s. I just checked e-nodes website and it shows:



New in version 9.6

* New features

...

- Support of "password" columns (bullets will be displayed instead of the actual values, including during entry)



















-----Original Message-----

From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-bounces@xxx.xxx] On Behalf Of Timothy Penner

Sent: Friday, June 06, 2014 4:33 PM

To: 4D iNug Technical

Subject: RE: ALP Password Font



Hi Randy,



Does this technique help at all?

http://kb.4d.com/assetid=14045



-Tim















-----Original Message-----

From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-bounces@xxx.xxx] On Behalf Of Randy Engle

Sent: Friday, June 06, 2014 3:41 PM

To: '4D iNug Technical'

Subject: ALP Password Font



There have been discussions about the old password font: %password.



This doesn't work in ALP (v9.x)



I'm using it to mask data in ALP



Anybody know a font to use or other technique?



Randy Engle

XC2 Software LLC

**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Timothy Penner
Date :Saturday, June 7, 2014 at 5:32 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14673872f31cd928
Hi Randy,



Does this technique help at all?

http://kb.4d.com/assetid=14045



-Tim















-----Original Message-----

From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-bounces@xxx.xxx] On Behalf Of Randy Engle

Sent: Friday, June 06, 2014 3:41 PM

To: '4D iNug Technical'

Subject: ALP Password Font



There have been discussions about the old password font: %password.



This doesn't work in ALP (v9.x)



I'm using it to mask data in ALP



Anybody know a font to use or other technique?



Randy Engle

XC2 Software LLC

**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Stephen J. Orth
Date :Saturday, June 7, 2014 at 5:20 AM
Link :https://kb.4d.com/resources/inug?msgid=GmailId146760ee860ec157
Phil,



Thanks for the update...



Is there a way to make this work with the AL_SetCellTextProperty command?

If I use ALP_Cell_FormattedValue this generates an error.



Thanks...





Steve



*********************************************

Stephen J. Orth

The Aquila Group, Inc. Office: (608) 834-9213

P.O. Box 690 Mobile: (608) 347-6447

Sun Prairie, WI 53590



E-Mail: s.orth@xxx.xxx

*********************************************



----------------------------------------------------------------------------

--------------



Randy,



The bullet character is Unicode 8226 (0x2022):

http://www.unicode.org/charts/PDF/U2000.pdf on page 2



Any of these will work:

AL_SetColumnTextProperty ($area; $column; ALP_Column_Format; ".")

AL_SetColumnTextProperty ($area; $column; ALP_Column_Format; Char(8226))

AL_SetColumnTextProperty ($area; $column; ALP_Column_Format; Char(0x2022))



The manual has now been updated, see page 64.

http://www.e-node.net/ftp/AreaListPro/AreaListPro_Manual.pdf



Thank you for pointing out this omission.



Best regards,

--

Phil

www.e-node.net



**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :Re: ALP Password Font
From :Philippe Ganter
Date :Saturday, June 7, 2014 at 4:10 AM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14675cedf5b84a4f
Randy,



The bullet character is Unicode 8226 (0x2022):

http://www.unicode.org/charts/PDF/U2000.pdf on page 2



Any of these will work:

ALSetColumnTextProperty ($area; $column; ALPColumnFormat; "•")

ALSetColumnTextProperty ($area; $column; ALPColumnFormat; Char(8226))

ALSetColumnTextProperty ($area; $column; ALPColumnFormat; Char(0x2022))



The manual has now been updated, see page 64.

http://www.e-node.net/ftp/AreaListPro/AreaListProManual.pdf



Thank you for pointing out this omission.



Best regards,

--

Phil

www.e-node.net





> Just in case anyone else wants to know:

>

> This works:

>

> ALSetColumnTextProperty ($area;$column;ALPColumnFormat;"•")

>

> Curiously, this does not work:

>

> ALSetColumnTextProperty ($area;$column;ALPColumnFormat;Char(149))

>

>

> Randy Engle

> XC2 Software LLC

















































**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Randy Engle
Date :Friday, June 6, 2014 at 6:28 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14673b9e6f6f00de
Just in case anyone else wants to know:



This works:



ALSetColumnTextProperty ($area;$column;ALPColumnFormat;"•")



Curiously, this does not work:



AL_SetColumnTextProperty ($area;$column;ALP_Column_Format;Char(149))





Randy Engle

XC2 Software LLC





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Stephen J. Orth
Date :Friday, June 6, 2014 at 5:48 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14673959664d287c
Randy,



Me too....



Everyone keeps saying the %password font works, but I can't make it. Maybe

it's just me and I'm doing something wrong.



This did work in earlier versions, but in V13 it is not working for us. We

have had to resort to the character by character masking.





Steve





-----Original Message-----

From: Randy Engle [mailto:4d.list@xxx.xxx]

Sent: Friday, June 06, 2014 6:46 PM

To: s.orth@xxx.xxx; '4D iNug Technical'

Subject: RE: ALP Password Font



Steve,



Thanks.



I'm trying to avoid doing this.

;-)



Randy Engle

XC2 Software LLC





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Randy Engle
Date :Friday, June 6, 2014 at 5:47 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId1467394966410393
Tim,



Thanks,



I'm combing through their docs now, trying to find how this works



Randy Engle

XC2 Software LLC



> -----Original Message-----

> From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-

> bounces@xxx.xxx] On Behalf Of Timothy Penner

> Sent: Friday, June 06, 2014 4:45 PM

> To: 4D iNug Technical

> Subject: RE: ALP Password Font

>

> I checked here: http://www.e-node.net/redir/EN/produit_id_20/AreaList-

> Pro.html

>

> It is listed in the section talking about 9.6

>

> -Tim

>

>

>





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Randy Engle
Date :Friday, June 6, 2014 at 5:45 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14673931c18c1dcd
Steve,



Thanks.



I'm trying to avoid doing this.

;-)



Randy Engle

XC2 Software LLC



> -----Original Message-----

> From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-

> bounces@xxx.xxx] On Behalf Of Stephen J. Orth

> Sent: Friday, June 06, 2014 4:35 PM

> To: '4D iNug Technical'

> Subject: RE: ALP Password Font

>

> Randy,

>

> We convert all values into asterisks. We just check as each character is

> entered, and store that value into a hidden variable, then replace the

> screen value with the asterisk.

>

>





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Randy Engle
Date :Friday, June 6, 2014 at 5:45 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14673929d1066b71
Hi Tim,



Thanks for the idea.



In this case, I just want to display so values (actually: registration numbers) in a "masked font"



There is no entry for this particular portion of this feature



Randy Engle

XC2 Software LLC



> -----Original Message-----

> From: 4dtech-bounces@xxx.xxx [mailto:4dtech-

> bounces@xxx.xxx] On Behalf Of Timothy Penner

> Sent: Friday, June 06, 2014 4:33 PM

> To: 4D iNug Technical

> Subject: RE: ALP Password Font

>

> Hi Randy,

>

> Does this technique help at all?

> http://kb.4d.com/assetid=14045

>

> -Tim





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Randy Engle
Date :Friday, June 6, 2014 at 5:43 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId1467391136c2e9c3
Hi Tim,



Thanks for this,



I checked through ALP 9.7 docs and couldn't find anything.



The fact that they say it is hopeful!



Randy Engle

XC2 Software LLC



> -----Original Message-----

> From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-

> bounces@xxx.xxx] On Behalf Of Timothy Penner

> Sent: Friday, June 06, 2014 4:35 PM

> To: 4D iNug Technical

> Subject: RE: ALP Password Font

>

> p.s. I just checked e-nodes website and it shows:

>

> New in version 9.6

> * New features

> ...

> - Support of "password" columns (bullets will be displayed instead of the

> actual values, including during entry)

>





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Stephen J. Orth
Date :Friday, June 6, 2014 at 5:35 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId146738959a3bf2e1
Randy,



We convert all values into asterisks. We just check as each character is

entered, and store that value into a hidden variable, then replace the

screen value with the asterisk.





Steve



-----Original Message-----

From: 4d_tech-bounces@xxx.xxx [mailto:4d_tech-bounces@xxx.xxx] On

Behalf Of Randy Engle

Sent: Friday, June 06, 2014 5:41 PM

To: '4D iNug Technical'

Subject: ALP Password Font



There have been discussions about the old password font: %password.



This doesn't work in ALP (v9.x)



I'm using it to mask data in ALP



Anybody know a font to use or other technique?



Randy Engle

XC2 Software LLC





**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :RE: ALP Password Font
From :Randy Engle
Date :Friday, June 6, 2014 at 5:15 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId14673772d75236b2
Bob,



Thanks for the idea,



I want to give the user the impression that there is actually some

information present.





Randy Engle

XC2 Software LLC



>

>

> ****************************************************************

> ******

> See how easy it is to extend your 4D solutions to Web and mobile. New

> opportunities await you with 4D v14!

>

> 4D Internet Users Group (4D iNUG)

> FAQ: http://lists.4d.com/faqnug.html

> Archive: http://lists.4d.com/archives.html

> Options: https://lists.4d.com/mailman/options/4d_tech

> Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

> ****************************************************************

> ******



**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************

Subject :Re: ALP Password Font
From :Bob McKeever
Date :Friday, June 6, 2014 at 5:07 PM
Link :https://kb.4d.com/resources/inug?msgid=GmailId146736fff98eb351
How about white text on a white background.



On Jun 6, 2014, at 3:41 PM, Randy Engle wrote:



> There have been discussions about the old password font: %password.

>

> This doesn't work in ALP (v9.x)

>

> I'm using it to mask data in ALP

>

> Anybody know a font to use or other technique?

>

> Randy Engle

> XC2 Software LLC

>

>

> **********************************************************************

> See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!

>

> 4D Internet Users Group (4D iNUG)

> FAQ: http://lists.4d.com/faqnug.html

> Archive: http://lists.4d.com/archives.html

> Options: https://lists.4d.com/mailman/options/4d_tech

> Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

> **********************************************************************



_________________________________________

Bob McKeever http://www.mswl.com

McKeever's Software Wizardry

Maple Ridge, B.C.

bobmckeever@xxx.xxx







**********************************************************************

See how easy it is to extend your 4D solutions to Web and mobile. New opportunities await you with 4D v14!



4D Internet Users Group (4D iNUG)

FAQ: http://lists.4d.com/faqnug.html

Archive: http://lists.4d.com/archives.html

Options: https://lists.4d.com/mailman/options/4d_tech

Unsub: mailto:4D_Tech-Unsubscribe@xxx.xxx

**********************************************************************