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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Azathoth

  1. Azathoth

    IE Table Cell Height Oddity

    Unfortunately, so will aaa, which is what I'm trying to avoid. I guess I'll have to set something up with div tags and absolute positioning...thanks for the suggestions everyone.
  2. Azathoth

    IE Table Cell Height Oddity

    The image idea would work to contrain the minimum height of that table cell, but say the rightmost cell (containing ccc) were to expand in height. Then the upper left cell would still grow. I've thought about ways of getting the height attribute via getElementById of the rightmost cell, but if...
  3. Azathoth

    IE Table Cell Height Oddity

    I'm trying to keep a cell on the top left side of a table a constant size. Unfortunately in IE with the method I'm using, the two cells that are spanned by a td with rowspan=2 become the same size. If you render the blow code in firefox, it behaves the way I want and expect, but not in IE...
  4. Azathoth

    Permissions Through A Browser

    I'm running a php flash content server, and if I'm not mistaken, users viewing my files fall into the "Other" permissions group. I was wondering if through my php code (or any other way really) I could allow users to fall into the "Group" or "Owner" permissions group. The problem is that I...
  5. Azathoth

    Prevent Flash Download

    It's a little harder to sell it that way, unfortunately. So am I doomed on this one?
  6. Azathoth

    Prevent Flash Download

    I'm serving up flash content through an IE browser that I really don't want stolen. I've been able to stop it from caching, or being accessed directly with file permissions. However, there are all sorts of obnoxious programs like "Sothink SWF Catcher" and "Flash Catcher" that have no problem...
  7. Azathoth

    Unique Sessions On The Same Computer

    Cross-browser testing - didn't think of that. Thanks.
  8. Azathoth

    Unique Sessions On The Same Computer

    True, and makes sense. Sure makes it difficult to test though.
  9. Azathoth

    Unique Sessions On The Same Computer

    I'm having some issues testing a login system. I log in a one user, then open a new browser window. If I then call session_destroy, the user who is allready logged in will have his session destroyed. Also, if I log in with a user while another user is logged into the system allready, the user...
  10. Azathoth

    Selecting non-null values

    Exactly...thank you.
  11. Azathoth

    Selecting non-null values

    Is it possible to select all non-null values from a table row and update another table row with them? For example, the table before the statement is run: Id Val1 Val2 Val3 1 3 4 1 2 NULL NULL 5 And after: Id Val1 Val2 Val3 1 3 4 5 2...
  12. Azathoth

    Replacing a string within a text file

    Ok, how about parsing the file, taking each value that I don't want to change, and re-writing them? Then of course, taking the one that I do want to change and altering it? Can this all be done within the same file?
  13. Azathoth

    Replacing a string within a text file

    How would I go about replacing a string in an existing text file? For example, the file example.txt contains: Item1 Item2 Item3 I have no problem iterating through the file and getting each line value, but is there some way to say, replace the value "Item2" with "newItem2" without touching...
  14. Azathoth

    Class Problems

    Apparently I just needed a default constructor in PlaneId...disregard.
  15. Azathoth

    Class Problems

    When trying to construct a class object containing another class object, I get the error: "no matching function call to "PlaneId::PlaneId candidates are: pLaneId::PlaneId(const PlaneId&) PlaneId::PlaneId(const std::string&, int)" Here are my two class files: // File: Planes.h #ifndef...

Part and Inventory Search

Back
Top