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 malibu65k

  1. malibu65k

    Trying to use Javascript to hide/show several textboxes with checkbox onclick

    I can Hide/Show the first set of fields but not the second set. I've search the internet to only find several examples of just showing hiding 1 text box. I've used the <div> tag before with the JavaScript toggle to show/hide while developing another site and it works great, but because of the...
  2. malibu65k

    Hide/Unhide div using Radio button onClick

    I found the issue after some removing and added back sections and pieces of code around the Radio buttons. The culprit was the class="grey" in <input type="radio" value=1 name="decision" class="grey" onClick="hide('hideThis');"> It was the onClick event that wasn't working because of that piece...
  3. malibu65k

    Hide/Unhide div using Radio button onClick

    Still not working. No errors! Works in the Tryit Editor on the w3schools website. Just can't get it to work in my ColdFusion page.
  4. malibu65k

    Hide/Unhide div using Radio button onClick

    I've been trying this for days. JavaScript isn't even firing. Any Suggestions?? I'm using it with Coldfusion. <script language="JavaScript" type="text/javascript"> function hide(divToHide) { var me = document.getElementByID(divToHide); if (me.style.display ==...
  5. malibu65k

    Does windows server 2008 r2 replace windows 7 when asked to upgrade windows?

    Thank you. I've reading about Virtual Machines and I think I will try that.
  6. malibu65k

    Does windows server 2008 r2 replace windows 7 when asked to upgrade windows?

    Hi Everyone, I am trying to install a 180 day trial version of windows server 2008 r2. When I try to install it, I get 2 choices, 1 asks to Upgrade: Upgrade to a newer version of windows and keep your files and programs.... The other is Custom(Advanced): Install a new copy of windows... I...
  7. malibu65k

    DLookUp finding wrong records - record doesn't even exist

    Hi All, I've been at this for a few days using several DLookUps. DLookUp is finding a record ID for a record not even in the table. ReqNo = 23a21 and SPID = 11 ReqNo 23a21 doesn't even exist in the table I cleared RQID beforehand to be sure nothing is in it What am I doing wrong? Code...
  8. malibu65k

    Trying to remove a date in a table

    Hi All, I have an issue where I was asked to remove a date on a record. A task was closed in error and now needs to be reopen but the date needs to be removed. Any help would be greatly appreciated. Thanks, Kathy
  9. malibu65k

    Show a button on a page based on query results

    I need to show a button on a page depending on query results. This is already existing code I am trying to modify. Is the following example correct? Thanks in advance... <td bgcolor="#FFFFFF"><div align="center"> <cfif UserID.Name is “ABC” OR UserID.Name is “XYZ” OR UserID.Name is...
  10. malibu65k

    How to update data on production via backend

    Government budget constraints won't allow an upgrade to an sql server. Although it would be smart, we have about 2500 users in a table of which more than have no longer work for the program and the half are active users but only about 20-50 active users in a day. I have no means of updating...
  11. malibu65k

    How to update data on production via backend

    I created a DSN but I don't know how to link it from within ColdFusion administrator. But I may try that again and research on how to link to it as well. But I am using Access 2007 so I wonder if that makes a difference in being able to use a DSN.
  12. malibu65k

    How to update data on production via backend

    That's the problem. I'm not authorized to make modifications to the ColdFusion app to update/change the data. I'm a programmer but contract issues don't allow me to code. This problem would be so easy to fix if I could. :)
  13. malibu65k

    How to update data on production via backend

    We have a ColdFusion web application that uses an MS Access database. Once in a while when I open the database to fix data, which shouldn't need to be done but the way it was written it's currently the only way, the website will go down. I've had it open for hours removing profiles that are...
  14. malibu65k

    error - ColdFusion ODBC Server service is not running or has not been installed

    I keep getting this error tying to set up a datasource in ColdFusion. "The ColdFusion ODBC Server service is not running or has not been installed. You may also use the "MS Access with Unicode" driver to connect to MS Access datasources." I opened the data source in ColdFusion administrator...
  15. malibu65k

    cfwindow or javascript popup

    I'm new to coldfusion and I've been tasked to create a popup disclaimer that a user has to acknowledge before he/she can proceed. This popup will show up based on a user's level of access. What is better to use to create this type of popup, cfwindow or a javascript popup?

Part and Inventory Search

Back
Top