Running a class a particular number of times

hey
can some pls tell me how to run this class a specific number of times. maybe by using a for loop?.
i am making a game called memory game where u match the cards which are thw same. i want to make this a multiplayer game rather than a single player game. Thus in order to do this i need to be able to run the class (shown below) a specific number of times.
i have an array called "players" which is a length of 5. and if the user enter the names into all five elements or there are 5 players then i need the program to run 5 times. else if the user only entered a name in two elements then i need the class "MemoryMatch" to run twice .
i know how to determine whether the user entered 5 names or a single by using if statements. but i dont kno how to make the class "MemoryGame" run a specific number of times.
.. .and for the game i calculate the score of the user by finding the amount of time it takes the user to finish the game and then subtract the time they took from a base value of 500points. i then put the time difference into an array called "timez" i also want the class to add the time to array "timez" at the end after the one of the players has finished the game or the class is run.
here is the code for the "MemoryMatch" class which i need to run a specific number of times.
class MyButton extends JButton
        long startTime = System.currentTimeMillis ();
        int index;
        ImageIcon icon;
        public MyButton (ImageIcon img, int i)
            icon = img;
            index = i;
            setPreferredSize (new Dimension (100, 100));
            addActionListener (new ActionListener ()
                public void actionPerformed (ActionEvent actionEvent)
                    // 1
                    /* Create and add a prompt and then a text field */
                    if (getIcon () == null)
                        setIcon (icon);
                        if (buttonShowingIndex > -1)
                            if (icon != button [buttonShowingIndex].getIcon ())
                                final int bsi = buttonShowingIndex;
                                ActionListener al = new ActionListener ()
                                    public void actionPerformed (ActionEvent actionEvent)
                                        MyButton.this.setIcon (null);
                                        button [bsi].setIcon (null);
                                javax.swing.Timer timer = new javax.swing.Timer (450, al);
                                timer.setRepeats (false);
                                timer.start ();
                            buttonShowingIndex = -1;
                        else
                            buttonShowingIndex = index;
                        //time calculation
                        long endTime = System.currentTimeMillis ();
                        long difference = ((endTime - startTime) / 1000) + 2;
                        timez [0] = difference;
    }so ...basically the two things i would like to get are
1. make the class "MemoryMatch" run a specific number of times
2. Put the time difference(time it takes user to finish game) into the array "timez" (but i think i got that handled but still if u knew a more efficient way... that would be nice =) )
thanks alot

