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

    cftransactions nested in cfinvoke

    Hi, the situation is: I've got a block of code that uses a cftransaction - and inside the cftransaction tags, I have a cfinvoke. The function I call with the cfinvoke also uses cftransaction tags - so techically I have nested the cftransactions - but they are in two different functions. So put...
  2. cash0

    SQL statement max size

    Hi, I'm having problems with the length of SQL statements. I have a string of xml that can be very long - the problem is that the xml string is getting cut off at the 64000th character when I create the SQL statement. The following is ColdFusion code. For those not familiar with ColdFusion -...
  3. cash0

    WDDX Max Size?

    I'm having trouble with truncated wddx packets. The error message is usually something like: "WDDX packet parse error at line 1, column -1. End of entity not allowed; an end tag is missing.. " The problem is that the wddx xml string is getting truncated. So decided I count the number...
  4. cash0

    CF equivalent of response.clear

    Is there an equivalent ColdFusionMX command to response.clear in ASP? I have an error handler function that displays an error message when an error occurs. But, since the error is likely to occur half way through processing the page, some page output is likely to have been processed ready to be...
  5. cash0

    Create node and attribute

    This may be easy but I'm damned it I can find a solution. I need to create a node with an attribute. Here's my code so far for creating the node: Set currentElement = objXML.documentElement Set currentElement = currentElement.selectSingleNode("/cv/Experience") Set inode =...
  6. cash0

    FreeThreadedDOMDocument problem

    Hi, I'm having trouble instantiating the MSXML2.FreeThreadedDOMDocument.4.0 object from asp. It claims that the class string is invalid, but my server HAS xml parser 4 on it, so it should work - shouldn't it... Any ideas?
  7. cash0

    Specifying < > = in parameterized query

    I have an access query that I call from ASP with the following where clause: WHERE level = [CompLevel] Now, I have a drop down box in which the user can specify 'less than', 'greater than', or 'equal to' a certain value. I want to know how I can pass in < or > or = into the above WHERE clause...
  8. cash0

    LIKE clause in Paramatized query (from ASP)

    Damn it! I solved my own problem before I got through typing it out. I thought I'd better post it anyway in case somebody else had the same problem. I solved it by using % instead of * in the LIKE clause.The original question is below... ------------------------------------------ Hi I've got...
  9. cash0

    Copy SQL2000 db to SQL7 ?

    I need to know if there is a reliable way to transfer a database created in SQL Server 2000 to SQL Server 7. I purposely did not use any fancy data types as I could see this issue coming up. Thanks
  10. cash0

    Dinstinct results for Full Text Search

    I'm doing a SQL Server full text search, but it is returning duplicate results. I've tried to do a SELECT DISTINCT but it won't work because the page rank is unique for each record. I ORDER BY RANK so I need to select it. Is there a Full Text Search option that I can use to stop duplicate...
  11. cash0

    FIND and replace?

    I'm trying to search my actionScript for some text using the 'find' facility in the movie explorer (in Flash 5). The problem is that it only finds whole words only - I want to seach for all occurences of Õ - which is what you get when you copy text from MS Word containing some so called 'smart...
  12. cash0

    Fireworks 4 text editor bug

    For a while I've been having terrible trouble with the Text Editor in Fireworks 4. For example, if I select some text, change it to bold or whatever and press OK, the text hasn’t changed to bold. There are numerous other weird things that happen as well – mostly to do with changing the...
  13. cash0

    Motherboard voltage too high?

    I've just upgraded to an Asus A7V333 motherboard and have just installed the PC Probe software which tells me all the vital statistics about the motherboard and processor. Now, the problem is that it is telling me that its +12 Volt voltage is too high. It reports that the current voltage is...
  14. cash0

    window.open in Opera???

    I've just discovered that the new windows that I open on one of my websites do not have scroll bars in OPERA5. Here's the code that does the deed: openWindow = window.open('news.asp','newwindow_news','width=567,height=365,scrollbars=yes,resizable=yes'); Works fine in IE and Netscape... Any...

Part and Inventory Search

Back
Top