Hi George,
Based on what I saw from your form I would probably suggest doing the following:
Remove the automatically generated code from the Calculate events of each of the barcodes and replace with something like the following:
In each of the barcodes the value of "itself" is represented by "this.rawValue", roughly translated this means "my own value".
this.rawValue = Section2.Consideration.rawValue + "\t" + Section2.Parent.rawValue + "\t";
Of course, you would add the other values you require in the barcode.
Again, roughly translated the above code basically says: "my value is equal to the value of the Consideration field, a tab, and then the value of the Parent field, and another tab.
Another item you may want to reconsider is the field name values. Your field names are fairly long in some cases and including them in the barcode will reduce your capacity. In your "Section3" the field names may actually be longer than the data they hold.