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

  1. GregLanders

    Extending a Datatype of LONG???

    Thank you, but I found the setting in the ColdFusion Administrator...
  2. GregLanders

    Extending a Datatype of LONG???

    I am using a ColdFusion query, something like this: <cfquery datasource=&quot;#application.dsn#&quot; name=&quot;ins&quot;> insert into tablename (id,longdata_field) values('#createUUID()#','#variables.longdata#') </cfquery> Does this tell you anything?
  3. GregLanders

    Extending a Datatype of LONG???

    How can set a column of datatype long to accept more that 65000 characters. I see in the documentation that this datatype will hold up to 2GB but when I try to stick in more than 65000 characters, the data gets truncated. Anyone know what I am doing wrong?
  4. GregLanders

    Can you interpret this NS6 error???

    Yes it did! Thank you.
  5. GregLanders

    Looking for an application

    You might also want to look at QDForums at http://www.quilldesign.com/qdforums/index.cfm
  6. GregLanders

    Using an IMG tag to execute a script...

    You da Man! Thanks.
  7. GregLanders

    Can you interpret this NS6 error???

    You found what?
  8. GregLanders

    Can you interpret this NS6 error???

    Well thanks any way....I ran an alert on that function in order to the values I posted above... I have a function and variable naming system that works really well for me...(abstraction promotes reusability)...I will keep troubleshooting... Peace. Greg
  9. GregLanders

    Using an IMG tag to execute a script...

    Hello, I am using an image tag to execute a CF script like this: <img src=&quot;abc.cfm&quot; width=0 height=0> IE is nice and forgiving but NS4.x shows a broken image. My reason for trying this is, I want to be able to execute the ColdFusion from any file type, not just a .cfm file. Any...
  10. GregLanders

    Can you interpret this NS6 error???

    The function looks like this: function lib85(var13,var14){ alert(var13+&quot;--&quot;+var14) var15=document.createElement(&quot;DIV&quot;); if(var13) var15.setAttribute(&quot;style&quot;,var13); if(var14) var15.innerHTML=var14;document.body.appendChild(var14); return var15...
  11. GregLanders

    problem loading JS to html file.

    Hey kerenet, Calling an external js file into your doc has no relation to the file size. Where in the HTML doc are you calling the js file? Make sure the script call is being executed before you call the js variables in the external script. Greg
  12. GregLanders

    Can you interpret this NS6 error???

    Hello, I am doing some pretty complex array loops and passing of variables in a script that I am writing.... Works like a champ in IE, but I am getting the following error in NS6.2 and am not sure what to make of it... lib85 is the name of a function on line 64 but that is as far as my...
  13. GregLanders

    Open Source Forums (allaire)

    Here is a great CF forum application... check it out at http://www.quilldesign.com/qdforums/index.cfm
  14. GregLanders

    Finding UNIQUE items in a list...

    What is the most efficient way to return a list of UNIQUE items from another list of items?
  15. GregLanders

    Applying the target property to location.href.....???

    How do you apply the target property to a location.href? document.location.href=&quot;http://www.domain.com&quot;; Such as _blank or _top.
  16. GregLanders

    trying to set up a 3D Array...what am i doing wrong???

    I have messed around with this all weekend and have finally achieved the results I have been looking for. Thank you very much for your reply. Here is my final code: <!--- Initializing an array with 3 dimensions ---> <cfset menuitems = ArrayNew(3)> <!--- Defining the array elements of the menu...
  17. GregLanders

    trying to set up a 3D Array...what am i doing wrong???

    I am trying to set up an array with 3 dimensions and then test it by outputing it with 3 nested loops. Here is my code: <!--- Initializing an array with 3 dimensions ---> <cfset menuitems = ArrayNew(3)> <!--- Defining the elements of the array ---> <cfset menuitems[1] =...

Part and Inventory Search

Back
Top