以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 绘图板加图片 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=139984) |
-- 作者:漂亮美眉vszh -- 发布时间:2019/8/27 9:56:00 -- 绘图板加图片 老师,这句代码前几天执行正常,这几天执行老报错,查不出哪里有问题。 Dim p As WinForm.Painter = e.Form.Controls("Painter2") Dim g As Graphics = p.Graphics g.Clear(Color.LightSkyBlue) p.Repaint() If Tables("MainTable").current.Isnull("ProudPic") = False Then Dim srr As String = “D:\\public\\UploadData\\FMEA\\0000201908-0003\\ProudPic\\" & Tables("MainTable").current("ProudPic") MessageBox.Show(srr) g.DrawImage(getImage(srr),48,60,200,200) p.Repaint() End If
|
-- 作者:有点蓝 -- 发布时间:2019/8/27 10:00:00 -- 这个错误应该是找不到图片文件,或者路径有问题,或者文件不存在 |