嗨,我正在购物清单,我想列出一个在另一个下的项目
ListBox1.Items.Add(shp.fruits & vbNewLine & shp.vegetables & vbNewLine & shp.drinks & vbNewLine & shp.snacks & vbNewLine & shp.detergent)
这是我的代码,但是在没有空格的情况下彼此相邻地写下项目
答案 0 :(得分:3)
您无法在ListBox
中插入换行符。
每个添加的项目都是一行。
如果您想添加一系列商品,请尝试以下方式:
ListBox1.Items.AddRange({shp.fruits, shp.vegetables, shp.drinks, shp.snacks, shp.detergent})