B
Bob
I have a form containing three option buttons and one
additional button. The addiontal button is tied to VBA
code which imports some text files into a table. I have
three different import speficiations and I would like to
tie each specification into one of the three option
buttons.
The below code is for the importation command:
DoCmd.TransferText acImportDelim, myspec, tablename,
strFolder & myfile
The 'myspec' variable is for the different specification
types. What I want to be able to do is have 3 option
buttons, for 'specification1', 'specification2',
and 'specification3'. So when option button one is
clicked, it sends specification1 into the 'myspec'
variable, and then imports the text file according to that
particular specification.
Thank You
additional button. The addiontal button is tied to VBA
code which imports some text files into a table. I have
three different import speficiations and I would like to
tie each specification into one of the three option
buttons.
The below code is for the importation command:
DoCmd.TransferText acImportDelim, myspec, tablename,
strFolder & myfile
The 'myspec' variable is for the different specification
types. What I want to be able to do is have 3 option
buttons, for 'specification1', 'specification2',
and 'specification3'. So when option button one is
clicked, it sends specification1 into the 'myspec'
variable, and then imports the text file according to that
particular specification.
Thank You