Public Sub ColDataChanged(sender As Object,e As sanMuSoft.CS.WinForm.ColDataEventArgs)
Dim tbl As SmGrid=Proj.CurrentSmGrid
Dim strColName As String=tbl.Cols(tbl.Col).Name
If strColName="drugname" AndAlso e.NewValue<>"" Then
If e.OldValue<>e.NewValue Then
MsgBox(e.NewValue)
End If
End If
End Sub