Hi, I've been scouring the web to find the sql to add a combo box, or change a text box to a combo box. So far, I can add a text column in a vba module like so:
CurrentDb.Execute "alter table TableName add EE text"
But...I need the field to have combo box properties. I've also been trying to modify the text field like so:
CurrentDb.Execute "alter table TableName alter column EE ?????"
I'm surprised to not have found this through Google yet. I also looked at MSDN a bit.
If anyone has the answer it would be much appreciated. Also, if anyone has a link to a *complete* list of column types available for Access sql that would also be great.
CurrentDb.Execute "alter table TableName add EE text"
But...I need the field to have combo box properties. I've also been trying to modify the text field like so:
CurrentDb.Execute "alter table TableName alter column EE ?????"
I'm surprised to not have found this through Google yet. I also looked at MSDN a bit.
If anyone has the answer it would be much appreciated. Also, if anyone has a link to a *complete* list of column types available for Access sql that would also be great.