Well, upon having tried that in a number of variations I was unable to get it to work. I think I'm going to have to go figure out cursors even though I have tried to avoid them because I heard they are bad for performance. If you still think there's a way to do it with WHILE @@ROWCOUNT > 0 I'd...
Hi,
We had someone that was big on "object oriented" table design where there is an "X" table that basically lets you dynamically add columns to a table. So you have a table like this:
FOREIGN_KEY
FIELD_NAME
FIELD_VALUE
You then do endless left joins against the same table to get all the...
Is there a way to measure text in javascript? I want to determine if the text has overflowed the container and then perform an operation based upon that eventuality. The text is added to the container programatically so I could do the test after that is done.
I was thinking the only way would...
Hi,
We have a legacy app that was originally built on site but, of course, the source code disappeared long ago. Well wouldn't you know it but the sa username and password is hard coded into that app and it isn't very "strong". The SQL database is isolated however, so we aren't too worried...
Cool, I didn't realize a query like that would relate each row with what must be a new select for each in the where clause by doing the co_num = t.co_num. Thanks for that great example.
Hi,
I have a table with company #, items, and dates. An example might be:
co_num | items | dates
--------------------------
1 abc 2007-04-06
1 xyz 2007-04-06
1 ghi 2006-12-18
...
2 jkl 2007-01-01
2 mno 2006-12-18...
I have an Outlook .NET add-in that creates a toolbar and can receive the HWND of that toolbar. Outlook, of course, is unmanaged code. Is there a way for me to add a .NET control to that HWND using some sort of Win32 interop? I'm having trouble knowing where to start looking...
Thanks for any...
Hi,
I'm tring to access my public folders data from MSSQL Server so that I can do joins against the databases other data. I started with using the Exchange OLE DB Provider but got the error:
Could not locate registry entry for OLE DB provider 'exoledb.DataSource.1'
After a little research I...
PHP 5 as ISAPI DLL (seems to be working just fine otherwise).
Primarily it improves performance for people making lots of requests to the server in a row. It just keeps the TCP session alive instead of closing it, so no caches or anything are involved.
When the client requests Connection...
Hi,
I'm running IIS 6 and have persistent HTTP connections turned on as the default. All page requests to the server do persist just fine except for PHP ones. I've turned output buffering on in PHP.ini in case that had anything to do with it, but so far no effect. Any other ideas on what I...
After looking more closely at the log I realized that the warning from the line above that script entry was actually continuing beyond the new line. Someone was attempting to execute a SQL vulnerability against a php file that runs a SQL select statement, but the php file filtered against the...
Hi all,
I have a modest little PHP server running that gets a lot of junk traffic. Recently I noticed that someone had somehow inserted the entire contents of PHPSHELL.PHP into my log file. There was no warning message or date stamp or anything around the entry so it has concerned me as to A)...
Well, here's the solution I ended up with, in case anyone else has this problem. It isn't too bad, actually. Works great in IE and Opera, but for a change Firefox is the odd man out, though the effect is nearly as good there (messes up a bit when things get extra special squishy).
Right, in FireFox the floating div slides under the left content, so different but equally unwanted. I think I see what you're saying about min-width. Suggesting we set a min-width to the browser window in general? A good idea, though to throw another wrench in the works, other than the image...
Position relative didn't change anything. Position absolute for one of the boxes stops them from affecting each other but I still don't get the stopping at a certain width effect.
How would min-width achieve the right effect if it were supported?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.