Twitter iPhone pliant OnePlus 11 PS5 Disney+ Orange Livebox Windows 11

InputBox et Mot de passe

7 réponses
Avatar
Patrick
Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de passe
mais j'aimerais que ce soient des "*" qui s'affichent à la place du texte
saisi en clair. Est-ce possible ?

Merci.

--
Patrick

7 réponses

Avatar
isabelle
bonjour Patrick,

c'est possible avec un TextBox mit sur un UserForm,
car seul le TextBox a la propriété PasswordChar

isabelle

Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de passe
mais j'aimerais que ce soient des "*" qui s'affichent à la place du texte
saisi en clair. Est-ce possible ?

Merci.



Avatar
JB
Bonjour,

Non. Il faut un formulaire

http://boisgontierjacques.free.fr/pages_site/FormulaireMotPasse.htm

JB
On 21 nov, 15:39, Patrick wrote:
Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de passe
mais j'aimerais que ce soient des "*" qui s'affichent à la place du text e
saisi en clair. Est-ce possible ?

Merci.

--
Patrick


Avatar
Corto
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type" >
</head>
<body bgcolor="#ffffff" text="#000000">
Bonjour Patrick,<br>
Mais si c'est possible !!!!!!!!<br>
...... Attention, j'ai pas dis c'est facile, il faut passer par des API
Windows. J'ai trouvé ça sur le web mais je n'ai pas testé. <br>
<br>
<pre class="alt2" dir="ltr"
style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 498px; text-align: left;">Option Explicit
'////////////////////////////////////////////////////////////////////
'Password masked inputbox
'Allows you to hide characters entered in a VBA Inputbox.
'
'Code written by Daniel Klann
'<a class="moz-txt-link-freetext" href="http://www.danielklann.com/"> http://www.danielklann.com/</a>
'March 2003
'// Kindly permitted to be amended
'// Amended by Ivan F Moala
'// <a href="http://www.xcelfiles.com" target="_blank">Microsoft Exce l Files by Ivan F Moala contains VBA API WMI VBS and formulas. Remember c an do.</a>
'// April 2003
'// Works for Xl2000+ due the AddressOf Operator
'//
'// Amended 5th March 2004 for Gopal
'// This allows it to be run on Xl97+
'////////////////////////////////////////////////////////////////////
'API functions to be used
Private Declare Function CallNextHookEx _
Lib "user32" ( _
ByVal hHook As Long, _
ByVal ncode As Long, _
ByVal wParam As Long, _
lParam As Any) _
As Long
Private Declare Function GetModuleHandle _
Lib "kernel32" _
Alias "GetModuleHandleA" ( _
ByVal lpModuleName As String) _
As Long
Private Declare Function SetWindowsHookEx _
Lib "user32" _
Alias "SetWindowsHookExA" ( _
ByVal idHook As Long, _
ByVal lpfn As Long, _
ByVal hmod As Long, _
ByVal dwThreadId As Long) _
As Long
Private Declare Function UnhookWindowsHookEx _
Lib "user32" ( _
ByVal hHook As Long) _
As Long
Private Declare Function SendDlgItemMessage _
Lib "user32" Alias "SendDlgItemMessageA" ( _
ByVal hDlg As Long, _
ByVal nIDDlgItem As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) _
As Long
Private Declare Function GetClassName _
Lib "user32" _
Alias "GetClassNameA" ( _
ByVal hwnd As Long, _
ByVal lpClassName As String, _
ByVal nMaxCount As Long) _
As Long
Private Declare Function GetCurrentThreadId _
Lib "kernel32" () _
As Long
'Constants to be used in our API functions
Private Const EM_SETPASSWORDCHAR = &amp;HCC
Private Const WH_CBT = 5
Private Const HCBT_ACTIVATE = 5
Private Const HC_ACTION = 0
Private hHook As Long
Public Function NewProc(ByVal lngCode As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
Dim RetVal As Long
Dim strClassName As String, lngBuffer As Long
If lngCode &lt; HC_ACTION Then
NewProc = CallNextHookEx(hHook, lngCode, wParam, lParam)
Exit Function
End If
strClassName = String$(256, " ")
lngBuffer = 255
If lngCode = HCBT_ACTIVATE Then 'A window has been activated
RetVal = GetClassName(wParam, strClassName, lngBuffer)
If Left$(strClassName, RetVal) = "#32770" Then 'Class name of the Inputbox
'This changes the edit control so that it display the password ch aracter *.
'You can change the Asc("*") as you please.
SendDlgItemMessage wParam, &amp;H1324, EM_SETPASSWORDCHAR, Asc("* "), &amp;H0
End If
End If

'This line will ensure that any other hooks that may be in place are
'called correctly.
CallNextHookEx hHook, lngCode, wParam, lParam
End Function
'// Make it public = avail to ALL Modules
'// Lets simulate the VBA Input Function
Public Function InputBoxDK(Prompt As String, Optional Title As String, _
Optional Default As String, _
Optional Xpos As Long, _
Optional Ypos As Long, _
Optional Helpfile As String, _
Optional Context As Long) As String

Dim lngModHwnd As Long, lngThreadID As Long

'// Lets handle any Errors JIC! due to HookProc&gt; App hang!
On Error GoTo ExitProperly
lngThreadID = GetCurrentThreadId
lngModHwnd = GetModuleHandle(vbNullString)

#If VBA6 Then
hHook = SetWindowsHookEx(WH_CBT, AddressOf NewProc, lngModHwnd, lng ThreadID)
#Else
hHook = SetWindowsHookEx(WH_CBT, AddrOf("NewProc"), lngModHwnd, lng ThreadID)
#End If
If Xpos Then
InputBoxDK = InputBox(Prompt, Title, Default, Xpos, Ypos, Helpfile, Context)
Else
InputBoxDK = InputBox(Prompt, Title, Default, , , Helpfile, Context )
End If
ExitProperly:
UnhookWindowsHookEx hHook
End Function
Sub TestDKInputBox()
Dim x As String
x = InputBoxDK("Entrez votre mot de passe ici.", "Mot de passe requis", "")
If x &lt;&gt; "admin" Then
MsgBox "Votre mot de passe n'est pas valide."
End
End If
MsgBox "Bienvenue Administrateur!", vbExclamation

End Sub</pre>
<br>
<br>
Corto<br>
<br>
Patrick a écrit :
<blockquote
cite="mid:"
type="cite">
<pre wrap="">Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de passe
mais j'aimerais que ce soient des "*" qui s'affichent à la place du texte
saisi en clair. Est-ce possible ?

Merci.

</pre>
</blockquote>
</body>
</html>
Avatar
isabelle
wow!, ça fonctionne très bien, merci Corco ainsi qu'à Daniel Klann.

isabelle

Bonjour Patrick,
Mais si c'est possible !!!!!!!!
...... Attention, j'ai pas dis c'est facile, il faut passer par des API
Windows. J'ai trouvé ça sur le web mais je n'ai pas testé.

Option Explicit
'////////////////////////////////////////////////////////////////////
'Password masked inputbox
'Allows you to hide characters entered in a VBA Inputbox.
'
'Code written by Daniel Klann
'http://www.danielklann.com/
'March 2003
'// Kindly permitted to be amended
'// Amended by Ivan F Moala
'// Microsoft Excel Files by Ivan F Moala contains VBA API WMI VBS and formulas. Remember can do. <http://www.xcelfiles.com>
'// April 2003
'// Works for Xl2000+ due the AddressOf Operator
'//
'// Amended 5th March 2004 for Gopal
'// This allows it to be run on Xl97+
'////////////////////////////////////////////////////////////////////
'API functions to be used
Private Declare Function CallNextHookEx _
Lib "user32" ( _
ByVal hHook As Long, _
ByVal ncode As Long, _
ByVal wParam As Long, _
lParam As Any) _
As Long
Private Declare Function GetModuleHandle _
Lib "kernel32" _
Alias "GetModuleHandleA" ( _
ByVal lpModuleName As String) _
As Long
Private Declare Function SetWindowsHookEx _
Lib "user32" _
Alias "SetWindowsHookExA" ( _
ByVal idHook As Long, _
ByVal lpfn As Long, _
ByVal hmod As Long, _
ByVal dwThreadId As Long) _
As Long
Private Declare Function UnhookWindowsHookEx _
Lib "user32" ( _
ByVal hHook As Long) _
As Long
Private Declare Function SendDlgItemMessage _
Lib "user32" Alias "SendDlgItemMessageA" ( _
ByVal hDlg As Long, _
ByVal nIDDlgItem As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) _
As Long
Private Declare Function GetClassName _
Lib "user32" _
Alias "GetClassNameA" ( _
ByVal hwnd As Long, _
ByVal lpClassName As String, _
ByVal nMaxCount As Long) _
As Long
Private Declare Function GetCurrentThreadId _
Lib "kernel32" () _
As Long
'Constants to be used in our API functions
Private Const EM_SETPASSWORDCHAR = &HCC
Private Const WH_CBT = 5
Private Const HCBT_ACTIVATE = 5
Private Const HC_ACTION = 0
Private hHook As Long
Public Function NewProc(ByVal lngCode As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
Dim RetVal As Long
Dim strClassName As String, lngBuffer As Long
If lngCode < HC_ACTION Then
NewProc = CallNextHookEx(hHook, lngCode, wParam, lParam)
Exit Function
End If
strClassName = String$(256, " ")
lngBuffer = 255
If lngCode = HCBT_ACTIVATE Then 'A window has been activated
RetVal = GetClassName(wParam, strClassName, lngBuffer)
If Left$(strClassName, RetVal) = "#32770" Then 'Class name of the Inputbox
'This changes the edit control so that it display the password character *.
'You can change the Asc("*") as you please.
SendDlgItemMessage wParam, &H1324, EM_SETPASSWORDCHAR, Asc("*"), &H0
End If
End If

'This line will ensure that any other hooks that may be in place are
'called correctly.
CallNextHookEx hHook, lngCode, wParam, lParam
End Function
'// Make it public = avail to ALL Modules
'// Lets simulate the VBA Input Function
Public Function InputBoxDK(Prompt As String, Optional Title As String, _
Optional Default As String, _
Optional Xpos As Long, _
Optional Ypos As Long, _
Optional Helpfile As String, _
Optional Context As Long) As String

Dim lngModHwnd As Long, lngThreadID As Long

'// Lets handle any Errors JIC! due to HookProc> App hang!
On Error GoTo ExitProperly
lngThreadID = GetCurrentThreadId
lngModHwnd = GetModuleHandle(vbNullString)

#If VBA6 Then
hHook = SetWindowsHookEx(WH_CBT, AddressOf NewProc, lngModHwnd, lngThreadID)
#Else
hHook = SetWindowsHookEx(WH_CBT, AddrOf("NewProc"), lngModHwnd, lngThreadID)
#End If
If Xpos Then
InputBoxDK = InputBox(Prompt, Title, Default, Xpos, Ypos, Helpfile, Context)
Else
InputBoxDK = InputBox(Prompt, Title, Default, , , Helpfile, Context)
End If
ExitProperly:
UnhookWindowsHookEx hHook
End Function
Sub TestDKInputBox()
Dim x As String
x = InputBoxDK("Entrez votre mot de passe ici.", "Mot de passe requis", "")
If x <> "admin" Then
MsgBox "Votre mot de passe n'est pas valide."
End
End If
MsgBox "Bienvenue Administrateur!", vbExclamation

End Sub



Corto

Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de passe
mais j'aimerais que ce soient des "*" qui s'affichent à la place du texte
saisi en clair. Est-ce possible ?

Merci.






Avatar
Michel Pierron
Bonjour Isabelle;
Si tu avais téléchargé
http://www.excelabo.net/moteurs/compteclic.php?nom=mp-subclassing , tu en
aurais beaucoup plus pour le même prix (centrage texte / personnalisation
des boutons / menu système...).

Bises

"isabelle" a écrit dans le message de news:
%
wow!, ça fonctionne très bien, merci Corco ainsi qu'à Daniel Klann.

isabelle

Bonjour Patrick,
Mais si c'est possible !!!!!!!!
...... Attention, j'ai pas dis c'est facile, il faut passer par des API
Windows. J'ai trouvé ça sur le web mais je n'ai pas testé.

Option Explicit
'////////////////////////////////////////////////////////////////////
'Password masked inputbox
'Allows you to hide characters entered in a VBA Inputbox.
'
'Code written by Daniel Klann
'http://www.danielklann.com/
'March 2003
'// Kindly permitted to be amended
'// Amended by Ivan F Moala
'// Microsoft Excel Files by Ivan F Moala contains VBA API WMI VBS and
formulas. Remember can do. <http://www.xcelfiles.com>
'// April 2003
'// Works for Xl2000+ due the AddressOf Operator
'//
'// Amended 5th March 2004 for Gopal
'// This allows it to be run on Xl97+
'////////////////////////////////////////////////////////////////////
'API functions to be used
Private Declare Function CallNextHookEx _
Lib "user32" ( _
ByVal hHook As Long, _
ByVal ncode As Long, _
ByVal wParam As Long, _
lParam As Any) _
As Long
Private Declare Function GetModuleHandle _
Lib "kernel32" _
Alias "GetModuleHandleA" ( _
ByVal lpModuleName As String) _
As Long
Private Declare Function SetWindowsHookEx _
Lib "user32" _
Alias "SetWindowsHookExA" ( _
ByVal idHook As Long, _
ByVal lpfn As Long, _
ByVal hmod As Long, _
ByVal dwThreadId As Long) _
As Long
Private Declare Function UnhookWindowsHookEx _
Lib "user32" ( _
ByVal hHook As Long) _
As Long
Private Declare Function SendDlgItemMessage _
Lib "user32" Alias "SendDlgItemMessageA" ( _
ByVal hDlg As Long, _
ByVal nIDDlgItem As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) _
As Long
Private Declare Function GetClassName _
Lib "user32" _
Alias "GetClassNameA" ( _
ByVal hwnd As Long, _
ByVal lpClassName As String, _
ByVal nMaxCount As Long) _
As Long
Private Declare Function GetCurrentThreadId _
Lib "kernel32" () _
As Long
'Constants to be used in our API functions
Private Const EM_SETPASSWORDCHAR = &HCC
Private Const WH_CBT = 5
Private Const HCBT_ACTIVATE = 5
Private Const HC_ACTION = 0
Private hHook As Long
Public Function NewProc(ByVal lngCode As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
Dim RetVal As Long
Dim strClassName As String, lngBuffer As Long
If lngCode < HC_ACTION Then
NewProc = CallNextHookEx(hHook, lngCode, wParam, lParam)
Exit Function
End If
strClassName = String$(256, " ")
lngBuffer = 255
If lngCode = HCBT_ACTIVATE Then 'A window has been activated
RetVal = GetClassName(wParam, strClassName, lngBuffer)
If Left$(strClassName, RetVal) = "#32770" Then 'Class name of the
Inputbox
'This changes the edit control so that it display the password
character *.
'You can change the Asc("*") as you please.
SendDlgItemMessage wParam, &H1324, EM_SETPASSWORDCHAR, Asc("*"),
&H0
End If
End If
'This line will ensure that any other hooks that may be in place are
'called correctly.
CallNextHookEx hHook, lngCode, wParam, lParam
End Function
'// Make it public = avail to ALL Modules
'// Lets simulate the VBA Input Function
Public Function InputBoxDK(Prompt As String, Optional Title As String, _
Optional Default As String, _
Optional Xpos As Long, _
Optional Ypos As Long, _
Optional Helpfile As String, _
Optional Context As Long) As String
Dim lngModHwnd As Long, lngThreadID As Long
'// Lets handle any Errors JIC! due to HookProc> App hang!
On Error GoTo ExitProperly
lngThreadID = GetCurrentThreadId
lngModHwnd = GetModuleHandle(vbNullString)
#If VBA6 Then
hHook = SetWindowsHookEx(WH_CBT, AddressOf NewProc, lngModHwnd,
lngThreadID)
#Else
hHook = SetWindowsHookEx(WH_CBT, AddrOf("NewProc"), lngModHwnd,
lngThreadID)
#End If
If Xpos Then
InputBoxDK = InputBox(Prompt, Title, Default, Xpos, Ypos, Helpfile,
Context)
Else
InputBoxDK = InputBox(Prompt, Title, Default, , , Helpfile, Context)
End If
ExitProperly:
UnhookWindowsHookEx hHook
End Function
Sub TestDKInputBox()
Dim x As String
x = InputBoxDK("Entrez votre mot de passe ici.", "Mot de passe requis",
"")
If x <> "admin" Then
MsgBox "Votre mot de passe n'est pas valide."
End
End If
MsgBox "Bienvenue Administrateur!", vbExclamation
End Sub



Corto

Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de
passe mais j'aimerais que ce soient des "*" qui s'affichent à la place
du texte saisi en clair. Est-ce possible ?

Merci.








Avatar
Patrick
Merci beaucoup. Cela fonctionne à merveille.

--
Patrick


"Corto" wrote:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Bonjour Patrick,<br>
Mais si c'est possible !!!!!!!!<br>
...... Attention, j'ai pas dis c'est facile, il faut passer par des API
Windows. J'ai trouvé ça sur le web mais je n'ai pas testé.<br>
<br>
<pre class="alt2" dir="ltr"
style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 498px; text-align: left;">Option Explicit
'////////////////////////////////////////////////////////////////////
'Password masked inputbox
'Allows you to hide characters entered in a VBA Inputbox.
'
'Code written by Daniel Klann
'<a class="moz-txt-link-freetext" href="http://www.danielklann.com/">http://www.danielklann.com/</a>
'March 2003
'// Kindly permitted to be amended
'// Amended by Ivan F Moala
'// <a href="http://www.xcelfiles.com" target="_blank">Microsoft Excel Files by Ivan F Moala contains VBA API WMI VBS and formulas. Remember can do.</a>
'// April 2003
'// Works for Xl2000+ due the AddressOf Operator
'//
'// Amended 5th March 2004 for Gopal
'// This allows it to be run on Xl97+
'////////////////////////////////////////////////////////////////////
'API functions to be used
Private Declare Function CallNextHookEx _
Lib "user32" ( _
ByVal hHook As Long, _
ByVal ncode As Long, _
ByVal wParam As Long, _
lParam As Any) _
As Long
Private Declare Function GetModuleHandle _
Lib "kernel32" _
Alias "GetModuleHandleA" ( _
ByVal lpModuleName As String) _
As Long
Private Declare Function SetWindowsHookEx _
Lib "user32" _
Alias "SetWindowsHookExA" ( _
ByVal idHook As Long, _
ByVal lpfn As Long, _
ByVal hmod As Long, _
ByVal dwThreadId As Long) _
As Long
Private Declare Function UnhookWindowsHookEx _
Lib "user32" ( _
ByVal hHook As Long) _
As Long
Private Declare Function SendDlgItemMessage _
Lib "user32" Alias "SendDlgItemMessageA" ( _
ByVal hDlg As Long, _
ByVal nIDDlgItem As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) _
As Long
Private Declare Function GetClassName _
Lib "user32" _
Alias "GetClassNameA" ( _
ByVal hwnd As Long, _
ByVal lpClassName As String, _
ByVal nMaxCount As Long) _
As Long
Private Declare Function GetCurrentThreadId _
Lib "kernel32" () _
As Long
'Constants to be used in our API functions
Private Const EM_SETPASSWORDCHAR = &HCC
Private Const WH_CBT = 5
Private Const HCBT_ACTIVATE = 5
Private Const HC_ACTION = 0
Private hHook As Long
Public Function NewProc(ByVal lngCode As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
Dim RetVal As Long
Dim strClassName As String, lngBuffer As Long
If lngCode < HC_ACTION Then
NewProc = CallNextHookEx(hHook, lngCode, wParam, lParam)
Exit Function
End If
strClassName = String$(256, " ")
lngBuffer = 255
If lngCode = HCBT_ACTIVATE Then 'A window has been activated
RetVal = GetClassName(wParam, strClassName, lngBuffer)
If Left$(strClassName, RetVal) = "#32770" Then 'Class name of the Inputbox
'This changes the edit control so that it display the password character *.
'You can change the Asc("*") as you please.
SendDlgItemMessage wParam, &H1324, EM_SETPASSWORDCHAR, Asc("*"), &H0
End If
End If

'This line will ensure that any other hooks that may be in place are
'called correctly.
CallNextHookEx hHook, lngCode, wParam, lParam
End Function
'// Make it public = avail to ALL Modules
'// Lets simulate the VBA Input Function
Public Function InputBoxDK(Prompt As String, Optional Title As String, _
Optional Default As String, _
Optional Xpos As Long, _
Optional Ypos As Long, _
Optional Helpfile As String, _
Optional Context As Long) As String

Dim lngModHwnd As Long, lngThreadID As Long

'// Lets handle any Errors JIC! due to HookProc> App hang!
On Error GoTo ExitProperly
lngThreadID = GetCurrentThreadId
lngModHwnd = GetModuleHandle(vbNullString)

#If VBA6 Then
hHook = SetWindowsHookEx(WH_CBT, AddressOf NewProc, lngModHwnd, lngThreadID)
#Else
hHook = SetWindowsHookEx(WH_CBT, AddrOf("NewProc"), lngModHwnd, lngThreadID)
#End If
If Xpos Then
InputBoxDK = InputBox(Prompt, Title, Default, Xpos, Ypos, Helpfile, Context)
Else
InputBoxDK = InputBox(Prompt, Title, Default, , , Helpfile, Context)
End If
ExitProperly:
UnhookWindowsHookEx hHook
End Function
Sub TestDKInputBox()
Dim x As String
x = InputBoxDK("Entrez votre mot de passe ici.", "Mot de passe requis", "")
If x <> "admin" Then
MsgBox "Votre mot de passe n'est pas valide."
End
End If
MsgBox "Bienvenue Administrateur!", vbExclamation

End Sub</pre>
<br>
<br>
Corto<br>
<br>
<blockquote
cite="mid:"
type="cite">
<pre wrap="">Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de passe
mais j'aimerais que ce soient des "*" qui s'affichent à la place du texte
saisi en clair. Est-ce possible ?

Merci.

</pre>
</blockquote>
</body>
</html>



Avatar
isabelle
Merci ! Michel,
très bon travail, les API sont encore du chinois pour moi, je vais essayer de mis mettre bientôt,
bisou*
isabelle

Bonjour Isabelle;
Si tu avais téléchargé
http://www.excelabo.net/moteurs/compteclic.php?nom=mp-subclassing , tu en
aurais beaucoup plus pour le même prix (centrage texte / personnalisation
des boutons / menu système...).

Bises

"isabelle" a écrit dans le message de news:
%
wow!, ça fonctionne très bien, merci Corco ainsi qu'à Daniel Klann.

isabelle

Bonjour Patrick,
Mais si c'est possible !!!!!!!!
...... Attention, j'ai pas dis c'est facile, il faut passer par des API
Windows. J'ai trouvé ça sur le web mais je n'ai pas testé.

Option Explicit
'////////////////////////////////////////////////////////////////////
'Password masked inputbox
'Allows you to hide characters entered in a VBA Inputbox.
'
'Code written by Daniel Klann
'http://www.danielklann.com/
'March 2003
'// Kindly permitted to be amended
'// Amended by Ivan F Moala
'// Microsoft Excel Files by Ivan F Moala contains VBA API WMI VBS and
formulas. Remember can do. <http://www.xcelfiles.com>
'// April 2003
'// Works for Xl2000+ due the AddressOf Operator
'//
'// Amended 5th March 2004 for Gopal
'// This allows it to be run on Xl97+
'////////////////////////////////////////////////////////////////////
'API functions to be used
Private Declare Function CallNextHookEx _
Lib "user32" ( _
ByVal hHook As Long, _
ByVal ncode As Long, _
ByVal wParam As Long, _
lParam As Any) _
As Long
Private Declare Function GetModuleHandle _
Lib "kernel32" _
Alias "GetModuleHandleA" ( _
ByVal lpModuleName As String) _
As Long
Private Declare Function SetWindowsHookEx _
Lib "user32" _
Alias "SetWindowsHookExA" ( _
ByVal idHook As Long, _
ByVal lpfn As Long, _
ByVal hmod As Long, _
ByVal dwThreadId As Long) _
As Long
Private Declare Function UnhookWindowsHookEx _
Lib "user32" ( _
ByVal hHook As Long) _
As Long
Private Declare Function SendDlgItemMessage _
Lib "user32" Alias "SendDlgItemMessageA" ( _
ByVal hDlg As Long, _
ByVal nIDDlgItem As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) _
As Long
Private Declare Function GetClassName _
Lib "user32" _
Alias "GetClassNameA" ( _
ByVal hwnd As Long, _
ByVal lpClassName As String, _
ByVal nMaxCount As Long) _
As Long
Private Declare Function GetCurrentThreadId _
Lib "kernel32" () _
As Long
'Constants to be used in our API functions
Private Const EM_SETPASSWORDCHAR = &HCC
Private Const WH_CBT = 5
Private Const HCBT_ACTIVATE = 5
Private Const HC_ACTION = 0
Private hHook As Long
Public Function NewProc(ByVal lngCode As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
Dim RetVal As Long
Dim strClassName As String, lngBuffer As Long
If lngCode < HC_ACTION Then
NewProc = CallNextHookEx(hHook, lngCode, wParam, lParam)
Exit Function
End If
strClassName = String$(256, " ")
lngBuffer = 255
If lngCode = HCBT_ACTIVATE Then 'A window has been activated
RetVal = GetClassName(wParam, strClassName, lngBuffer)
If Left$(strClassName, RetVal) = "#32770" Then 'Class name of the
Inputbox
'This changes the edit control so that it display the password
character *.
'You can change the Asc("*") as you please.
SendDlgItemMessage wParam, &H1324, EM_SETPASSWORDCHAR, Asc("*"),
&H0
End If
End If
'This line will ensure that any other hooks that may be in place are
'called correctly.
CallNextHookEx hHook, lngCode, wParam, lParam
End Function
'// Make it public = avail to ALL Modules
'// Lets simulate the VBA Input Function
Public Function InputBoxDK(Prompt As String, Optional Title As String, _
Optional Default As String, _
Optional Xpos As Long, _
Optional Ypos As Long, _
Optional Helpfile As String, _
Optional Context As Long) As String
Dim lngModHwnd As Long, lngThreadID As Long
'// Lets handle any Errors JIC! due to HookProc> App hang!
On Error GoTo ExitProperly
lngThreadID = GetCurrentThreadId
lngModHwnd = GetModuleHandle(vbNullString)
#If VBA6 Then
hHook = SetWindowsHookEx(WH_CBT, AddressOf NewProc, lngModHwnd,
lngThreadID)
#Else
hHook = SetWindowsHookEx(WH_CBT, AddrOf("NewProc"), lngModHwnd,
lngThreadID)
#End If
If Xpos Then
InputBoxDK = InputBox(Prompt, Title, Default, Xpos, Ypos, Helpfile,
Context)
Else
InputBoxDK = InputBox(Prompt, Title, Default, , , Helpfile, Context)
End If
ExitProperly:
UnhookWindowsHookEx hHook
End Function
Sub TestDKInputBox()
Dim x As String
x = InputBoxDK("Entrez votre mot de passe ici.", "Mot de passe requis",
"")
If x <> "admin" Then
MsgBox "Votre mot de passe n'est pas valide."
End
End If
MsgBox "Bienvenue Administrateur!", vbExclamation
End Sub



Corto

Bonjour,

J'aimerais utiliser un InputBox pour demander la saisie d'un mot de
passe mais j'aimerais que ce soient des "*" qui s'affichent à la place
du texte saisi en clair. Est-ce possible ?

Merci.