Wanna ask if how can I can create a delay without using System.Thread.Sleep(interval).
My apps serves as server runs in a endless loop that reads SMSINBOX using serialport to interface with a GSM MODEM.. readSMSINBOX() is followed by a delay ... The problem here is the delay thats kills me.... It hangs all the controls of my app. Other functions aside from reading, is sending, userMANAGEMENT, console, etc. Any idea how I can implement a delay that consumes time WITHOUT hanging the app by using SYSTEM.TIMERS or SYSTEM.THREADING or BACKGROUNDworker... Please... I can't post all my codes here.. Don't know either how to publish my code in a live site. Just a pure NOOB..

readINBOX()andsendMESSAGE()are functions in my apps that usesSYSTEM.THREADING.THREAD.SLEEP()which hangs the UI Thread that hangs (NOT RESPONDING) all of the controls of the app. That's the problem... What exactly is a delay that may be executed with a different thread but also consumes time. i need this to allow access to controls such as cmdButtons, txtbox, tabs... – Jed Feb 24 '12 at 21:01