Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!bu.edu!inmet!stt From: stt@inmet.inmet.com Newsgroups: comp.lang.ada Subject: Re: HELP! HELP! HELP! need to display D Message-ID: <20600099@inmet> Date: 12 Apr 91 16:27:00 GMT References: <34421@<1991Apr9> Lines: 20 Nf-ID: #R:<1991Apr9:34421:inmet:20600099:000:382 Nf-From: inmet.inmet.com!stt Apr 12 12:27:00 1991 Re: Output of Duration Try the following: with Text_IO; pragma Elaborate(Text_IO); package Duration_IO is new Text_IO.Fixed_IO(Duration); with Duration_IO, Text_IO; procedure Main is begin Duration_IO.Put(86399.99); Text_IO.New_Line; end Main; This should solve your problem, I hope. -Tucker Taft Intermetrics, Inc. Cambridge, MA 02138