Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: oppcos
  • Content: Threads
  • Order by date
  1. oppcos

    Odd design makes for odd query?

    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...
  2. oppcos

    Measure text

    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...
  3. oppcos

    SQL Server 2005 and Strong Passwords

    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...
  4. oppcos

    Get only items with max date

    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...
  5. oppcos

    Add control to unmanaged window?

    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...
  6. oppcos

    Accessing the public folder data from LDAP or SQL?

    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...
  7. oppcos

    Persistent HTTP connections

    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...
  8. oppcos

    Security - getting scripts inserted into log file

    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)...
  9. oppcos

    Trouble with text on the left.

    Hi, I've got a requirement to have text float over to the right edge of the browser but stop and not go further than a certain amount of pixels from the left if the browser is resized too small. I've posted an example of the effect (or as far as I've gotten with it) here. Right now it is...
  10. oppcos

    Link ODBC or MSSQL table with MySQL

    Hi all, I've noticed that it is (somewhat) possible to link MySQL or ODBC schemas into MSSQL Server but what I would like to do is link a MSSQL Server table to MySQL so that I can do cross-database joins. Having trouble finding this functionality, however. Does anyone know if there is a way or...
  11. oppcos

    Experts Please: Forgetful IIS 6

    Hi, I'm having a bizarre problem where the session data in IIS is being (seemingly) randomly lost, and often temporarily at that. ASP.Net is storing a cookie on the client that specifies the session ID, but that ID comes and goes as far as the server is concerned. I will click on an ASP report...
  12. oppcos

    Forms design resources/advice?

    I'm struggling with making busy forms look good and flow well. Do you all have advice from a design perspective to help make busy user interfaces more usable and/or do you know of any good resources/tutorials on the web regarding visual design to make forms seem more functional? Thanks for any...
  13. oppcos

    Dynamic view or temp table in Postgres?

    Hi, I'm suffering from some db ignorance. I was trying to do the following in another database and found that I couldn't and wanted to know if Postgres is able. Essentially I'm trying to rotate a table for the purpose of my view. Here's an example. First, I have a table like this: _________...
  14. oppcos

    Trouble with temporary table.

    Hi all, Here's what I'm trying to do. First, I have a table like this: _________ ________ _____ _____ [prime_key] [Field_ID] [Field] [Class] --------- -------- ----- ----- 1 1A 'foo' 'A' 2 2A 'bar' 'A' 3 1A 'tst'...
  15. oppcos

    Authenticating with Javascript?

    Hi, I'm using ssl and Basic Authentication on my IIS website. I need to have my own custom login page however and this authentication is causes a popup. Is there any way to send the credentials via javascript to the webserver when they click login on my form (and are sent to the secure area)...
  16. oppcos

    Securely logging in.

    I'm not sure this is the best place for this, but when I set IIS to require a secured login for a website or folder it prompts the user with a username/password dialog. Is it possible to use a web form and pass these credentials into the folder that is secured so that the login process can be...
  17. oppcos

    IIS maintenance script?

    Is there any way to stop a website from a batch/other-scripting-file temporarily to perform some log maintenance and the restart it in an automated fashion? Seems like it should be easy, but I just can't seem to find the magic bullet..
  18. oppcos

    Strange interop question.

    Hi all, I'm have an unusual problem with a C# console application. I have a legacy application with which I've piped its standard output to my app's standard input and am reading the data from the old unmanaged application with Console.Read(). The issue is that Console.Read() appears to be...
  19. oppcos

    VBScript to VBA question.

    Hi, I wrote a class for use with Outlook Forms that does a variety of behind the scene things and I've been asked to provide the class for an Excel document. Unfortunately, appartently Outlook uses VBScript and Excel uses VBA and from what I understand there is no such thing as a 'Class' in...
  20. oppcos

    VBScript alternative for 'Me'

    Hi, I'm trying to work with classes in VBScript. At the moment, I have an object with a function that searches other objects for an attribute and returns that object. In some cases, it needs to return itself. I tried to assign the return value to 'Me' ala VB, but that apparently isn't...

Part and Inventory Search

Back
Top