AfraLisp Blog

The AutoLisp/Visual Lisp/VBA Resource Website

AfraLisp Blog

Home Newsletter Utter Rubbish Coding Tips AutoCAD Tips Contact Downloads WAUN

password_char

password_char

Password Character.

This attribute specifies the character to be used as a password character. If the
'password_char' is specified, that character is displayed in the 'edit_box' instead of the characters entered by the user. The use of this attribute has no effect on the retrieval of the value entered by the user. It alters only the display of the characters in the 'edit_box'.


DCL Code Sample 

lisp49ad : dialog {				//dialog name
          label = "password_char" ;		//give it a label

	: edit_box {				//define edit box
	  label = "Enter Password";		//give it a label
	  key = "eb1";				//give it a name
	  password_char = "*";			//password character
	  width = 6;				//give it a width
	  edit_limit = 6;			//limit to six characters
	  fixed_width = true;			//fix the width
	}					//end edit box

	spacer ;				//add a space

        ok_cancel ;				//predefined OK/Cancel button

        }					//end dialog
 
The AutoLisp/Visual Lisp/VBA Resource Website

Copyright © 1999-Perpetuity by AfraLisp

All rights reserved.
Information in this document is subject to change without notice.
Site created and maintained by Kenny Ramage

The AutoLisp/Visual Lisp/VBA Resource Website