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 TouchToneTommy 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: *

  1. stevelionbird

    how to 'toggle' a bit field (0 or 1)

    Hi everyone, I'm looking for a way with one statement to change the value of a tinyint field (named 'is_archive') in a table to either: zero if its current value is one OR one if its current value is zero Is there a way to do this without having to first query the table to get the current...
  2. stevelionbird

    how to access a popup's iframe parent

    I'm trying to modify a js based html editor and what I need to do seems quite simple but I'm having trouble. The editor loads in an iFrame, and the iFrame launches a popup window. Within the popup window, I need to determine the URL of the page that contains the iFrame. I've tried...
  3. stevelionbird

    cfdocument PDF displays links improperly

    ok this one has been burning my brain. If I have html that contains links, and try to output it as a PDF using cfdocument, a huge space and elongated underline beneath the link is always displayed and I cannot figure out how to fix this. To my surprise, I haven't found anyone else complaining...
  4. stevelionbird

    application vs request scope in CFC

    Ok, I've having trouble deciding what would be the most efficient way to have variables accessible everywhere in an application. I'm using an Application.cfc with cfmx 7, so my original idea (to make a deep copy of an application-scoped struct with duplicate() on each request to a...
  5. stevelionbird

    2 CFCs, 2 functions with same name a problem?

    Hi, I was going over someone else's code and was wondering if this may pose a problem. (I'm not sure how CF deals with this internally) Component 1 has a function named FOO. Component 2 has a function named FOO. Component 2 extends Component 1. Will calls to that function simply take...
  6. stevelionbird

    cfhttp 400 err from prod server only

    I'm having a hard time tracing the source of this one ... I'm using cfhttp to retrieve an xml doc via a cfm page. It works fine on the two development servers, but suddenly it does not work on the production server. Instead, it throws the following error: [!]HTTP/1.1 400 Bad Request...
  7. stevelionbird

    variables in stored procedures

    I am passing variables into a stored procedure and want to use one in and ORDER BY clause like so: [COLOR=black yellow] order by paramContactSortBy, c.ID, eg.GroupName; [/color black yellow] however this does not work. Does anyone know why? I know the value of the variable to be valid...

Part and Inventory Search

Back
Top