H!
I'm busy with my own Input$()
but now I want that people can't do this: bla bla
(not multiply spaces between words)
So I have this code below but now its not possible to make 1 space between words.
I'm busy with my own Input$()
but now I want that people can't do this: bla bla
(not multiply spaces between words)
So I have this code below but now its not possible to make 1 space between words.
Repeat c=GetKey() If c<>0 And c<>13 And c<>27 Then ;no 0,enter,esc If c<>32 And h<>32 Then ;no multiply spaces w$ = w$+""+Chr$(c) Write Chr$(c) EndIf EndIf h=c c=0 Until KeyHit(28) Or KeyHit(1)