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!

Recent content by rosn459

  1. rosn459

    Startup Scripts - Novice Question

    I am a newbie to the world of SAN. My question is - is there any way to implement some sort of startup script so servers will come back online in a specific order if power to the SAN is interrupted? If not, is there some way to implement a script once the SAN is back on line to check all the...
  2. rosn459

    CFLDAP timeout not working

    I am using CF7 and CFMX. For some reason, regardless of what I set the timeout attribute on my cfldap tag, the timeout will not work. Can anyone think of a reason this is not working? What is the work around?
  3. rosn459

    Numbers inserting out of sequence

    Thanks so much for the responses. The field is not an identity column. The sequence number is generated in the front end app. There is not a clustered indes on the table. Your questions have sparked something else I need to check - I need to check exactly how the front end app is generating...
  4. rosn459

    Numbers inserting out of sequence

    I have a process that inserts records into a table. One of the fields is a tinyint field. The data in this field is 1,2,3,etc. For some reason, instead of the data being inserted as 1,2,3,4, etc. it might be inserted as 0,89,4,6. This does not happen every time data is inserted into this...
  5. rosn459

    Strange Characters on Document

    When I receive a fax from my .cfm page, both the .tif and .pdf versions display upper and lower case A's throughout the document. Any ideas what could cause this and the solution? This doesn't happen on the printed or displayed version.
  6. rosn459

    Error when attempting to update a table

    SQLDenis, I get my original error of "insert the value NULL into column gItmAmount
  7. rosn459

    Error when attempting to update a table

    I am attempting to update a table. Below is my code: UPDATE tbl_inventory SET amt = (SELECT SUM(CostAmt) FROM InventoryDtl WHERE groceryItm = 1ab0 AND groceryitmkey = 1), gItmAmount = (SELECT SUM(gItmAmount) FROM InventoryDtl WHERE groceryItm = 1ab0 AND groceryitmkey = 1) WHERE...
  8. rosn459

    Formatting a .txt attachment

    I am sending a .txt file from a cfmail tag. I can display the correct formatting on the screen; but I have not been able to successfully format the actual attachment. If I use <table> and <tr><td> tags, they appear on the actual .txt attachment. Here is my code: <form action="mail.cfm"...
  9. rosn459

    First value of option list should always be blank

    cLFlaVA, OMG! Thanks - so simple and right in front of me! Gotta switch back to expresso!
  10. rosn459

    First value of option list should always be blank

    The below script is called from an onChange command. I need the first option to always be blank but it's not. How can I make sure the first option is always blank with the below script? var sub = 0 for (var i = 0;i < ListOne;i++) { if (document.form.ListOne) { var...
  11. rosn459

    Adding dates but omitting Sunday

    Ecobb, Thanks bunches!!!!!
  12. rosn459

    Adding dates but omitting Sunday

    The search function is down and I'd like to resolve this today. If I have a date (today for example) and I want to show the date six days in the future; but, I want to omit Sunday as a day. How would I do this? I've gotten this far: <cfset FutureDate = #dateformat(Today(), 'mm/dd/yyyy')#+6>...
  13. rosn459

    Compound conditions question

    This script runs only if another condition exists. Ex: <cfif Condition Y> <script language="VBScript"> Dim MyVar MyVar=MsgBox("You have entered xyz. Do you want to continue?",292,"Warning") If MyVar=7 Then window.location="returntoform.asp" ElseIf MyVar=6 And...
  14. rosn459

    Compound conditions question

    I have three conditions within a VBScript. For some reason, all three seem to execute regardless of what is selected. (Ex: The e-mail is sent if the user enters no, or yes. I only want the e-mail sent if the value of what the user enters exceeds 50000.) Below is my code. What am I missing...
  15. rosn459

    Printing multiple windows

    I have two forms - FormOne.htm and FormTwo.htm. When FormOne.htm opens, I have FormTwo.htm open (when certain conditions are met). I need to print both FormOne.htm AND FormTwo.htm using the same print button. How do I do this?

Part and Inventory Search

Back
Top