Jun 26, 2007 #1 jbl1167 Programmer Oct 2, 2006 78 US How Can I create Memo fields when I create a table programatically? Thank you
Jun 26, 2007 #2 bubba100 Technical User Nov 16, 2001 493 US Try something like .Fields.Append .CreateField("DNow", dbMemo). Upvote 0 Downvote
Jun 26, 2007 #3 CautionMP Programmer Dec 11, 2001 1,516 US jbl1167, Another approach. Code: strSQL = "ALTER TABLE MyTable ADD COLUMN NewColumn MEMO;" DoCmd.RunSQL strSQL Hope this helps, CMP [small]For the best results do what I'm thinking, not what I'm saying.[/small] (GMT-07:00) Mountain Time (US & Canada) Upvote 0 Downvote
jbl1167, Another approach. Code: strSQL = "ALTER TABLE MyTable ADD COLUMN NewColumn MEMO;" DoCmd.RunSQL strSQL Hope this helps, CMP [small]For the best results do what I'm thinking, not what I'm saying.[/small] (GMT-07:00) Mountain Time (US & Canada)