0
votes
2answers
33 views
How to troubleshoot long builds in Visual Studio?
Is it possible in any way to troubleshoot the build process in Visual Studio? I'd like to see which part of the build specifically takes so much time.
2
votes
3answers
101 views
css problem: Absolutely positioned parent and float:right child stretches
In IE6, IE7 and FF2 the .outer div below is stretching out to the right edge of the document. Here is a complete test case:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transit …
4
votes
5answers
121 views
How to troubleshoot .NET application that just disappears?
One of our .NET 2.0 application started to just randomly disappear. There are no records in the Event log, Dr. Watson doesn't generate crash dump, no nothing...
How to troubleshoo …
2
votes
7answers
171 views
Why do Perl string operations on Unicode characters add garbage to the string?
A quick question for a change.
Perl:
$string =~ s/[áàâã]/a/gi; #This line always prepends an "a"
$string =~ s/[éèêë]/e/gi;
$string =~ s/[úùûü]/u/gi;
This Regex should convert " …
0
votes
2answers
57 views
iPhone Simulator hangs after first touch
The application will stop responding to any touch events after clicking on either button. (Controller#increase / Controller#decrease methods).
Here is the output of the console on …
0
votes
1answer
31 views
Remove Spket Perspective from List in Eclipse
Hi:
I uninstalled the Spket plugin from Eclipse, but there is still an "<Spket IDE>" perspective in the Perspective list. How do I get rid of it? I've made sure there are …
0
votes
5answers
87 views
What have your ASP.Net MVC deployment experiences been?
I've been waging a bit of a battle with MVC recently, trying to get it deployed and working correctly on my web host server. While the host (ixwebhosting) has been very prompt and …
0
votes
1answer
76 views
Trace/BPT trap with Python threading module
The following code dies with Trace/BPT trap:
from tvdb_api import Tvdb
from threading import Thread
class GrabStuff(Thread):
def run(self):
t = Tvdb()
def main():
…
1
vote
3answers
89 views
ByRef and ByVal in VBScript
I'm facing something weird in VBScript. When writing a procedure where I want the parameter to be passed by reference, the way of calling this procedure changes the way the paramet …
1
vote
1answer
99 views
MySQL query gone wild!?
Can anyone tell me why the following is happening, and how to fix it?
I have a MySQL query with an ORDER BY clause that looks like this..
ORDER BY (did_voteup-did_votedown) DESC, …
20
votes
22answers
782 views
“Works on my machine” - How to fix non-reproducible bugs?
Very occasionally, despite all testing efforts, I get hit with a bug report from a customer that I simply can't reproduce in the office.
(Apologies to Jeff for the 'borrowing' o …
0
votes
1answer
49 views
C#/.NET - Help, I have only three classes in my System.Web namespace..
I discovered the problem when I got a suggestion to use the System.Web.HttpUtility class for a certain task.
Looking at the documentation, I should have about 50 classes in System …
0
votes
3answers
48 views
dotnetnuke up and running error
Hi, I developed a DotNetNuke application and hosted it on a web server. When I browse the site, I am getting the following error:
Server Error in '/' Application.
Runtime …
2
votes
1answer
93 views
jquery + intellisense + vs2008 pro fails to load
i use win7 + VS2008 PRO to edit my blog (php) and i can't seem to get this work.
i tried installing the patch (inteli hot fix) but it says no need to install (i have pro sp1) thi …
0
votes
1answer
91 views
Wincrypt: Unable to decrypt file which was encrypted in C#. NTE_BAD_DATA at CryptDecrypt
I am trying to decrypt a piece of a file with wincrypt and I cannot seem to make this function decrypt correctly. The bytes are encrypted with the RC2 implementation in C# and I a …
