Hi Guys, I need to add some information in Character01 LaborDtl table, so I was researching and I need to create some links between the adapters and the table.
so I am doing something like this:
LaborApprovalAdapter adapterLink = new LaborApprovalAdapter(oTrans);
try
{
if(adapterLink.BOConnect())
{
if (adapterLink.GetByID(LaborHedSeq, LaborDtlSeq))
{
// code to add the info
}
}
}
So, the Question is, how can I get this LaborHedSeq, and the LaborDtlSeq in order to put in the GetByID method?
// ** Use MessageBox to find adapter method name
// EpiMessageBox.Show(args.MethodName)
switch (args.MethodName)
{
case "Update":
insercionNombre(// here comes the info requested LaborHedSeq, LaborDtlSeq);
break;
}
}
I was doing the easiest way, just adding a TextBox on the windows form, and then binding this control with start.Character01 View, it works once, but then didn’t, so I started working with this custom.