I have a letter created that has combobox, the combobox will have two values for each entry
Private Sub Document_New()
    
    With .Column(1).ComboBox1
        .AddItem "ACS"
        .AddItem "AES"
        .AddItem "FDR"
        .AddItem "AES"
    End With
    With .Column(2).ComboBox1
    
        .AddItem "August 17, 2010"
        .AddItem "September 20, 2010"
        .AddItem "October 8, 2010"
        .AddItem "October 29, 2010"
    End With
End Sub
Text box one will pull from column 1 and text box 2 will pull from column 2, the combobox is set in hidden text so when printing it will not be displayed. I am not sure what i am doing wrong with the code, but i am getting errors pertaining to subfunction. Any help would be appreciated.