I need a form, where the user inputs a barcode number and a quantity.

They enter as many as they want, then press a button that creates a .txt file and places the barcode within the text.

So for example -

Printjob.txt
Label:/blahblahblah
SESSIONSTART
Articleprompt = (Barcode input by user)
SESSIONPRINT (Quantity input by user)
SESSIONEND

if the user was to input 2 barcodes, the .txt file would be created as

Printjob.txt
Label:/blahblahblah
SESSIONSTART
Articleprompt = (Barcode input by user)
SESSIONPRINT (Quantity input by user)
Artitleprompt = (Barcode input by user)
SESSIONPRINT (Quantity input by user)
SESSIONEND

The file that has been created from this data is then saved with a .job extension, and automatically opened.

I have very little VBA knowledge so just need to know if this is possible first Appreciate the help in advance.