2
votes
12answers
216 views
Select uniques, and one of the doubles
I have a table with columns A, B and C.
Column A might have duplicates.
I need a query that will get me a resultset with unique values in column A, and I don't care which possible duplicate it takes.
…
0
votes
1answer
17 views
Add 2 extra columns to an excel file
LS,
Since the Microsoft ODBC Excel Driver doesn't support ALTER TABLE/DELETE FROM(/UPDATE?) statements, I'm using alternative ways of getting the right data in the right place.
I still have one …
3
votes
1answer
119 views
IB complains that a new window has contents that go off screen
Interface Builder gives me a warning about the set up of my .xib file.
It says, in a dialog called "MainMenu.xib Info",
Object: Window
ID: 21
Type: Illegal Configuration
Issue: This window's …
1
vote
3answers
96 views
mssql_bind empty string converting to NULL
I am currently using SQL Server 2000 Stored Procedures with PHP. Following the PHP doc, I use mssql_bind to assign value of parameters and then execute the Stored Procedure.
The problem is that I got …
3
votes
1answer
72 views
Handling Y2.036K & Y2.038K bugs.
Hi All,
I am currently working on a project with a requirement that our software must operate until at least 2050. Recently we have run into problems dealing with the Y2.036K "bug" in the NTP …
0
votes
0answers
38 views
[JavaFX] changing the content of HBox in Tile
When changing the content of an HBox in a Tile, the Tile elements gets sorted as if it has only two columns. For example, running the following script and clicking the button would display the objects …
0
votes
2answers
107 views
How to make jQuery load() not freeze the page?
When using jquery's load function, the page freezes until it has loaded.
How can I get around that?
I have a script that makes all links load through ajax, into a div in the page. I also made it so …
2
votes
4answers
206 views
What should I do or don’t do to avoid Delphi “push dword” bug.
I found that Delphi 5 generates invalid assembly code in specific cases. I can't understand in what cases in general. The example below produces access violation since a very strange optimization …
1
vote
3answers
1k views
window.location.hash issue in IE7
We have a javascript function that should "move" a page to a certain position using anchors. This function just does window.location.href = "#" + hashName. This works in FF, but not in IE. I tested …
-3
votes
6answers
226 views
For what did you ever need a Workaround [closed]
Many workaround I have encountered where actually just caused by bad code practices or lack of knowledge. But of course, sometimes you just run into bugs, constraints or odd situations when you just …
1
vote
1answer
391 views
Can I disable Firefox’ image scaling with CSS on a per image basis?
There are two occasions on my web page where I don't want Firefox to automatically scale the images when zooming in and out.
Can I circumvent this feature on these images specifically, and have the …
0
votes
2answers
645 views
JavaScript: Change browser window status message
It was once possible to change the message a browser shows in the status bar at the bottom of the window. This functionality has been disabled in newer browser versions due to abuse.
<script …
0
votes
4answers
513 views
NUnit test DateTime without .Net Timespan or DateTime function
What is the c# optimised version of the following, without using .Net's Timespan or DateTime. How would I NUnit test it?
TimeSpan ts = Date1 - Date2;
int numberOfDays = ts.Days;
