Home
Products
Community
Manuals
Contact
Login or Signup

Hashing out passwords

BlitzPlus Forums/BlitzPlus Programming/Hashing out passwords

SideBurn(Posted 1+ years ago) #1
Is there anyway to hash out what people type in a textbox?


Jim Brown(Posted 1+ years ago) #2
Yes:
win=CreateWindow("textbox Password",84,40,220,80,0,1)
tf=CreateTextField(10,10,90,24,win,1) ; <- use 1 for PASSWORD protection
ActivateGadget tf

Repeat
Until WaitEvent()=$803
End



SideBurn(Posted 1+ years ago) #3
thx