Nov 24, 2004 #1 fabby1 Technical User Mar 9, 2004 206 GB Hi In the Design windows I usually right click go to properties and click the hidden button. Is there a way to do this via code for ALL database objects Regards Phil
Hi In the Design windows I usually right click go to properties and click the hidden button. Is there a way to do this via code for ALL database objects Regards Phil
Nov 24, 2004 #2 KenReay Programmer Aug 15, 2002 5,424 GB Hi Try interating through the collection setting .hidden to true Dim frm as Form for each frm in Forms frm.hidden = true next Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK Upvote 0 Downvote
Hi Try interating through the collection setting .hidden to true Dim frm as Form for each frm in Forms frm.hidden = true next Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK
Nov 24, 2004 #3 KenReay Programmer Aug 15, 2002 5,424 GB Hi Try interating through the collection setting .visible to true Dim frm as Form for each frm in Forms frm.visible = true next Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK Upvote 0 Downvote
Hi Try interating through the collection setting .visible to true Dim frm as Form for each frm in Forms frm.visible = true next Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK
Nov 24, 2004 Thread starter #4 fabby1 Technical User Mar 9, 2004 206 GB Ken Thanks for the reply Maybe I didn't explain myself properly I want to do this for all Database Object e.g. Table, Forms, Queries, Report etc. SO that they are not visible in the Database window Regards Phil Upvote 0 Downvote
Ken Thanks for the reply Maybe I didn't explain myself properly I want to do this for all Database Object e.g. Table, Forms, Queries, Report etc. SO that they are not visible in the Database window Regards Phil
Nov 24, 2004 #5 PHV MIS Nov 8, 2002 53,708 FR while in VBE (Alt+F11) open the Object browser (F2) and search it for: AllTables, AllForms, AllQueries, AllReports etc. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
while in VBE (Alt+F11) open the Object browser (F2) and search it for: AllTables, AllForms, AllQueries, AllReports etc. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Nov 24, 2004 #6 RoyVidar Instructor Jun 16, 2000 6,606 NO There's a start here thread181-955399 (I think 2000+ version) Roy-Vidar Upvote 0 Downvote