|
Post by jarychk on Jul 11, 2024 2:16:59 GMT
Programmer may make set of code including the use of a textbox control. Programmer wants a way for the user or the program itself, to remove the contents of the textbox control.
If programmer writes this line of code;
print #h.textbox1," "
Things do not go the way programmer expects.
This is the correction, to make the textbox really become empty again:
print #h.textbox1,""
Look carefully to see the difference.
A way to talk about this is, the space character is not the same as the empty string.
|
|