本文介绍了将图像添加到vb.net中的datagridview image coloumn的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将图像添加到datagridview的image列,使用以下代码但它返回错误(system.argumentexception:参数无效)
Hi,
I am trying to add image to the image column of datagridview, using the following code but it returns an error (system.argumentexception: Parameter is not valid)
ofdLogoImage.ShowDialog()
vrPicHolder = IO.File.ReadAllBytes(ofdLogoImage.FileName)
dgvLogo.Item(3, dgvLogo.Rows.Count - 1).Value = vrPicHolder
请指教。
谢谢!
Please advise.
Thanks!
推荐答案
这篇关于将图像添加到vb.net中的datagridview image coloumn的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!