QuickAll is a small autopart that you install on your Newton. You can install it on your card or in internal memory. It does not show up in the Extras Drawer. What does QuickAll do? QuickAll will quickly change your Names and Notes categories to 'All' whenever you reset your Newton. That's all it does. It take up NO heap memory, and about 2kb of card or internal memory. How does it work? QuickAll comes to life when you Reset you Newton. It sneaks in and changes the filing settings of the NotePad and Names to All. It has to open and close Names to change its settings, so don't be alarmed when this happens. It will happen when you first install QuickAll as well. What does it cost? It's Free! QuickAll is my "thank-you" to the Newton Community! For you programmers out there, QuickAll is an AutoPart with all the code in the InstallScript. The code is so simple I've included it here: // )Copyright 1995, John Schettino InstallScript := func(partFrame, removeFrame) begin // use a delayed action so Newt can come up... addDelayedAction(func() begin // Update the Notes app to use All getroot().paperroll._Parent.labelsFilter := '_all; getroot().paperroll._Parent.filterBar:UpdateFilter('_all, '_all); getroot().paperroll:filterChanged(); // Update the Names app to use all getroot().cardfile:open(); getroot().cardfile.labelsFilter := '_all; getroot().cardfile.filterBar:UpdateFilter('_all, '_all); getroot().cardfile:filterChanged(); getroot().cardfile:close(); end, [], 500); end; removeScript := func(partFrame) begin end;