VB循环逐行读取TextBox控件内容
来源:岁月联盟
时间:2011-08-13
VB循环逐行读取TextBox控件内容,VB循环逐行读取TextBox控件,VB循环逐行读取TextBox内容,VB循环逐行读取TextBox,VB逐行读取TextBox,VB循环读取TextBox,VB读取TextBox,VB读TextBox,VB TextBox。
VB循环逐行读取TextBox控件内容:
Dim A() As String ‘定义数组
A() = Split(Text1.Text, vbCrLf) ‘以换行符分割为数组
For Each S In A() ‘枚举整个数组A()赋值给S
Debug.Print S
Next