Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!bloom-beacon!bu.edu!bu-cs!dartvax!eleazar.dartmouth.edu!matthews From: matthews@eleazar.dartmouth.edu (Jim Matthews) Newsgroups: comp.sys.mac.programmer Subject: Re: Odd Interaction Between Notifcation Manager and MS Word 4 Message-ID: <19269@dartvax.Dartmouth.EDU> Date: 9 Feb 90 21:28:29 GMT References: <1990Feb9.040754.16705@caen.engin.umich.edu> Sender: news@dartvax.Dartmouth.EDU Organization: Dartmouth College, Hanover, NH Lines: 22 We ran into this bug last fall, when we were distributing Word 4 and our mail system (which uses the Notification Manager) to our freshmen. MicroSoft pointed the finger at Apple (something about the NM not preserving DAFont...) but they did give us a workaround to keep Word's menus from being corrupted. Just put the following in your NM response procedure: { Kludge to fix MS Word 4.0 problem } GetPort(ourPort); oldFont := ourPort^.txFont; for i := 1 to 13 do begin TextFont(i); if CharWidth(' ') > 0 then ; end; TextFont(oldFont); This apparently flushes the font width cache and makes life better. But the notification dialog is still in Geneva.... Jim Matthews Dartmouth Software Development