Any chance of a timer?

Post Reply
User avatar
xProgrammer
Posts: 464
Joined: Tue May 16, 2006 7:47 am
Location: Australia

Any chance of a timer?

Post by xProgrammer »

I really need a timer for one part of my application. I don't suppose anyone has done one for xHarbour/FiveLinux? Anyone with any pointers as to how I might go about creating one? Please someone!

I would be eternally grateful

xProgrammer
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Doug,

We may have them ready for today :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Doug,

This is already working fine. We email you new files:

Code: Select all

#include "FiveLinux.ch"

function Main()

   local oWnd, oTmr

   DEFINE WINDOW oWnd TITLE "Testing timers"

   DEFINE TIMER oTmr INTERVAL 200 ACTION oWnd:SetText( Time() )

   ACTIVATE TIMER oTmr

   ACTIVATE WINDOW oWnd

return nil
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
xProgrammer
Posts: 464
Joined: Tue May 16, 2006 7:47 am
Location: Australia

Many Thanks

Post by xProgrammer »

Antonio

I hope that your customers appreciate the wonderful effort you put in to supporting your products and your preparedness to try to meet their needs.

Doug
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Doug,

Thanks for your kind words :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply