VB中Text1.text=text1.text+CStr(a(i))+" " If i=4 then text1.text=text1.text+chr(13)+chr(10)
问题描述:
VB中Text1.text=text1.text+CStr(a(i))+" " If i=4 then text1.text=text1.text+chr(13)+chr(10)
VB中Text1.text=text1.text+CStr(a(i))+" "
If i=4 then text1.text=text1.text+chr(13)+chr(10)
中1," "
2,chr(13)+chr(10)是不是ASCII的代码,
答
1、" "代表空格;
2、chr(13)+chr(10)是ASCII的代码,加号是将两个字符“连接”;