vb怎么表示一个字符啊?如果是C,可以写成'a',vb里怎么写啊?写成"a"吗?那不就成字符串了?只能写成chr(97)吗? 还有一些特殊字符怎么表示?像双引号,只能写chr(34)吗?如果我想写成\",应该怎么写?双引号 dim dq as string dq="""" VB字符串=字符 Private Sub Form_Load() a = "asdf""" Debug.Print a
End Sub
Dim A As Characters A = "C" 我问的是VB6 如果表示tab,能不能写成\t的形式,应该怎么写? chr(9) 或 vbTab dim A as byte A=Asc("a")
我想把word另存为xml之后,用vb读取这个xml的内容,请问如何实现? dim f as integer dim b() as byte dim s as string dim L as long f=freefile() open "abc.xml" for binary access read as #f ......