这是我的按钮代码,它将从特定列中弹出值。
dvList.Columns("Reg_Price").DefaultCellStyle.Format = "N2"
MsgBox(dvList.Rows(dvList.CurrentRow.Index).Cells.Item("Reg_Price").Value.ToString)
我在“Reg_Price”列中的值为0,当我点击上面代码的按钮时,输出也是0,我希望输出为0.00,但是msgbox上面的代码不起作用。
感谢您的帮助。
这是我的按钮代码,它将从特定列中弹出值。
dvList.Columns("Reg_Price").DefaultCellStyle.Format = "N2"
MsgBox(dvList.Rows(dvList.CurrentRow.Index).Cells.Item("Reg_Price").Value.ToString)
我在“Reg_Price”列中的值为0,当我点击上面代码的按钮时,输出也是0,我希望输出为0.00,但是msgbox上面的代码不起作用。
感谢您的帮助。