I have the following start to a procedure call
strReturn = OrderCreate(strGen8, _
strUID, _
Order, _
boolRecapFlag, _
And on the function that receives the parameters we have..
function OrderCreate(strCoDiv, strUID, byRef Order, boolRecap, strBillFirst, etc.
Since I could not find anywhere where Order values were getting passed into the prodcedure. Am I to assume that the ByRef makes it possible to bring data out of the procedure? Using the Order variable name?