消息框中的多个值
Multiple values in messagebox
我有那个简单的代码
While reader.Read()
MessageBox.Show(reader(0).ToString().Trim())
End While
其中 returns 2 个消息框,一个值为 'a',另一个值为 'b'。我如何修改它,让一个消息框在一个消息框中给我 'a' 和 'b'?
提前致谢!
//declare variable_ and assign to empty string.
While reader.Read()
variable_ = variable_ + reader(0).ToString().Trim()
End While
MessageBox.Show(variable_)
我有那个简单的代码
While reader.Read()
MessageBox.Show(reader(0).ToString().Trim())
End While
其中 returns 2 个消息框,一个值为 'a',另一个值为 'b'。我如何修改它,让一个消息框在一个消息框中给我 'a' 和 'b'?
提前致谢!
//declare variable_ and assign to empty string.
While reader.Read()
variable_ = variable_ + reader(0).ToString().Trim()
End While
MessageBox.Show(variable_)