Posted: 29th Jul 2003 16:56
hello, my first problem
im trying to turn password into ******

MY CODE
input "Connect to?:>";url$
input "User?:>";user$
input "Password?:>";password$

CODE From forum which works but cant get it to work with my code

print "Password=";
pass$="WeHaveAProblem"
pass2$=""
while returnkey()=0
if inkey$()="" then last=0
if (inkey$()"") and (last=0)
char=asc(lower$(inkey$() ))
if (char>=97) and (char
Posted: 29th Jul 2003 20:18
hmmm....
try this, it is only for numbers, but I'm sure you can modify it for your ftp :

+ Code Snippet
set text size 30
tut = inputstars(0,0,"Choose a number")
set cursor 0,30
print "The number is ",tut
wait key

function inputstars(x,y,q$)
 clear entry buffer
 repeat
   star$ = ""
   for t=0 to len(entry$())
      if t>0 then star$ = star$ + "*"
   next t
   text x,y,q$+"> "+star$
 until returnkey()=1
 repeat:until returnkey()=0
 a = val(entry$())
endfunction a
Posted: 30th Jul 2003 20:26
humm..
this is recking my head.
i very new to this..
i have read the help with pro..
but i still can't do it,
Posted: 30th Jul 2003 20:41
I dunno if this will help in because this was done in dbc.
Posted: 31st Jul 2003 3:06
thanks..
i will pass on this task..
i just can't change the numbers..
im reading up and working over stages of darkbasic..