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. bamboo

    Issue quering Oracle DB from ColdFusion

    Thanks much. I will try this. I also found it it was part user error. In Oracle SQL Developer it was not saving my update to the test record via my SQL statement thus the buildings actually were the same. I found I had to update the column manually, then click the 'commit' button to actually...
  2. bamboo

    Issue quering Oracle DB from ColdFusion

    I'm trying to do a simple query in ColdFusion as follows but am not getting any results?? I can do this query directly in Oracle SQL Developer and the results are fine. However when I put the query in coldfusion it's not working? No error, no records returned? I also recreated these tables in...
  3. bamboo

    CF 8/AJAX related select statements help

    I've looked at Ben Forta's example: http://www.forta.com/blog/index.cfm/2007/5/31/ColdFusion-Ajax-Tutorial-2-Related-Selects and can't seem to get this simple tutorial to work on my local machine. I'm running CF8 Developer edition. I'm just cutting and pasting his code and trying to run the page...
  4. bamboo

    document.form.action validation problem

    I need to be able to control the document.action via a validation of a radio button. So if a particular radio button is checked, then it sets the document.form.action. I validate other fields before this, but this is the last thing in the function. Here's a simple example to explain what I'm...
  5. bamboo

    Deleting file using <cffile> not working

    Hi Falconseye. Thanks for the feedback. What do you mean by "get"? I have read/write access to the share on the Web server and can cut/copy/paste/delete manually. As far as <cffile> I have only used action="upload" which works.
  6. bamboo

    Deleting file using &lt;cffile&gt; not working

    I have a form that allows a user to upload a file to a folder on the host webshare. This works fine. I can also use <cfdirectory> to view the files from that folder. However, when trying to delete I get the error that the destination is invalid. I worked with our admin who setup the CF service...
  7. bamboo

    Dynamically checking checkbox with onFocus textfield

    My apologies. It should just be: if (url == "frmSet_search_for_name.cfm?nameField=ispart_OpsName&frmName=frmParties& nextField=part_EHD") {document.frmParties.part_EHD.focus(); } So the code here is working fine. I just need to know what I need to adjust/add to also make the...
  8. bamboo

    Dynamically checking checkbox with onFocus textfield

    I have a series of checkboxes and an input text field next to each one. I have a js search pop-up window that opens when a user clicks in the text field. This works fine, however I would also like the checkbox next to it to automatically be checked at the same time. The pop-up works fine...
  9. bamboo

    ODBC Socket DSN not working in CF7

    Thanks for the help Phil. In the Logins I see BUILTIN/Administrators and sa. Would I just right click Logins and add 'new login'?
  10. bamboo

    ODBC Socket DSN not working in CF7

    Where would I check for that exactly?
  11. bamboo

    ODBC Socket DSN not working in CF7

    Ya, I'm still getting the same error. I don't get it? I've been searching online for any type of troubleshooting. I'll double check the Adobe site again to make sure I've got all the correct patches/updates, but I'm sure I do. My work laptop that is working fine is running 7,0,2,142317 and my...
  12. bamboo

    ODBC Socket DSN not working in CF7

    Thanks for the reply ECAR. Yes, everything is spelled correctly. I'm pulling from the Region table in the Northwind (default) database. I see the table in my (local) database and everything. <cfquery datasource="Northwind" name="qryTest"> SELECT RegionDescription FROM Region </cfquery>...
  13. bamboo

    ODBC Socket DSN not working in CF7

    I'm trying to connect to the default Northwind database in SQL2000. The DSN connection in CF Admin connects fine. However, when I try running my page (locally) I get the following error: Error Executing Database Query [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server...
  14. bamboo

    Flash Forms for multipage form submission

    Thanks all for the information. My co-worker tried building a simple flash form and said he never got it to work properly. I believe he ran into similar issues you've stated above. Anyhow after talking few other developers in the company I decided to go the session variable route as we've done...
  15. bamboo

    Flash Forms for multipage form submission

    I will be developing a multi-page form for the first time and was wondering if Flash Forms would be the recommended way to go or if I should go a different route. I read a handful of past threads and learned there were some problems with the file upload as well as with the checkboxes. These...
  16. bamboo

    Looking for a good free message board website

    One of the player's parents actually uses the phpbb for another club. We ended up going with the Google Groups (beta) and it's working out great so far.
  17. bamboo

    Looking for a good free message board website

    My customer wants to add a message board for their soccer team website. I know there are a ton of free messaging boards out there to use, but was wondering if anyone had any recommendations. It needs to be secure to only the team members and their family/friends. Thanks.
  18. bamboo

    select and radio button validation

    Ya I got my test function to run by popping up an alert. However I'm still trying to figure out how to make a radio button checked. Here is a sample of my js function: if(document.myform.selectedIndex == 2 && document.myform.theradio[0].checked) { document.myform.theradio[1].checked; return...
  19. bamboo

    select and radio button validation

    I have a simple form with text inputs, drop-downs and radio buttons. I have all the validation working properly except for a drop-down and radio button. When a user selects a particular option from the drop-down I want a radio button to be checked on the next step. I can do this when the user...
  20. bamboo

    Validating first character in a form text field

    Thanks Tsuji! I really appreciate it. I'll try this out today and let you know how it goes.

Part and Inventory Search

Back
Top