Code Comments
Programming Forum and web based access to our favorite programming groups.Hi, Is there an easy way to put a (running) clock on each screen in a clipper application? The format could be HH:MM:SS in a text format. Thanks Eric Antwerp
Post Follow-up to this messageOn 28/03/2005 23:36, Eric Bloemen wrote: > Hi, > Is there an easy way to put a (running) clock on each screen in a clipper > application? > The format could be HH:MM:SS in a text format. > Thanks > Eric > Antwerp Use the NanForum library function FT_ONTICK() <http://www.itlnet.net/Programming/P...or/ng1b5f7.html> // Set up a self-updating on-screen clock FT_OnTick( "CLOCK", 9 ) procedure Clock local nRow := Row() local nCol := Col() @ 0, 0 say Time() SetPos( nRow, nCol ) return Phil -- Philip Chee <philip@aleytys.pc.my> Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. [ ]CURSOR: What you become when your system crashes. * TagZilla 0.057
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.