The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
4 views

Java Timer Issue - after 10 seconds '…' is displayed

Unless the Applet window is maximized, after reaching 10 seconds, my stopwatch (component in a Jpanel) displays '...' . However, if I change the size of the Applet window, the timer displays its ...
0
votes
3answers
53 views

C# stopwatch Class

I'm pretty new to programming so would just like to ask the following question regarding the .net built in stopwatch class using system.diagnostics in C#. Does it automatically take care of garbage ...
0
votes
1answer
21 views

expected expression error with stopwatch

I am quite new to coding and have a error with my current stopwatch method for (int i = [timeArray count] -1; i >= 0; i-) { <== error here - Expected expression int timeComponent = ...
1
vote
2answers
73 views

Physics Project in C#: Problems with threading and measuring time

I'm having some problems with a physics project I'm trying to make. Its basically a Free Fall simulator. I set the gravitational acceleration and the height and the program should simulate the fall. ...
0
votes
2answers
51 views

how to stop stopwatch during debugging C# and vs2012

So i have some code that depends upon stopwatch for some calculations. However once stopwatch starts it doesn't stop even during debugging and it is creating problems for me when i try to debug the ...
0
votes
3answers
70 views

Stopwatch changing button text in c#

Basically, I've got multiple button in my Form, and I want for it show a Stopwatch in the button.Text when the button is pressed. (Button is modified to be a toggle button.) and to stop and reset the ...
0
votes
3answers
50 views

Quick way to add Stopwatch.start and Stopwatch.end to all functions vb.net

Just trying to look at a quick way to find the timings for each individual function in my application. Would like to optimize code and see if some function is taking longer than others but was ...
0
votes
1answer
83 views

Best way to implement Timer in Android?

I doing some math game, and I have 25 question for user to answer. So, I want to mesaure how much time that user needed for solving that? So I need something like Timer, stopwatch with ability to ...
2
votes
3answers
154 views

StopWatch Loop using VB.NET

I want to create a simple timer with this interface using VB.NET I want to press Button1 and to start counting seconds in the textbox. I do not want to use the Timer Component because it does not ...
1
vote
5answers
110 views

if specific time passed show messagebox in C#

so, i want this: if specific time passed (for example 9 hours) from loading form, than i want to show messagebox said "9 hours passed". my code is this: public partial class Form1 : Form { ...
1
vote
2answers
120 views

C# Stopwatch on-the-fly update

(My first question here!) Hi, I am kind of beginner in c#. I tried to build a simple timer (in Windows.Forms). I made a label which indicates the time, and used the StopWatch class (from ...
0
votes
1answer
54 views

Adding a Pause Button [closed]

I have the following code to create the stopwatch functionality. The only thing I would like to have is to create the startandstop button be startandpause. But I have been wracking my brain ang the ...
1
vote
2answers
76 views

What's the difference between creating a new instance with “new() and ”.StartNew()"?

Coming from my "answer" to question "Stopwatch in a Task seems to be additive across all tasks, want to measure just task interval" What are the possible differences between creating a new ...
2
votes
2answers
90 views

Stopwatch in a Task seems to be additive across all tasks, want to measure just task interval

I'm running in a loop and kicking off tasks in the following manner: var iResult = new List<Task>(); foreach(var i in myCollection) { var task = Task.Factory.StartNew(() => ...
2
votes
1answer
49 views

Do I need to stop the stopwatch if the enclosing method is about to return?

Consider the following method: DoTimeIntensiveOperation() { var t = new Stopwatch(); foreach(var element in a_very_long_array) { DoATimeConsumingTask(element); } ...
-1
votes
1answer
44 views

My StopWatch error (GetTimestamp)

i have this code, it will be a stopwatch. Why cannot be accessed with an instance reference? ERROR: Member 'System.Diagnostics.Stopwatch.GetTimestamp()' cannot be accessed with an instance ...
0
votes
1answer
100 views

How to add a countdown timer of 3…2…1…GO in Android?

I am currently developing a stopwatch but I dont understand how can I add a countdown timer to it which has animations.. It should be triggered at the click of Start Button of the stopwatch and at the ...
1
vote
1answer
33 views

Launching the android stopwatch from my app

I want to launch the stopwatch application that comes with android from my app but have no idea how to do this. I do not want to create a stopwatch on my own since it needs to keep running when I ...
0
votes
1answer
48 views

Showing duration time using stopwatch in android?

I need to toast the stopwatch's value ie.,time taken between start and stop If i click the stop button it should toast that time duration. How to do this? Here i have tried some code ...
-1
votes
2answers
247 views

jQuery stopwatch with milliseconds and spacebar as trigger [closed]

I've just started with 'learning' jQuery, so I almost know nothing. But, I want a stopwatch, showing minutes, seconds and milliseconds. I'd like to start the timer by pressing spacebar, and also stop ...
0
votes
2answers
83 views

How can I create a timer in cookies?

I have one page with 5 sub pages (each one has a different page link) what I am trying to do is create a timer to count how many seconds a user spend on a phone call. for example main.php << ...
1
vote
6answers
111 views

Stopwatch Recording to 4 decimal places

I am using the system diagnostics stopwatch to time how long my function takes to run. Currently the output is 0 as it is under 1ms. How can I record to under a millisecond to 4 decimal places?. I am ...
0
votes
1answer
153 views

Timer function in Service (kind of chronometer)

My intention is to create an timer which starts from 00:00:00 and hangs together with a recording function. This recording is done in a service so, the timer is also in the same service. If the app ...
0
votes
1answer
100 views

VB.NET Stopwatch/TimeSpan

I'm trying to create a stopwatch that will allow a numbericupdown to adjust the time as needed. Right now if I change the numbericupdown to "2" while the time is going it will double entire value ...
3
votes
1answer
93 views

Should I call Stop before reading ElapsedMilliseconds?

Can I get the elapsed time since I have called Start on a stopwatch using ElapsedMilliseconds without calling Stop? I have searched a lot round the internet but only saw examples where ...
0
votes
1answer
100 views

C#/MonoTouch implement a StopWatch showing time on a label dynamically

Is it possible to implement a stopwatch showing stopwatch values changing on label as watch is running. I have added stopwatch using following code Stopwatch stopwatch = new Stopwatch(); // Begin ...
0
votes
3answers
36 views

Calculating Time elapsed for ten users at the same time

I need to capture the time taken between two button press of ten users. I am doing like this with StopWatch. Stopwatch stopwatch1; Stopwatch stopwatch2; ........ Like this ten stop watches. ...
1
vote
1answer
225 views

What are the advantages of Guava Stopwatch class?

In the Google Guava library, there is a Stopwatch class, and its documentation states this - An object that measures elapsed time in nanoseconds. It is useful to measure elapsed time using this ...
0
votes
0answers
41 views

Javascript timer with sessions

A simple countdown using javascript would solve the countdown issue but I need the timer to remain the same on every page as it counts down - this is very important! Once it has counted down I need to ...
1
vote
3answers
311 views

Javascript delete div Element

I am implementing a Stopwatch in JavaScript. I want to delete additional div elements when pushing a clear button. I added function cc();, but function cc() doesn't work. What's wrong with my code? ...
1
vote
1answer
49 views

Stopwatch getting static value from runnable, editing variable inside runnable

I'm going to create stopwatch and i got some trouble. My code looks that: 1 For start button: start.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { ...
-1
votes
3answers
110 views

Create alias in powershell to measure the time of a function

I have a bunch os functions in a PowerShell script binded to an alias, as: function Run { # somethin that takes a while } set-alias r Run I would like to measure the time of each call. To do ...
0
votes
1answer
131 views

More Precise timer than Stopwatch?

I'm trying to have a stopwatch start and stop when recording positions for the Kinect: //process x and y coordinates public void calculateJoints(Skeleton skeleton) { ...
0
votes
2answers
87 views

I would like a stopwatch for my IQ test [closed]

I am making a IQ test. I would like to put a timer in that outputs a value when the user finishes the test and multiplies its reciprocal times the # of questions correctly answered. This seems ...
0
votes
1answer
52 views

Collecting metrics using Apache's Stopwatch, clarification needed

Please consider the following snippet: StopWatch stopWatch = new StopWatch(); stopWatch.start(); Thread.sleep(1000); //< ---- event 1 stopWatch.split(); Thread.sleep(2000); ...
3
votes
4answers
141 views

.NET's Stopwatch Class, behaves strange

so, i have all the search algorithms, and i am sending random 20000 numbers to each algorithm, trying to figure out how long each will take. public void functionsForSorts(int[] array) { ...
2
votes
1answer
194 views

Javascript Stopwatch Performance

i am trying to display multiple Running Times in a table. The table has 3 columns (nr, name, time). The time is displayed in that format 'hh:mm:ss.f', that means that i update the time every 100ms. ...
0
votes
1answer
631 views

TIMER or STOPWATCH in visual basic 2010

I have little dummy software to test the precision of the stopwatch in visual basic. I've been told that visual basic has a real good timing, but I'm experiencing some strange behaviors. This is ALL ...
-1
votes
1answer
132 views

NSTimer Stopwatch in Notification Centre

I am having trouble with NSTimer and adding a stopwatch to the Notification Centre; I am very new to Obj C and am not using Xcode. The Widget compiles and runs fine, however pushing "Start:" does ...
2
votes
1answer
956 views

Powershell timer/stopwatch accuracy

Finding that the System.Diagnostics.Stopwatch class has what seems to measurably inaccurate even over a short time period (i.e. 20 seconds). My process is showing an elapsed time of 20.3+ seconds for ...
0
votes
0answers
52 views

How to set consecutive control names in FOR statement?

Hi I need a code block to accomplish the following task : There is a flolayoutpanel in my form with 3 panels in it. I want my submit button to count the panels and create a stopwatch control named ...
0
votes
1answer
108 views

How Can I set the Stopwatch Name in runtime?

I need a solution for a small problem in my project and I'll make it as simple as possible: At one of the forms in my project, user should be able to add a panel to the form and that form should ...
3
votes
3answers
946 views

Stopwatch in python? Count until you press space

I want to make a stopwatch in python 3.3 that continues to count until you press a button or something, it should then stop counting. This is my code: seconds = 0 minutes = 0 continued = 0 while ...
0
votes
1answer
306 views

Create stopwatch timerclock countdown timer with image flip every second android

I was looking over internet a lot, but only found examples how to text is changed every second or show even miliseconds. I was using those examples to change picture when second was change, but timer ...
0
votes
1answer
48 views

Show stopwatch in JTextPane

I want to put my stopwatch to JTextPane in JPanel, but it doesn't appear :/ I don't know if I can put objetct from class (extends JLabel) in class (extends JPanel). Maybe, this is the reason. My ...
0
votes
1answer
95 views

Why does stopwatch tick longer when it is running the first time

I run this code inside a while loop for like 10000 times, I noticed timeSpent is around 4 except for the first time, which is ~500, why? Stopwatch s; long price; count = 10000; while (count!=0) { ...
8
votes
5answers
2k views

Calculate the execution time of a method [duplicate]

Possible Duplicate: How to measure how long is a function running? I have an I/O time taking method which copies data from a location to another. What's the best and most real way of ...
0
votes
1answer
291 views

How to create a stopwatch timer

I have an asp.net application that is supposed to act like a stopwatch timer. I've tried variations on how to get the timer to count time using seconds. I used an algorithm that was largely ...
0
votes
0answers
97 views

I have made a timer in android with button and 3 textviews,now 1st time button clicked the timer should start,then lap1,lap2,and then stop

I have made a timer in android,now i want that when button pressed 1st ,timer should start .its fine its working.when again clicked the 1st textview stick with time at which button pressed and from ...
3
votes
1answer
221 views

Event timer delayed in .NET not in Mono. Is it a bug?

DotNet alternative (MONO-http://www.go-mono.com/mono-downloads/download.html) handles the short timer condition properly (down to ~12 ms firing time) Yet, DotNet appears to take longer then expected ...

1 2 3 4 5