im currently making a program that would need the user to login, ive currently been using this code
real_password$="password"
do
pasline$=""
rem Build line string
new$=entry$()
if returnkey()=1 and real_password$=line$ then goto label1
for n=1 to len(new$)
if asc(mid$(new$,n))=8
line$=left$(line$,len(line$)-1)
else
line$=line$+mid$(new$,n)
endif
next n
clear entry buffer
text 200,85,j$
for i=1 to len(line$)
pasline$=pasline$+"*"
next i
center text 350,85,pasline$
`center text 320,260,line$
rem Update screen
sync
loop
label1:
cls
this doesn't quite work though.
i would be gratfull for any help