Page 1 sur 1

ComboBox et Password

Publié : jeu. 22/juin/2006 23:44
par Flype

Code : Tout sélectionner

Macro ComboBoxPwdChar(gadget, Char)
  SendMessage_(GetWindow_(GadgetID(gadget), #GW_CHILD), #EM_SETPASSWORDCHAR, Char, 0) 
EndMacro

If OpenWindow(0,50,50,320,240,"") And CreateGadgetList(WindowID(0)) 
  
  ComboBoxGadget(0,10,10,200,200,#PB_ComboBox_Editable) 
  ComboBoxPwdChar(0, 'X')
  SetActiveGadget(0)
  
  Repeat 
  Until WaitWindowEvent() = #WM_CLOSE
  
EndIf
j'en avais besoin pour OpenDatabaseRequester() du projet #1.

Publié : ven. 23/juin/2006 9:09
par poshu
Par habitude, je pense qu'il vaut mieux utiliser le sigle * que X, non?

Publié : ven. 23/juin/2006 9:30
par Flype
Oui enfin c'est un example pour montrer qu'on peut mettre ce qu'on veut.

Mais effectivement le standard c'est '*' comme c'est le cas déjà avec #PB_String_Password pour les StringGadget().