全局表事件,drawcell 同一个窗口中的2个表,为啥"个人任务信息_table1" 只有一个起作用呢。
两个表分别添加了
Tables("个人任务信息_table1").DataTable.GlobalHandler.drawcell= True
Tables("个人任务信息_table3").DataTable.GlobalHandler.drawcell= True
Select Case e.Table.Name
Case "个人任务信息_table1","个人任务信息_table3"
'msgbox(e.Row("代号"))
If e.Col.name = "缩略图" Then
e.StartDraw
If e.Row("缩略图") > "" Then
If FileSys.FileExists("\\SERVER\Foxtemp$\" & e.Row("缩略图")) Then
e.Graphics.DrawImage(getimage( "\\SERVER\Foxtemp$\" & e.Row("缩略图")), e.x + 6,e.y + 6, 40,40) '绘制第一个图标
Else e.Graphics.DrawImage(failed, e.x + 1,e.y + 1, 42,42)
End If
End If
e.text = ""
e.EndDraw
End If
End Select
[此贴子已经被作者于2019/5/29 18:06:04编辑过]