salut,
tu ajoute un module, tu copie/colle tout ça:
Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Public Const HWND_TOPMOST = -1
Public Const HWND_NOTOPMOST = -2
Public Const SWP_NOACTIVATE = &H10
Public Const SWP_SHOWWINDOW = &H40
ensuite tu appelle ça pour tjrs visible
SetWindowPos nom_de_la_feuille.hwnd, HWND_TOPMOST, nom_de_la_feuille.Left, nom_de_la_feuille.Top, nom_de_la_feuille.Width , nom_de_la_feuille.Height, SWP_NOACTIVATE Or SWP_SHOWWINDOW
pour le mot de passe, c'est un textbox, et tu mes:
textbox1.passwordchar="*"
higgins