|
I bought the car with a knackered alternator and swapped it for a second hand one. Since then it been stood for 6 months, I put a new battery on and the battery light stays on, i'm sure the alternator is putting no power out.
I get 12.5v at the battery...
Started by 1990 on
, 25 posts
by 4 people.
Answer Snippets (Read the full thread at com):
The blue wire is the exciter feed, it should have 12volts going to it,
it gets this 12v feed from the ignition warning lamp in the instrument cluster
does the warning lamp in the cluster even come on? I didn't test the blue wire, just its connection on... .
|
|
How can I have my javascript code constantly run? The situation is that I want some page elements to be resized when the page resizes. I'm thinking that the way to do this would be to have some javascript code that constantly runs, and whenever the page...
Started by chustar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
});
By running the javascript....
$('body').resize(function() { ...
Http://www.quirksmode.org/dom/events/index.html#t020
You should hook your script to the resize event I would look at a framework like jquery where you can register a function with a page event .
|
|
I have a C# form that has a text box that needs to constantly update with the output from an exe while the exe is still running. I know how to update it after the exe has finished but its the constant updating that i need.
Started by Chiefy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You have your process which starts the exe:
// Normal creation and initialization of process - additionally: process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.OutputDataReceived += ProcessOnOutputDataReceived... .
|
Ask your Facebook Friends
|
Does anybody know a decent freeware FTP utility, preferably that can run in the background, that can mirror a local folder, constantly checking the files there for changes, and then automatically refreshing the FTP folder when the local files change?
Started by Joshua on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is that helpful?
David Kerins
I am interested....
You could use rsync in that shell script to do the actual sync .
If you are running on a Linux or UNIX box you can use a shell script that periodically runs under cron to sync a folder to a "master" folder .
|
|
I am writing a timer program in Python using PyGTK. It is precise to the hundredths place. Right now, I am using a constantly updated label. This is a problem, because if I resize the window while the timer is running, Pango more often than not throws...
Started by linkmaster03 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you using threads? What does your code look like? How small can you condense your program (by removing functionality, not by obfuscating the code), without... .
Updating a label should work perfectly reliably, so I suspect you're doing something else wrong .
|
|
These tables will be constantly inserted new rows or updating.
i have a big table containing, video url, title, description, tags, views, rating, comments
should i divide this to 2 smaller tables
id video url, title, description
and link this to above...
Started by bohohasdhfasdf on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If the columns....
Duplicating information will lead to larger record and index sizes, which can increase disk seek time .
You want to avoid storing duplicate data, unless it has some performance benefit .
It doesn't sound like your tables are very normalized.
|
|
Today I had my first test with the ASP.NET AJAX Timer Control, in hope that it would allow me to constantly keep updating my site.
At the moment, it just updates once; this does not match the behavior of the previous .NET timers.
Was the AJAX Timer control...
Started by RodgerB on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could try to check your implementation against what is described in this... .
Works for my page * link in profile page.
Make sure your timer is Enabled and the Interval is set correctly, and try putting it in an UpdatePanel .
Nope, it updates regularly.
|
|
I am making a primitive database in Excel and need a routine to run in the background constantly. I will be able to fill in the actual actions it needs to do, but I don't know how to make something run independent of a key press or some sort of Macro....
Started by Jerome on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Another alternative would be a ....
I haven't worked with VBA for quite some time now, but you would have to create a thread in VBA, maybe by COM-Threading, but I am not too sure if Excel is threadsafe or if you even can use Threads of some kind in Excel .
|
|
I'm working on a game-like app which has up to a thousand shapes (ellipses and lines) that constantly change at 60fps. Having read an excellent article on rendering many moving shapes , I implemented this using a custom Canvas descendant that overrides...
Answer Snippets (Read the full thread at stackoverflow):
|
|
Hello,
I am using a .NET Windows Forms DataGridView and I need to edit a DataBound column (that binds on a boolean DataTable column). For this I specify the cell template like this:
DataGridViewColumn column = new DataGridViewColumn(new DataGridViewCheckBoxCell...
Started by Vasile on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Create a TemplateField and bound the id to it, something like this:
<asp:TemplateField HeaderText="Whatever" SortExpression="fieldname" ItemStyle-HorizontalAlign="Center"> <ItemTemplate> <asp:CheckBox runat="server" ID="rowCheck" key='&... .
|