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 SkipVought 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. stilllwaiting

    Count group increments when using <cfoutput> with group specification

    Hello everyone. I have a query which joins several tables. Orders & OrderItems I use <Cfoutput Group="OrderID"> which is the primary key for the Orders Table. Then I use the nested Cfoutput Tag to display the Items for each order in a neat list. ORDER 1 Product 1 Product 2 ORDER 2...
  2. stilllwaiting

    Session Is Invalid

    Hello everyone, I've searched the forums for this for some time, and can't find a fix. We switched to Cold Fusion 7 from Cold Fusion 5.5 about six months ago. After the switch, we were hammered with a few hundred "Session is Invalid" errors. After a brief web search we found the culprit was...
  3. stilllwaiting

    Autosize text to fit defined area

    I'm trying to update a current application. The application I have now allows a user to type text into three separate text boxes which will display automatically in a preview area. As they enter text into these three text boxes, the application automatically resizes the text to make it as...
  4. stilllwaiting

    Dual boot XP WIN 2000 problem

    Thanks for all the suggestions Linney and wolluf. Very helpful. Seem to have gotten it sorted out. Not sure which fixed it, but in case anyone else is having a similar problem, I used the recovery tools to run the following. Per Linney's suggestion: ChkDsk /r Fixmbr and for good measure...
  5. stilllwaiting

    just though of a potential problem...

    I agree with bombboy, that you should use session information in your queries, and only set the session information once you've verified a user/password combination. If you really need to store the user info in a cookie, store the password info as well, and make it a practice to always verify...
  6. stilllwaiting

    Dual boot XP WIN 2000 problem

    Hi, I'm trying to setup my system to dual boot Win XP and Win 2000 for testing purposes on a particular project I'm working on. I've set up a dual boot system multiple times in the past with no problem, but for some reason, this one's giving me trouble. I followed all the rules, I created a...
  7. stilllwaiting

    Possible to Pass Form Data to SQL Statement?

    You can use a variable from any scope to define your datasource. Something I usually do to make things easier on the switch from a development ds to a live ds (without having to go through each page and change the datasource tag by hand) is to create a variable in the application scope in your...
  8. stilllwaiting

    width 100% forces page width to be greater than screen in IE

    tviman: odds are it's #2 on your list...problem is there's a LOT of code to find one little html error in. HelloMike: Thanks for the idea...tried it...didn't seem to fix the problem. Odds are the problem is elsewhere in my code. Decided to go witha temporary workaround of just making the...
  9. stilllwaiting

    width 100% forces page width to be greater than screen in IE

    Hmm...you were right, that doesn't quite do the trick either. If I remove the width tag the page displays fine, except the top left cell becomes too wide, which I don't understand, since I've speicified the width. It's very frustrating.
  10. stilllwaiting

    width 100% forces page width to be greater than screen in IE

    Thanks for your quick reply! I tried the new tag (which I think I'd tried somewhere in my many hours of trying to fix what should be a relatively simple problem) with the same results. I honestly don't get it. I've used this technique hundreds of times before with no problem. If anyone has...
  11. stilllwaiting

    width 100% forces page width to be greater than screen in IE

    Here's my situation. I have a table with 3 cells. Top left contains my logo. Top right contains navigation. Bottom has a colspan of 2 and contains the site content. The logo has a specific width. I specify in the cell that I'd like the cell to be the exact same size as the image. I want...
  12. stilllwaiting

    Comma delimited list query find

    Wow...worked like a charm. Thanks for the super-fast reply.
  13. stilllwaiting

    Comma delimited list query find

    Afterthought: I'd thought of searching, instead, for where Comma_list like '%ID1,%' However, if it's the last element in a list, it won't pick it out. Ideally, I'd just make it so the list ended with a comma from the beginning, but I don't have control over that side of the process...and am...
  14. stilllwaiting

    Comma delimited list query find

    Hi there. I am building an app. using ColdFusion along with Mysql. I need to create a select query that checks if certain Element ID's are contained in a comma delimited list which are stored in the MySQL database. Normally, this would be easy, just something along the lines of: select *...
  15. stilllwaiting

    How To Replace Double Quotes with Single Quotes in String

    Actually, I found that you need to put replace(str, '&quot;', &quot;'&quot;, &quot;ALL&quot;) Can't declare double quote with double quote. You have to use single quotes around the double quote. Hope this helps Joe
  16. stilllwaiting

    Email procedure error--TCPConnection

    I get the first error >SQL> @test_mail >stat 1 >error ORA-29540: class oracle/plsql/net/TCPConnection does >not exist I tried your suggestion, and I'm having a heck of a time installing the initjvm.sql file. If there's any othere ideas on what else I might need, I'd appritiate it.
  17. stilllwaiting

    Email procedure error--TCPConnection

    I've been trying to build a simple Email procedure in Oracle 8.1.6 I've installed the utl_smtp and related packages, and built the procedure via the instructions in the utlsmtp.sql file and advice given in a different thread. However, when i try to run it I get this error. ORA-29540: class...

Part and Inventory Search

Back
Top