Hi,
We have recently upgraded to 10.2 and I have noticed that data is not being passed to the Packing Slip Print form (menu ID: CP1300) However the print preview works but if I ever want to dosomething extra in that form, the view in edvpackSlipsView_EpiViewNotification is always null and I am unable to read the packing slip info.
This used to work in previous version (10.0). Anyone else having this issue?
Here is the event code I am using:
private void edvpackSlipsView_EpiViewNotification(EpiDataView view, EpiNotifyArgs args)
{
// ** Argument Properties and Uses **
// view.dataView[args.Row]["FieldName"]
// args.Row, args.Column, args.Sender, args.NotifyType
// NotifyType.Initialize, NotifyType.AddRow, NotifyType.DeleteRow, NotifyType.InitLastView, NotifyType.InitAndResetTreeNodes
if ((args.NotifyType == EpiTransaction.NotifyType.AddRow))
{
if ((args.Row > -1))
{
}
}
}
As I mentioned, the view object is always empty or null. Am I missing something?!
Thanks in advance!