Enmascarar Password en un InputBox

Deivid

Board Regular
Joined
Jan 11, 2008
Messages
56
Tengo esta macro:

Option Explicit

Sub check()
Dim valCheck As Integer, passCheck As Integer

passCheck = 2299

valCheck = Application.InputBox(prompt:="Ingrese el código de 4 dígitos", Type:=1)


If valCheck = passCheck Then
With Cells(ActiveCell.Row, 36)
.Value = "REVISADO"
.Font.ColorIndex = 50
.Font.Bold = True
End With
Else
Exit Sub
End If

End Sub

El passcheck por defecto es 2299. Como puedo hacer para que al introducir cada digito aparezca un asterisco?
 
Actualmente lo que hago yo es que tengo un módulo de formulario que implementé como un módulo de clase donde importo el módulo y pongo la contraseña en el TAG del formulario y zás, ya tenés todo lo necesario. Cuando tengo tiempo pondré más sobre cómo hacer algo asi. Pero realmente hay que gatear antes de correr, ¿no?
 
Upvote 0

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Respecto a la Duplicacion de codigo en Modulo1 y Thisworkbook: se trata de un error de mi parte, basta con el codigo que esta en el Modulo
 
Upvote 0
Gracias Juan Pablo. Otra cuestion... Para que en los commandbuttons acepte el primer click del raton o el pulsar tan solo una vez el Enter, que propiedad tengo que cambiarle?
gracias
 
Upvote 0

Forum statistics

Threads
1,223,974
Messages
6,175,739
Members
452,667
Latest member
vanessavalentino83

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top