除了一个特定的FROM之外,我要将所有的FORM关掉,请问有什么方法?谢谢 问题点数:20、回复次数:1Top
dim f as form for each f in forms if trim(f.name)<>"你特定的Form" then unload f end if nextTop