When I went to Object Explorer and found the parttran dataview and clicked on jobnum the code below is what it showed if that helps.
Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews(âPartTranâ), EpiDataView)
Dim [VarName] As String = [edvVarName].dataView([edvVarName].Row)(âPartNumâ)
'// ** Or
'// Dim [dvVarName] As DataView = [edvVarName].dataView
'// Dim [VarName] As String = dvVarName(âPartNumâ)
I still think youâre barking up the wrong tree. I dont think that you are looking for the PartTran edv.
Use Help -> Field Help then click into the textbox where you enter the job. The epiBinding property should tell you both the edv and fieldname you are looking for.
Okay will look there. I just tried to open and got a âException has been thrown by the target of an invocationâ error.
Here is pic of what field explorer says
Made some progress today and at least got the job to populate on all 4 button clicks. I really would like to learn how to pass the assembly and operation as well but too beat tonight to do any more. Thanks for all the help thus far.