CategoryGeneral / Mix Platforms

CActive Object in Symbian C++

C

Active Object provides a support for asynchronous process. let’s see example of Timer using CActive :- Active Object can be implemented by deriving from the CActive class void CTestTimerAO::RunL()//RunL-The handler function to be invoked by the active scheduler when the request completes { iTimeString = _L(“”); iMs = iMs + 1; TUint64 minute; TUint64 second; TUint64 millisecond;...

Set Timer in Blackberry Application

S

This Code shows how to set Timer in your blackberry Application. Step-1: Implement Runnable interface.And add unimplemented methods.And set this fields. private long startTime; private Thread updater; private boolean isRunning= false; private final static SimpleDateFormat timerFormat = new SimpleDateFormat(“ss.SSS”); private final Runnable displayUpdater= new Runnable() { public void...

Welcome

W

Welcome to Nanostuffs Blog ! This is a portal exclusive for Nanostuffs Brightest Minds to share their technical, personal, and every kind of experience on web. We look forward to keeping you informed with timely articles on wide range of topics, such as: iPhone/iPad Development Android Development Salesforce Customization/Apex Programming PHP Insights .NET Brainstorms Unity 3D Challenges HTML5...

Category