【发布时间】:2020-07-09 02:41:44
【问题描述】:
是否有一个函数可以将每个数组项干净地输出为文本框中的新行?现在我当前的代码在我必须删除的末尾添加了一个额外的 vbNewLine(换行符):
For Each ArrayItem In Array
OutputText = OutputText & ArrayItem & vbNewLine
Next ArrayItem
Me.MyTextBox = Left(OutputText, Len(OutputText) - 2)
【问题讨论】: