发布网友 发布时间:2022-04-24 23:56
共1个回答
热心网友 时间:2023-10-15 11:54
if asc(text1.text)>=65 and asc(text1.text)<=90 then '如果是大写
text2.text=Lcase(text1.text) '转小写
elseif asc(text1.text)>=97 and asc(text1.text)<=122 then '如果是小写
text2.text=Ucase(text1.text) '转大写
end if