M Mcgrco Registered User. Local time Today, 12:27 Joined Jun 19, 2001 Messages 118 Apr 11, 2003 #1 Does anyone know who to do this. Thanks
norman Registered User. Local time Today, 12:27 Joined Apr 18, 2001 Messages 37 Apr 11, 2003 #2 Function tbalter() Dim mysql mysql = "ALTER TABLE yourtablename ADD yournewfieldname yesno;" DoCmd.RunSQL mysql End Function Note that this code has no error trapping and is very basic Search help for alter table command for more info HTH Norman
Function tbalter() Dim mysql mysql = "ALTER TABLE yourtablename ADD yournewfieldname yesno;" DoCmd.RunSQL mysql End Function Note that this code has no error trapping and is very basic Search help for alter table command for more info HTH Norman
M Mcgrco Registered User. Local time Today, 12:27 Joined Jun 19, 2001 Messages 118 Apr 11, 2003 #3 Thanks, That worked fine