You can do this with two queries, but not, I think, with one. Having created the table with the make table query, Alter Table can be used to resize columns. For example:
[tt]strSQL = "Alter table tblTable Alter column Field1 Char(150)"
CurrentDB.Execute strSQL[/tt]