Use the macro recorder, and record it all in a macro.
Here's what I got when I macroed a common import of mine:
With ActiveSheet.QueryTables.Add(Connection:="TEXT;E:\AEP_out.txt", _
Destination:=Range("A1"))
.Name = "AEP_out"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 437
.TextFileStartRow = 1
.TextFileParseType = xlFixedWidth
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(2, 1, 1, 1)
.TextFileFixedColumnWidths = Array(27, 16, 22)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With