Hi everyone -
This seems basic enough that I thought I would be able to figure it out, but for whatever reason I can't find the correct method that will allow me to use variables in object names when programming in word. Here's what I'm trying to do:
My company has a word document with work instructions in it for every product we make. Each set of work instructions has between 1 and 15 steps depending on complexity. I am trying to implement barcodes into our word documents so our operators can scan the barcodes when signing into our time tracking database.
Now each barcode has information in it that is static (job number, step number) but also information that is dynamic - mainly the lot number. Each time someone prints off the work instructions I want to ask them what the lot number is and then go through the barcodes in the document editing them so they read correctly. I've found a method for updating the barcodes so that's not really an issue, but actually referencing the barcodes is problematic.
I've named each barcode barcode1, barcode2, etc, so I want to be able to use an i variable and loop and tell the program to update each barcode it comes across. If I were programing in Access I could simply say
i=1
Do
me.controls("barcode" & i) = (set text here)
i=i+1
Loop
but I can't find the equivalent of the .controls method for Word VBA. Does anyone have a suggestion about how I might do this?
This seems basic enough that I thought I would be able to figure it out, but for whatever reason I can't find the correct method that will allow me to use variables in object names when programming in word. Here's what I'm trying to do:
My company has a word document with work instructions in it for every product we make. Each set of work instructions has between 1 and 15 steps depending on complexity. I am trying to implement barcodes into our word documents so our operators can scan the barcodes when signing into our time tracking database.
Now each barcode has information in it that is static (job number, step number) but also information that is dynamic - mainly the lot number. Each time someone prints off the work instructions I want to ask them what the lot number is and then go through the barcodes in the document editing them so they read correctly. I've found a method for updating the barcodes so that's not really an issue, but actually referencing the barcodes is problematic.
I've named each barcode barcode1, barcode2, etc, so I want to be able to use an i variable and loop and tell the program to update each barcode it comes across. If I were programing in Access I could simply say
i=1
Do
me.controls("barcode" & i) = (set text here)
i=i+1
Loop
but I can't find the equivalent of the .controls method for Word VBA. Does anyone have a suggestion about how I might do this?