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 bkrike 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: danielhai
  • Content: Threads
  • Order by date
  1. danielhai

    Regular Expression, UBB Code, and Matching Problems

    Hi, I'm trying to mimic the TGML code on here or in UBB -- but I'm having a problem with Regular Expressions matching too much, I thought that the engine would find the first match of an occurence and match it, however it's going to the end of the string .+ and doing the replace there. For...
  2. danielhai

    Simple Math Problem acos / asin?

    Using, Flash MX, creating a randomly generated tree. Seems like my math is just funky. it's creating most of the tree fine, but on some degrees, the branches don't get created right. You can view the fla file here: http://www.404404.com/flash/dantree.html . You'll see that some of the branches...
  3. danielhai

    Creating a mapping within application.cfm

    is there a way to create a mapping within application.cfm? The client I'm working for has two development projects on one server, with /templates/ on one IP mapped to one drive, and I'm trying to get /templates/ on another IP with /templates/ mapped to another area. Has anyone dealt with a...
  4. danielhai

    How to access a collection in CFSCRIPT

    How do i mimic the following code in CFSCRIPT? <cfloop collection=&quot;#Fields#&quot; item=&quot;this&quot;> </cfloop> thanks, dan
  5. danielhai

    how to call multiple properties in CFScript

    hi, i have a script that calls a recordset, and I want to print the recordset value, but it won't allow me to call multiple properties in one go, I have to set a variable, then set another, to get to the third level properties. Is there a way to do this is CF? For example, I want to call...
  6. danielhai

    How to call a Recordset in CFScript

    How do I call a recordset field with the JS in CFScript? I tried oRs.Fields[&quot;RowName&quot;].value but it didn't work? Any help? My code is below ... <CFOBJECT TYPE=&quot;COM&quot; ACTION=&quot;CREATE&quot; CLASS=&quot;ADODB.Connection&quot; NAME=&quot;oConn&quot;>...
  7. danielhai

    Search Engine with boolean operators (AND and OR)

    I was wondering how I would go about creating a search query that allowed for an AND or OR. I've seen it on many search engines, but I can't get the logic right when searching multiple fields. Is there a way in SQL to dp &quot;where columnname1, columname2 like '%string%' and columnname1...
  8. danielhai

    Text file connection string

    How do I open a DSN using a text file? I can't seem to get the connection string right .... thank you.
  9. danielhai

    Session Management

    For some reason I can't get session management to work - i declared the session variable, i even put the cfapplication tag on every page, and my settings in the admin area are correct(i believe). Here's my code: (login.cfm) <CFAPPLICATION NAME=&quot;Security_Test&quot...
  10. danielhai

    What is the CF operator for != or &lt;&gt;?

    I'm new to CF, and would like to know what the equivalent operator to C++'s != or VB's <> is in CF. I've tried: <CFIF variable is not &quot;&quot;> but that doesn't work. I've looked for docs everywhere, but can't find it. I know this is simple ... any help? dan

Part and Inventory Search

Back
Top