Dear Sir,
It's my Code as following…
Visual BasicDim passkey = XtraInputBox.Show("Enter Password", "Title", "Default")
Is there easy way to set the input's word as password input '******' ?
thanks a lot.
Dear Sir,
It's my Code as following…
Visual BasicDim passkey = XtraInputBox.Show("Enter Password", "Title", "Default")
Is there easy way to set the input's word as password input '******' ?
thanks a lot.
Visual BasicDim arg As New XtraInputBoxArgs()
Dim editor As New TextEdit
editor.Properties.UseSystemPasswordChar = True
arg.Editor = editor
arg.Caption = "Title"
arg.Prompt = "Enter Password"
arg.DefaultResponse = ""
Dim passkey As String = XtraInputBox.Show(arg)
Hello Chen,
Thank you for informing us that you have found a way to complete your task. Please feel free to reactivate this ticket in case of any other questions regarding this scenario.
Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.