The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

Timer Write In Log 2 times instead of 1 time C#

Everything works fine except for one thing. My program prints "player hit" 2 times then "mob hit" 2 times and then "player hit" 2 times again and so forth. I want it to type "player Hit" "mob Hit" ...
0
votes
0answers
15 views

I want to find which tick I clicked on a slider tickbar

I have OnRender a slider's tickbar and Restyle the ticker in WPF, now I want to click each tick on tickbar to find out which tick I clicked, then get this tick's information? anybody have ideas? Can ...
-1
votes
3answers
69 views

Timer Tick more then 1 time at once C#

I am making a program where the timer1 sohuld activate anoter timer2 and then stop, in timer2 i activate timer1 again and stop timer2 and so it goes on and then i have a text log where it write the ...
0
votes
0answers
12 views

Reducing the height of the Tick marks

I am using Rickshaw framework that uses D3 to generate graphs. I want to decrease the height of the tick mark. I can access and change the color of the tick mark in the CSS file. But when I give ...
4
votes
2answers
53 views

How to Write A Function That Appends an Item to the DOM and Delays the Next Tick?

I recently found the following question online: Write a function that takes an object and appends it to the DOM, making it so that events are buffered until the next tick? Explain why this is ...
0
votes
4answers
111 views

Datetime Timer Interval does not change speed of months added

