BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 10-30-2007, 09:32 PM   #1
siqiabc
New Member
 
Join Date: Oct 2007
Location: xi'an , China
Model: 7100t
PIN: N/A
Carrier: 710067
Posts: 12
Smile How to run my application in background?

Please Login to Remove!

How to run my application in background?
Offline  
Old 10-30-2007, 10:09 PM   #2
streamh
Thumbs Must Hurt
 
Join Date: Jun 2007
Model: 8800
PIN: N/A
Carrier: GPRS
Posts: 68
Default

Code:
/*
 * guiLessApplication.java
 *
 * ?<your company here>, 2003-2005
 * Confidential and proprietary.
 */

package GUILessApp;

import net.rim.device.api.ui.*;
import net.rim.device.api.ui.component.*;
import net.rim.device.api.ui.container.*;
import net.rim.device.api.system.*; 

public final class GUILessApp extends Application
{ 
     private BackGroundApp backGroundApp; 
     public static void main(String[] args) 
     { 
          GUILessApp theApp = new GUILessApp();
          theApp.enterEventDispatcher(); 
     }

     public GUILessApp()
     {
          //Creates and starts a new BackGroundApp thread.         

          backGroundApp = new BackGroundApp();
          backGroundApp.start();
     }

     //The thread that will run in the background.
     private class BackGroundApp extends Thread
     {
          boolean stopThread = false;
          public synchronized void stop() 
          { 
               stopThread = true;
          }

          public void run() 
          {
               int n = 0;
               while (!stopThread) 
               { 
                    //You would perform your processing here.
                    //This sample just prints out a line 
                    //to the BlackBerry JDE Output Window
                    
                    System.out.println("Application is running" + n + "th times!");
                    n++; 

                    //Sleep for 5 seconds to prevent the
                    //application from running out of control
                    try 
                    { 
                         sleep(5000); 
                    } 
                    catch (Exception e)
                    { 
                         //Exception handling would go here. 
                    } 
               } 
          } 
     } 
     //Stop the thread on exit. 
     protected void onExit() 
     { 
          backGroundApp.stop(); 
     } 
}
Offline  
Old 10-31-2007, 01:29 AM   #3
siqiabc
New Member
 
Join Date: Oct 2007
Location: xi'an , China
Model: 7100t
PIN: N/A
Carrier: 710067
Posts: 12
Default

thank you!
Offline  
Old 10-31-2007, 05:17 AM   #4
genvej
Thumbs Must Hurt
 
Join Date: Jul 2007
Model: 8800
PIN: N/A
Carrier: TDC
Posts: 115
Default

Another way to do it is to edit the properties of your project and simply tick

system module

auto-run on startup
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


PRX Powerex Thyristor Power Module KS621K30 picture

PRX Powerex Thyristor Power Module KS621K30

$159.99



Brand New Semikron MODULE SKKH162/16E Hybrid SCR- THYRISTOR Diode Power Modules picture

Brand New Semikron MODULE SKKH162/16E Hybrid SCR- THYRISTOR Diode Power Modules

$46.53



Semikron SKKT 92/12E Semipack Thyristor Module -  picture

Semikron SKKT 92/12E Semipack Thyristor Module -

$29.99



Replacement BISCR6601818   NEW  Benshaw Thyristor SCR picture

Replacement BISCR6601818 NEW Benshaw Thyristor SCR

$125.00



AVC Specialists RASTD074 Thyristor switch picture

AVC Specialists RASTD074 Thyristor switch

$199.95



NEW STT250M14M GOP POWER BLOCK MODULE THYRISTOR STD250M14M 9144  picture

NEW STT250M14M GOP POWER BLOCK MODULE THYRISTOR STD250M14M 9144

$225.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.