Jul 19, 2006 #1 Gwena Programmer Mar 11, 2004 42 IL I Originally posted this on Microsoft: Access Tables and Relationships Forum but got no answer so maybe this is a better place for it: Is there a way to change via code the input task of a field in a giving table? Thanx Gwen
I Originally posted this on Microsoft: Access Tables and Relationships Forum but got no answer so maybe this is a better place for it: Is there a way to change via code the input task of a field in a giving table? Thanx Gwen
Jul 19, 2006 #2 pjm IS-IT--Management Mar 21, 2001 125 DE Hi currentdb.TableDefs("myTable").Fields("MyField").Properties("inputmask")="InputMask" HTH pjm Upvote 0 Downvote
Jul 19, 2006 Thread starter #3 Gwena Programmer Mar 11, 2004 42 IL Hi pjm I tried this and got this error: Property not found. (Error 3270) Upvote 0 Downvote
Jul 19, 2006 #4 pjm IS-IT--Management Mar 21, 2001 125 DE Hi This will change the inputmask property but it has to exist first. See following link for how to append to the properties collection:- http://visualbasic.about.com/od/usevb6/l/aa101602a.htm HTH pjm Upvote 0 Downvote
Hi This will change the inputmask property but it has to exist first. See following link for how to append to the properties collection:- http://visualbasic.about.com/od/usevb6/l/aa101602a.htm HTH pjm
Jul 19, 2006 Thread starter #5 Gwena Programmer Mar 11, 2004 42 IL Thanks Working great!! Gwen Upvote 0 Downvote