Hashing out passwords

BlitzPlus Forums/BlitzPlus Programming/Hashing out passwords

SideBurn(Posted 2004) [#1]
Is there anyway to hash out what people type in a textbox?


EOF(Posted 2004) [#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 2004) [#3]
thx