- Home
·
- Miscellaneous
·
- This code clears the contents of all the fields like textbox and combo box
This code clears the contents of all the fields like textbox and combo box
This code clears the contents of all the fields like textbox and combo box
API Declarations
'x is a control (only fields where values are entered or selected like textbox, combobox, listbox)
Rate This code clears the contents of all the fields like textbox and combo box
(1(1 Vote))
if typeof x is textbox then
x.text=""
elseif typeof x is combobox then
x.text=""
end if
next
This code clears the contents of all the fields like textbox and combo box Comments
No comments yet — be the first to post one!
Post a Comment