hey man,
thanks for taking the trouble for helping me.
i have put the whole part of my program below. what u mentioned earlier was part right. the "MyButton" class flips over the two cards which were clicked by the user and then if they are right it leaves the cards on the table with the pics. and if they are wrong then the pics dissppear and the user has to choose two more cards again.
the "players" array is an array which contains the names of the people who are playing the game. i get those values from another class called "Score" and then i transfer the array to the "MemoryMatch" class.
..and for the points i was thinking that i would find the time required by the user to finish the game and subtract the time in seconds from a base value of 500.
hope this helps.
thanks
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
class MemoryMatch extends JFrame
    MyButton[] button = new MyButton [36];
    ImageIcon[] icons = new ImageIcon [button.length];
    int buttonShowingIndex = -1;
    int time = 0;
    long startTime, endTime;
    static int gamesRun;
    static boolean runs;
    JPanel contentPanel;
    JPanel mainPanel;
    JLabel text;
    JTextField grade1;
    long[] timez = new long [5];
    static String[] players = {"", "", "", "", ""};
    //delay method
    public static void delay (int num)
        try
            Thread.sleep (num);
        catch (InterruptedException e)
    public MemoryMatch ()
        icons [0] = new ImageIcon (getClass ().getResource ("image1.gif"));
        icons [1] = new ImageIcon (getClass ().getResource ("image2.gif"));
        icons [2] = new ImageIcon (getClass ().getResource ("image3.gif"));
        icons [3] = new ImageIcon (getClass ().getResource ("image4.gif"));
        icons [4] = new ImageIcon (getClass ().getResource ("image5.gif"));
        icons [5] = new ImageIcon (getClass ().getResource ("image6.gif"));
        icons [6] = new ImageIcon (getClass ().getResource ("image7.gif"));
        icons [7] = new ImageIcon (getClass ().getResource ("image8.gif"));
        icons [8] = new ImageIcon (getClass ().getResource ("image9.gif"));
        icons [9] = new ImageIcon (getClass ().getResource ("image10.gif"));
        icons [10] = new ImageIcon (getClass ().getResource ("image11.gif"));
        icons [11] = new ImageIcon (getClass ().getResource ("image12.gif"));
        icons [12] = new ImageIcon (getClass ().getResource ("image13.gif"));
        icons [13] = new ImageIcon (getClass ().getResource ("image14.gif"));
        icons [14] = new ImageIcon (getClass ().getResource ("image15.gif"));
        icons [15] = new ImageIcon (getClass ().getResource ("image16.gif"));
        icons [16] = new ImageIcon (getClass ().getResource ("image17.gif"));
        icons [17] = new ImageIcon (getClass ().getResource ("image18.gif"));
        icons [18] = icons [0];
        icons [19] = icons [1];
        icons [20] = icons [2];
        icons [21] = icons [3];
        icons [22] = icons [4];
        icons [23] = icons [5];
        icons [24] = icons [6];
        icons [25] = icons [7];
        icons [26] = icons [8];
        icons [27] = icons [9];
        icons [28] = icons [10];
        icons [29] = icons [11];
        icons [30] = icons [12];
        icons [31] = icons [13];
        icons [32] = icons [14];
        icons [33] = icons [15];
        icons [34] = icons [16];
        icons [35] = icons [17];
                Collections.shuffle (Arrays.asList (icons));
        setDefaultCloseOperation (EXIT_ON_CLOSE);
        contentPanel = new JPanel ();
        contentPanel.setBorder (BorderFactory.createEmptyBorder (500, 500, 10, 10));
        mainPanel = new JPanel ();
        mainPanel.setBorder (BorderFactory.createEmptyBorder (500, 500, 10, 10));
        mainPanel.setBackground (Color.white);
        mainPanel.setLayout (new GridLayout (6, 6));
        for (int x = 0 ; x < button.length ; x++)
            button [x] = new MyButton (icons [x], x);
            mainPanel.add (button [x]);
        getContentPane ().add (mainPanel);
        pack ();
    public static int pushPlayers (String[] p)
        players = p;
        int game = 5;
        if (players [0].equals (""))
            game = game - 1;
        if (players [1].equals (""))
            game = game - 1;
        if (players [2].equals (""))
            game = game - 1;
        if (players [3].equals (""))
            game = game - 1;
        if (players [4].equals (""))
            game = game - 1;
        System.out.println (game);
        gamesRun = game;
        return game;
    class MyButton extends JButton
        long startTime = System.currentTimeMillis ();
        int index;
        ImageIcon icon;
        // for (int i = 0 ; i < gamesRun ; i++)
        public MyButton (ImageIcon img, int i)
            icon = img;
            index = i;
            setPreferredSize (new Dimension (100, 100));
            addActionListener (new ActionListener ()
                public void actionPerformed (ActionEvent actionEvent)
                    // 1
                    /* Create and add a prompt and then a text field */
                    if (getIcon () == null)
                        setIcon (icon);
                        if (buttonShowingIndex > -1)
                            if (icon != button [buttonShowingIndex].getIcon ())
                                final int bsi = buttonShowingIndex;
                                ActionListener al = new ActionListener ()
                                    public void actionPerformed (ActionEvent actionEvent)
                                        MyButton.this.setIcon (null);
                                        button [bsi].setIcon (null);
                                javax.swing.Timer timer = new javax.swing.Timer (450, al);
                                timer.setRepeats (false);
                                timer.start ();
                            buttonShowingIndex = -1;
                        else
                            buttonShowingIndex = index;
                        //time calculation
                        long endTime = System.currentTimeMillis ();
                        long difference = ((endTime - startTime) / 1000);
                        timez [0] = difference;
    public static void main (String[] args)
        // JFrame.setDefaultLookAndFeelDecorated (true);
        // Score myGrades = new Score (myMemoryMatch);
        // //Score
        delay (5000);
        MemoryMatch myMemoryMatch = new MemoryMatch ();
        //running of main game
        myMemoryMatch.setVisible (true);
        //transferring to the array
        for (int i = 0 ; i < myMemoryMatch.players.length ; i++)
            // show that the variable has been updated here
            players = myMemoryMatch.players [i];
for (int i = 0 ; i < myMemoryMatch.players.length ; i++)
// show that the variable has been updated here
System.out.println (players [i]);

Similar Messages

  • How to run several class files at the same time

    I have four class files, there's: cvnt1.class,cvnt2.class,cvnt3.class and cvnt4.class.
    I want to know how to write application for running all of those files together. thanks!

    Your question is still unclear - do you want to access code from those class files (just add all of them to classpath) or do you want to create number of threads or number of processes (one per class) and start code from each class simultaneously or something else?

  • Thread Running negative number of time.

    Hi All,
    I wrote a program to check the effects of Thread priority, however to my surprise the output is weired the higher priority thread shows that it run negative number of time, below is the code.
    package javaProg.completeReferance;
    class Clicker implements Runnable
         Thread t;
         int click;
         volatile boolean  running = true;
         public Clicker(int pro)
              t=new Thread(this);
              click = 0;
              t.setPriority(pro);
         public void run()
              while (running)
                   click++;
         public void start()
              t.start();
         public void stop()
              running=false;
    public class TestClicker
         public static void main(String [] args)
              Clicker thread1 = new Clicker(Thread.NORM_PRIORITY+2);
              Clicker thread2= new Clicker(Thread.NORM_PRIORITY-2);
              thread1.start();
              thread2.start();
              System.out.println("Processing");
              try
                   Thread.sleep(10000);
              catch (InterruptedException i)
                   System.out.println(i);
              thread1.stop();
              thread2.stop();
              try
                   thread1.t.join();
                   thread2.t.join();
              catch (InterruptedException i)
                   System.out.println(i);
              System.out.println("The number of Time Thread1 executed is "+thread1.click);
              System.out.println("The number of time Thread2 executed is "+thread2.click);
    }Here is the Output..
    C:\Users\pravin>java javaProg.completeReferance.TestClicker
    Processing
    The number of Time Thread1 executed is -386946835
    The number of time Thread2 executed is 837375311Thanks!!

    Thanks a lot , I changed int click to long and its
    working fine.I am wondering why the Java Platform
    didnt throw an error or exception for overflow.Because the Java specification calls for it not to do that but instead to do what you saw and rollover.

  • Running a java program a set number of times

    This is a general question. Is it possible to make a java program run only 5 times for the sake of arguement.
    Basically I want to write a program that will give the user some flexibility when it will actually run another Java program, but I only want them to be able to say "not now' for a set number of times. When the last time comes the other program will launch. I was initially thinking of the Do Whilw loop, but this needs to work when the program is restarted.
    Program starts, it has 5 times it will run before it does something else(doesn't really matter now I think). User takes option "Not Now" and the program ends, but warns the user this will run 4 more times before you will need to do something.
    This process will repeat until the user takes the option "Ok install now" or the time limit expires and the install occurs anyway. Can someone point me in the right direction.

    ok I see so it's like one those programs that you download for free on the internet and they give you a set amount times to use it before you have to pay for it. but in this case when the number of times you use it equals 5 (or when the user clicks ok) a different java app will open automatically.
    My first thought would be to Write a Serialized object to disk using objectOutputStream that stores the number of times the application has been opened. and each time the program runs it checks for the serialized object and then you can do something like what I posted before. of course if were worried about security the user could always look for the object and erase it, if so then I guess we would have to come up with another plan of attack
    Hope this helps

  • How to identify all jobs that were running at a particular point in time?

    TES 6.1.0.391
    From time to time, we have a need to identify all jobs that were running at a particular moment in time on a particular agent (we have about 800 agents)...eg "what was running ("Active") at 09:03:42 a.m. two days ago on agent XYZ?"
    I've used other job schedulers, and have written queries to extract that info, but I thought before I work on one for Tidal that I would ask the community....how are you getting this info?
    Any help is greatly appreciated, thanks.

    I had some time over the weekend and was able to come up with something of use.
    Please note that our repository is MSSQL
    select jobmst_prntname as ParentJobName,
    a.jobmst_prntid as ParentJobId,
    a.jobmst_id as JobId,
    a.jobdtl_id as JobDetailID,
    jobmst_name as JobName,
    b.owner_name as JobOwnerName,
    c.jobdtl_cmd as JobCommand,
    c.jobdtl_params as JobParameters,
    jobmst_lstchgtm as LastUpdateDate,
    d.nodlstmst_name as AgentListName
    ,[jobrun_status]
    ,[jobrun_duration]
    ,[jobrun_time] as starttime
    ,DATEADD(ss,jobrun_duration, jobrun_time) as endtime
    ,f.nodmst_name as AgentName
    ,[jobrun_owner]
    ,[jobrun_cmd]
    ,[jobrun_rundt]
    ,[jobrun_batch]
    ,[jobrun_params]
    ,[jobrun_launchtm]
    ,[jobrun_fullpath]
    from Admiral..jobmst a,
    Admiral.dbo.[owner] b,
    Admiral.dbo.jobdtl c,
    Admiral.dbo.nodlstms d,
    Admiral.dbo.jobrun e,
    [Admiral].[dbo].[nodmst] f
    where a.jobmst_owner=b.owner_id
    and a.jobdtl_id=c.jobdtl_id
    and c.nodlstmst_id=d.nodlstmst_id
    and e.jobmst_id=a.jobmst_id
    and e.nodmst_id=f.nodmst_id
    and jobmst_active='Y' --This condition shows only the active jobs
    and jobrun_rundt ='2014-01-26' --This is the job run date. If the job finishes the next day, that is what is going to be used.
    and f.nodmst_name = 'abc' --This is where you input your agent name
    Hope this helps!

  • "I am constantly getting a message which says Itunes cannot run because some of it's required files are missing.  Please reinstall iTunes."  I've reinstalled a number of times and re-booted but it only seems to last a short time.  How do I fix it?

    I am constantly getting a message which says "iTunes cannot run because some of it's required files are missing.  Please reinstall iTunes."  I've reinstalled a number of times and re-booted but it only seems to last a short time.  How do I fix it?

    HI daddio,
    Ok some things first I need to know...Did you use Microsoft cleanup utility to clean up all those uninstalls you have done?
    I hate Norton and anyone who reads my posts will know that. I have seen way too many infected PC's by Norton users. Did you try the EWIDO and AdAware scan? I see you said you read lots of posts. That is helping folks remove the malware in order to get iTunes and quicktime back to health.

  • Adding a counter that keeps track of the total number of times a loop has run, even if LabVIEW has been restarted.

    Hi all,
    I am writing a VI for measuring data and inserting it into a database. The measurements are controlled by a loop that runs once every minute. I want to give each measurement a unique id number and store this too in the database.
    To do this, I want to add a counter to this loop so that I can count the number of times the loop has executed in total. This is, even if the VI, LabVIEW or even th PC is restarted, I want the counter to keep track of the number of executions. If say, the loope executes two times and then the VI is stopped and restarted, I want the following number on the counter to be three.
    Does anyone have an idea about how to do this? I am gratefule for any help!
    Clara
    Message Edited by Clara G on 05-11-2010 08:21 AM
    Solved!
    Go to Solution.

    Not allowed to give away code but I can describe one of my "Totalizers" used to keep track of how much stuff has passed through a fliter so we know when to change it.
    THe Total izer is implemented as an Action Engine.
    It has three actions (methods)
    1) Init - Opens an ini file and reads the last values read and cahces these in shift registers. It also inits a timer so we now how long since the last file I/O.
    2) Update - Uses the data passed by the caller to update the totals. It also checks how long since the last save and if more than one minute it writes to the ini file (forced write).
    3) Read - returns the totals for display and evealuating if a an alarm should be triggered to change the filter.
    Note:
    THe pre-LV 8.6 version of the ini file exposed methods to allow writing to the file. The new ini functions do not expose that functionality and require closing the file.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Number of times a particular vendor has exceeded the threshold limit

    Hello,
    We wish to find the number of times a particular vendor invoice has exceeded tolerance limit.  Is there any table where this data gets updated or is their any standard report ?
    Regards
    Jayesh.

    Firstly note that you cannot 'exceed' the tolerance. Based on the tolerance, you can goods receipt a higher quantity than specified in the PO.
    Check vendor evaluation report ME6H, it provides scores to vendors on quantity reliability. You can use this if you have vendor evaluation configured for your Pur org.
    If you are thinking for a Z logic, for each PO line item for the vendor, search in MSEG and total the quantity receipted. If this exceeds the quantity order in the PO item, increase your counter.

  • Web AS restarts due to classes being loaded multiple number of times

    Hi,
    We are developing a custom application which uses Dynpro for UI and EJBs/java for business and DAO layer.
    ->The application size is very big and to make the build and deployment faster, we have split the application into multiple ears.
    ->We have made sure that none of the classes are repeated across ears.
    ->We are using Web AS 2004s SP12 on Solaris UNIX platform.
    With all the ears being deployed on the application server, we notice application server being restarted once/twice per day. We have gone through the logs etc in detail and we found that most of the application classes are being loaded multiple number of times. In some cases, same class is being loaded more than 150 times. Due to this reason, permSpace area of JVM is getting exhausted and JVM is crashing. permSpace of JVM is set to 1024M at the moment.
    Any thoughts on what could be wrong here?
    Please let me know if you need any more details on this.
    Thanks, Chandra

    Hi,
    Which JDK version is in use ?  If possible, use JDK 1.4.2.17
    Change Perm size :   -XX:PermSize=512m -XX:MaxPermSize=512m
    Check if the below mentioned JVM parameters exists in the list :
    -verbose:gc
    -Xloggc:GC.log
    //   -Xmx2048m (if -Xmx mentioned the JVM Parameter list, remove it) as you have already mentioned in the JVM Heapsize  //
    -Xms2048m
    -XX:PermSize=512m -XX:MaxPermSize=512m
    -XX:NewSize=320m -XX:MaxNewSize=320m
    -XX:SurvivorRatio=2
    -XX:TargetSurvivorRatio=90
    -XX:+PrintGCDetails
    -XX:+PrintGCTimeStamps
    -XX:+UseParNewGC
    -XX:+HandlePromotionFailure
    -XX:+PrintClassHistogram
    Regards
    Shaji

  • Time constraint classes and  screen number for absence type

    Hi all,
    What should be the Time constraint classes and  screen number for absence type.
    The different absence types are annual leave, sick leave , study leave , personal leave, maternity leave , juryduty leave nad leave without pay etc
    Kindly help.
    Regards,

    The time constaint class depends on the client requirement. 
    eg.if they want that a error needs to be generated while overlapping absences or warning message is required. 
    Time contraints comprise the following:
    Time constraint classes that determine which collisions in time data records are allowed
    Time constraint table that contains the time-based collisions allowed in the time data records
    Time constraint indicator that displays whether a new data record that collides with an existing time data record can be transferred to the system or whether the transfer is prohibited
    For screen number you will have to see if the is quota based deduction or just an absence.  Here is the documentation of screen number from SAP
    In the standard system, the following numbers are allocated to the screens:
    1. 2000 - General absence
    This screen is used for all absences which do not require special processing (such as paid leave of absence for getting married).
    2. 2001 - Quota deduction
    This screen is used for entering data on leave or time in lieu of overtime.
    3. 2002 - Work incapacity
    Use this screen for all absence types where continued pay should be taken into account automatically by the system.
    4. Special screens have been developed for the following absence types:
    2003 - maternity protection, parental leave
    2004 - military and non-military service
    2005 - work incapacity (Netherlands)
    Please go through the documentation of the configuration.
    Shrikant Basarkar

  • How many number of times a particular report was executed

    Hi..My requirement is to find how many number of times a report/tcode was executed in a particular period of time.I tried using STAD,STAT AND ST03 ..but i am not able to find how many number of times the particular report was executed ..is there any other tcode or table or FM ..that would solve this problem..its bti urgent..wud reward points for all useful answers could u let me know under what name or field int eh out put this particular info that i am looking for wud be displayed?

    Hi,
    The following code i found from this forum, may this will help you.
    * internal tables for use counter
    data: begin of list occurs 5.
            include structure sapwlserv.
    data: end of list.
    data: begin of applicat occurs 0.
            include structure sapwlustcx.
    data: end of applicat.
    data: begin of applica_ occurs 0.
            include structure sapwlustcx.
    data: end of applica_.
    data: begin of applicau occurs 0,
            entry_id like sapwlustcx-entry_id,
            account  like sapwlustcx-account,
            count    like sapwlustcx-count,
        : end of applicau.
    data: wa_applicau like applicau.
    *&      Form  MONI
    form moni.
      data: l_host like  sapwlserv-hostshort.
      m_start = p_usedt.
    *** get server
      call function 'SAPWL_SERVLIST_GET_LIST'
           tables
                list = list.
      do.
        loop at list.
    *** loop on server
          check not list-instshort is initial.
          l_host = list-instshort.
    *** get statistics per month and server
          perform workload using m_start l_host.
        endloop.
        add 31 to m_start.
        if m_start > sy-datum.
          exit.
        endif.
      enddo.
      sort applica_ by entry_id.
      sort applicau by entry_id count descending.
    endform.                               " MONI
    *&      Form  WORKLOAD
    form workload using    p_start like sy-datum
                             p_host  like  sapwlserv-hostshort.
      refresh: applica_.
    *** read application statistic from MONI
      call function 'SAPWL_WORKLOAD_GET_STATISTIC'
           exporting
                periodtype                 = 'M'
                hostid                     = p_host
                startdate                  = p_start
                only_application_statistic = 'X'
           tables
                application_statistic      = applica_
           exceptions
                unknown_periodtype         = 1
                no_data_found              = 2
                others                     = 3.
      sort applica_ by entry_id account.
      loop at applica_  where entry_id(1) ge 'Y'.             "#EC PORTABLE
        clear wa_applicau-entry_id.
        wa_applicau-entry_id(25) = applica_-entry_id.
        wa_applicau-account      = applica_-account.
        wa_applicau-count        = applica_-count.
        collect wa_applicau into applicau.
      endloop.
      sort applicau by entry_id count descending.
      applica_-ttype    = space.
      applica_-account  = space.
      modify applica_ transporting ttype account
             where ttype ne space.
    *** collect only enhancements statistic
      if p_temp = 'X'.
        loop at applica_.
          applica_-entry_id+25(48) = space.
          collect applica_ into applicat.
        endloop.
      else.
        loop at applica_ where entry_id(1) ge 'Y'.            "#EC PORTABLE
          applica_-entry_id+25(48) = space.
          collect applica_ into applicat.
        endloop.
      endif.
    endform.                               " WORKLOAD
    aRs
    Points are always welcome

  • I have Lightroom 3 and have installed it on my Retina iMac running Yosemite. It will not show me any of the modules..error when attempting to change modules.. and keeps asking for my serial number every time. Is it compatible?

    I have Lightroom 3 and have installed it on my Retina iMac running Yosemite. It will not show me any of the modules..error when attempting to change modules.. and keeps asking for my serial number every time. Is it compatible?
    David

    This is a duplicate thread - see here

  • I have installed iCloud a number of times on my HP laptop running Windows 7.

    I have installed iCloud a number of times on a high powered Windows 7 notebook computer.
    It goes through the complete instalation WITHOUT EVER asking me to make an account for icloud with an ID and password for iCloud.
    When I try to start icloud for the first time it asks me for my APPLE ID and password. I enter that, and it tells me that is a valid ID and password but it is not for iCloud and therefor refuses to open icloud on the computer for me!.
    THERE ARE NO OPTIONS available on that iCloud startup except for the request to enter the Apple ID and password which is then
    refused.
    I have tried changing and updating the password ...it still refuses to open.It just keeps on telling that is a valid ID and password for Apple but not for the iCloud...I just do not understand what is going on! Thanks for any help or ideas that might get me somewhere with this problem!

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://www.lifehacker.com.au/2012/07/two-excellent-customisable-start-pages-worth-trying-as-igoogle-replacements/

  • Document Directory 'Number of Times Accessed' count

    Not really an api question, but i couldnt find anything else that matched better...
    Is the process that updates the Number of Times Accessed count a batch process and if so, how often does it run?
    The reason i ask is that i have some docs in my directory whose count is remaining zero, even after I have accessed them, whilst others whose count is increasing over time quite happily.
    Does anyone have any ideas why this might be the case?
    thans

    No, I think what's going on is that rather than update the counter every time a user clicks through, we use a randomized algorithm where there's a 1 in N chance that the portal will add N to the count. For example if N is 5 and you open a document 5 times you would expect to see the counter behave something like: 0 0 0 5 5
    This means there's a margin of error (think opinion polls) but the margin decreases as the count increases, so you might know a given document has been accessed 12,450 times with a 5% margin of error. The benefit is that we reduce the load on the database for this particular SQL update by a factor of N. I believe there's a setting somewhere to modify N if you need more accuracte counts, in fact you can set it to 1 if you need a precise count.

  • How to find the number of times method being called.....

    hi,
    can any one pls tell me how to find the number of times the method being called......herez the example....
    Refrence ref = new Refrence();
    for(int i = 0;i < arr.length; i++){
    if(somecondition){
    ref.getMethod();
    here i want to know how many times the getMethod() is calling...Is there any method to do this.. i have seen StrackTraceElement class..but not sure about that....pls tell me the solution....

    can any one pls tell me how to find the number of times the method being called......
    herez the example.... http://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal ? in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

Maybe you are looking for

  • Transaction VA05 - ABAP List Viewer

    Hi, I want to export the list out to execl or text but could not find the download icon in here. Not sure how to activate the download icon. Thanks. Regards, Yeowboon.

  • Label printing problem from Business Object Infoview

    Hi, I got a problem with printing label (roll) from Zebera Label Printer. The label is designed in CR XI which works properly printing from Crystal Report XI and Zebera printer prints labels (more then one labels) without any trouble. But the same la

  • Multiple Covers per Track/Album

    I havent found the clue, so now my problem. I add two or more Album Cover Artworks (back and front)to my Tracks or Albums through the drag and drop area. In iTunes 6 no Problems with that. In iTunes 7 (nearly) impossible. When i drop the cover in the

  • Can't sync file not written

    I bought a movie from itunes and when I synced my phone I got this error message of not being written. I think that is what it said. Unfortunately I unplugged the iphone and tried to sync it again and nothing happened. No pop up message and the movie

  • TS4079 I can't use Siri on Facebook anymore; the little microphone can't be tapped...

    Siri doesn't work on Facebook anymore, it works everywhere else though. Any idea what's wrong?? Or what I can do to fix this.