DateTime newDate = new DateTime(2013, 1, 1); void AddTime() { timer1.Interval = 600000; timer1.Enabled = true; timer1.Tick += new EventHandler(timer1_Tick); ...
0
votes
2answers
23 views

C# tick event, direct use

I want to do some code every tick. timer.Tick += new EventHandler(TabPage tab = new TabPage(Convert.ToString("test"));) But this is wrong, i dont remember how do this correctly. I do not want to ...
0
votes
1answer
73 views

donut chart with tick mark lines (d3)

i have three donut charts var data = [ { institution: [53245, 28479, 19697, 24037, 40245] }, { institution: [45, 9, 127, 37, 11] }, { ...
0
votes
1answer
26 views

FLOT: Multiple YAxis with different tick size

Just want to find out if anyone have encountered this problem before. Basically I am currently using Flot version 0.8. I am trying to plot a chart with multiple yaxis against datetime in xaxis. The ...
2
votes
1answer
51 views

Add fake tick to x-axis in ggplot

I suppose the title says it all. I have a dataset without any data for day 0, but for illustration purposes I would like to include day 0 on a discrete x-axis, is this possible? Example code below, ...
1
vote
3answers
48 views

How to send arguments (parameters) in a timerTick event in C#?

I want to do something like this: private void ttimer_Tick(object sender, EventArgs e, char[,] imatrix) { Awesome code... } I have a method that fills a DataGridView with images, ...
1
vote
0answers
55 views

Environment.TickCount never resets on my machine, why?

According to the documentation, Environment.TickCount returns "the number of milliseconds elapsed since the system started". I shutdown my computer every day, so TickCount should be much less than ...
1
vote
1answer
86 views

Tick properties for scatterplot matrices with Matplotlib

I am trying to plot a scatterplot matrix based on the code written by Joe Kington: Is there a function to make scatterplot matrices in matplotlib? Some people already helped me: Thank you again ...
1
vote
3answers
72 views

DateTime + Timer Tick?

I want, when I click on a button, to start an "elapsed time". I've written this so far: private void timer_Tick(object sender, EventArgs e) { timeCounter++; labelTimer.Text = "Elapsed Time: " ...
0
votes
2answers
108 views

Matlab: how to remove repeated date tick labels

I'm trying to plot 63 years of monthly data and some labels are repeating (indicated by arrows), illustrated by the following figure: In order to handle x-labels, I used the following code: xdate = ...
0
votes
0answers
20 views

What is a typical tick interrupt duration in terms of CPU percentage?

In many RTOS's the tick interrupt activates the scheduler which checks if higher priority task is ready to run and if so, performs a context switch. I wander what is a typical duration of the tick ...
0
votes
1answer
115 views

jqPlot - Tick label breaking(word-wrap)

I'm using jqPlot Look at the right-bottom corner Left side is correct, but the right side isn't. There is a way to fix word-wrap on tick labels? EDIT: $(document).ready(function(){ ...
1
vote
1answer
40 views

What happens when a tick gets overflown?

Topic of this question is date and time calculations. .NET, as many other platforms, heavily relies on some form of minimal discrete time representation, such as DateTime.Ticks. A tick is an Int64 ...
0
votes
1answer
151 views

timer tick event, won't be interrupted by other functions?

So here is a game from a book i've been studying. private void timer1_Tick(object sender, EventArgs e) { listBox1.Items.Add((Keys)random.Next(65, 90)); if ...
1
vote
0answers
51 views

Highstock tick interval not showing

I have a problem with showing on a Chart the tickinterval. Please look at this example: $(function() { var usdeur = [[Date.UTC(2003,8,24),0.8], [Date.UTC(2003,8,25),0.8]] ...
1
vote
2answers
71 views

EnableRaisingEvents every 100 miliseconds?

I am just wondering is there anyway to turn on and off for EnableRaisingEvents every 100 miliseconds? For example, initially, the EnableRaisingEvents is set true. when there is an event coming in, ...
0
votes
1answer
34 views

Touch movement will not animate

Ok, so I'm in the process of developing a game in Adobe Flash (air) it will be a mobile game.I asked this question a while ago, but animation doesn't work so know I'm back.Anyway, the problem I was ...
0
votes
1answer
85 views

How to properly use Cocos2d's update/tick method to trigger an event, only once?

I keep running into this issue wherein I'd like to trigger an event (void) during a scheduled update or tick method - but only trigger it once. The problem is that it gets triggered every time ...
0
votes
1answer
103 views

Looking for Timer.Tick or equivalent on MonoDevelop and GTK

Hello there I'm looking for equivalent event for timer.tick from System.Windows.Forms in MS C# to MonoDevelop C# with GTK... ...
0
votes
1answer
80 views

My destructor is called every tick [closed]

False alarm! (read the edit) I'm trying to make a small game, using SDL. When an entity is created, its image should up the refcount, and that's no problem. The problem comes when it's time to use ...
1
vote
2answers
749 views

JQplot Format String

Can I please have some help to format the string on the Y Axis that has a '%' sign. Here is the code for a '$': tickOptions: {formatString: '$%d'} How do I format the string to use a '%' sign as ...
1
vote
2answers
131 views

How to set two Events in One Button Click?

I have Form with a Timer1. I would like to set the Tick event of that timer1 to a timer2_Tick function that is already signed to another timer2. How can i Set the 2 timers, to 1 event? Thanks.
0
votes
1answer
55 views

Stretching axis ticks to fit compressed image

I have a PyQt4 Application in which I am representing a 16bit grayscale image using matplotlib. The image I'm representing are quite large. Due to memory limitations I'm unfortunately not able to ...
0
votes
1answer
52 views

Binding an enum type to a context menu showing all variations with the current ticked

How can I bind an enum to a context menu, such that all variations of that enum are shown, and a tick for the currently selected?
1
vote
1answer
1k views

Adding custom tick marks on R plot

I'm plotting a cdf of some data, and I've added logarithmic scale on the "x" axis. The ticks spacing is exactly as I want it to be, but I'd like to be able to add some tick marks on specific points. ...
0
votes
1answer
223 views

Calling a timer tick event from Windows Form Application from another class with no GUI

I'm trying to run the timer tick event which initially runs on my windows form,also when loaded on another class using a thread. I tried calling the timer event on another thread it din't help. Am I ...
3
votes
4answers
599 views

Timer won't tick

I have a Windows.Forms.Timer in my code, that I am executing 3 times. However, the timer isn't calling the tick function at all. private int count = 3; private timer; void Loopy(int times) { ...
0
votes
0answers
34 views

Why is DateTime.Ticks a signed integer? [duplicate]

Possible Duplicate: Why is Count not an unsigned integer? The Ticks property of the DateTime class is defined as "the number of ticks that represent the date and time of this instance". It ...
1
vote
1answer
548 views

How to set date tick labels on x axis, only for given points on matplotlib

I am trying to set date tick labels on x axis, only for given points. For example if I have a list of datetime for values on x axis x = [ datetime.datetime(..), ... , datetime.datetime()] I tried ...
0
votes
1answer
133 views

Set ticks according to formula

Given a figure created by spectrogram function, how do I set the ticks according to the following formula? (12 × log2 (f / 440)) + 69 [f is the current value on the axis, and the formula's result ...
2
votes
1answer
434 views

change the position (move) of tick labels when plotting with matplotlib

i am plotting with matplotlib. the code is the following (zvals has the values) cmap = mpl.colors.ListedColormap(['darkblue', 'blue', ...
0
votes
0answers
86 views

Tick Method or ScheduleUpdate method in box2d iphone

I am new to box2d(cocos2d). i have a problem on tick method... For example, I have 50 objects in the world. For each object have different animations/effects. Is there possible to handle these ...
0
votes
1answer
165 views

How do I create customized fixed-width column/x-label?

Goal: to produce fixed-width columns of months per data. Problem: column width varies per #data points. Hence, some labels cluster together (e.g., 'JanFeb' vs 'Jan....Feb') due to lack of data for ...
1
vote
1answer
132 views

tick in Programming go

I run following code on a tour of go website package main import "time" import "fmt" func main() { c := time.Tick(1 * time.Minute) for now := range c { fmt.Printf("%v\n", now) ...
2
votes
1answer
863 views

about CONFIG_NO_HZ in kernel

So if CONFIG_NO_HZ is set, I believe it will make a tickless kernel. But I believe this just means when the system is idle, it might become tickless in order to save energy. When it's working, it is ...
4
votes
1answer
808 views

Tick Counter Verilog

I was wondering how can i write a verilog program for a tick counter. When the fast input is low, the output tick is high for one cycle every 150 ms (every 7500000 cycles) The clk period is 20ns. If ...
0
votes
0answers
83 views

Bes Open Source Java TIck Data Client? [closed]

Can anyone recommend such a service with Java client example? I really don't want to register or purchase before viewing. The frequency is multi second so less than a minute. It is also mainly for ...
0
votes
3answers
300 views

Issue when scheduling tasks using clock() function

I would like to schedule tasks at different time intervals: at 0.1 sec, 0.9s .... 2s etc I use the clock() C++ function that returns the number of ticks since the beginning of the simulation and I ...
3
votes
1answer
456 views

change position of tick marks of a single graph, using ggplot2

Anybody knows how to draw the X-axis tickmarks at the top of a single plot in R, using ggplot2? I ve been looking at tutorials and mail lists and Rhelp without success. Thanks in advance. Agus
1
vote
2answers
237 views

Timer Interval Is Smaller Than Function In Tick Event

I have a timer with 10 seconds interval and on timer_Tick event I do some stuff which usually needs about a second, but sometimes it needs More than 90 seconds. How will it act? Is this event ...
2
votes
2answers
245 views

R : Tick data adding value when tick data is missing

I'm working on tick data and want to aggregate my xts irregularly spaced series into a 1 second homogeneous one. I thus use the xts package function to.period : price_1m ...
0
votes
1answer
157 views

R tick data : merging date and time into a single object

I'm currently working in tick data with R and I would like to merge date and time into a single object as I need to get a precise time object to compute some statistics on my data. Here is how lmy ...
0
votes
1answer
349 views

DateTime from TickCount?

I am capturing some events in a C# program that come back with the timestamp as a system tickcount (milliseconds since start time). Knowing, based on other questions I've seen, that I can get the ...
0
votes
0answers
240 views

VB.NET trackbar with arbitrarily-positioned ticks

Is it possible to arbitrarily position ticks on a trackbar (ie. not at set intervals)? For example, placing ticks at 128, 256, 1024, 2048, 4096, 5120, and 6144. It would be ideal if the trackbar ...
0
votes
1answer
116 views

In linux task scheduler, where does the sheduler_tick() called?

Recently I am playing with the linux task scheduler. Now I wan to find out the load balancing mechanism of the task scheduler and CFS algorithm. First, I have found in the __schedule() function ...

1 2