控件能不能作为函数或过程的参数?在vb 中,控件能不能作为函数或过程的参数?[解决办法]可以,例 Sub TBSelectAll(tb as textbox) '文本框全选 with tb .selstart = 0 .sellength = len(.text) end with end sub