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

    Duplicate database entry when using Firefox but not IE

    I'm using 1.5.0.4 for Firefox. Thanks again, Bruce
  2. bigDaftie

    java error on coldfusion administrator page

    Check this out at http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=98b88caa It says the solution is that ColdFusion MX 6.0 users should install the free ColdFusion MX 6.1 Upgrade. btw - some of the time with those wierd java error messages if you paste the second line i.e...
  3. bigDaftie

    Duplicate database entry when using Firefox but not IE

    Hi there, Thank you so much for all your replies but especially to imstillatwork as this was the problem.... <style> @import url(""); </style> I was going to include another style sheet but never got round to it. Once I had taken this out the problem was solved. Wierd. Thanks again cos this...
  4. bigDaftie

    Duplicate database entry when using Firefox but not IE

    This is the page I call the circuit from which just calls the query to insert into the database, with the additional info we get from this form. <cfoutput> <h3>Adding student: #ff_SURNAME#, #ff_PREFERRED_FORENAME#: #ff_matricNumber#</h3> </cfoutput> <cfoutput> <form action="#request.self#"...
  5. bigDaftie

    Duplicate database entry when using Firefox but not IE

    Oh and I'm not doing any browser sniffing. Just quite a simple query to get some details from one table (name etc.) and then add it to another table.
  6. bigDaftie

    Duplicate database entry when using Firefox but not IE

    I know, it is wierd. I thought I was going mad yesterday! This is the sql <cfset sqlString = " INSERT INTO tds_core (SURNAME, PREFERRED_FORENAME, PRN2, curstatus, disabil, profile_status ) VALUES ('#ff_SURNAME#', '#ff_PREFERRED_FORENAME#', '#ff_PRN2#'...
  7. bigDaftie

    Duplicate database entry when using Firefox but not IE

    Hi there, I'm using Coldfusion 6 and fusebox 4.1. I get a duplicate entry into the database when using Firefox but not when I use Internet Explorer. It's exactly the same code of course! Any ideas? Thanks, Bruce
  8. bigDaftie

    Directory Listing

    Have you tried instantiating the File object with a URI object instead of a String? Or or you already doing this?
  9. bigDaftie

    spacebar shortcut problem with html email from java app

    OK no problem. Point taken about spam. Thanks for getting back to me. Cheers, Bruce
  10. bigDaftie

    spacebar shortcut problem with html email from java app

    Hi there, I'm using javamail to send an html questionnaire that has text areas for users to write sentences in. But when the spacebar is used to put spaces in between words outlook automatically goes onto the next email in your inbox. It's a keyboard shortcut! Outlook express is ok it's just...
  11. bigDaftie

    cascade update problems in Access database using JDBC?

    Sorry, fixed this problem. Was being really silly!! Trying to update table but looking for new changed id number in database rather than looking for old id number first then changing it. Oops, one of those days....
  12. bigDaftie

    cascade update problems in Access database using JDBC?

    Hi there, I'm trying to update a row of data in a table in an Access database from a Java Application. First it wouldn't work because I had related data in other tables. Changed relationships in database so that it will "cascade update related fields". It now allows me to update data that is not...
  13. bigDaftie

    cascade updates in Access database using JDBC?

    Sorry posted this in wrong forum, apologies. BD
  14. bigDaftie

    cascade updates in Access database using JDBC?

    Hi there, I'm trying to update a row of data in a table in an Access database from a Java Application. First it wouldn't work because I had related data in other tables. Changed relationships in database so that it will "cascade update related fields". It now allows me to update data that is not...
  15. bigDaftie

    stop spacebar scrolling when filling in html form in outlook email

    Hi there, I'm trying to send an html questionnaire that has text areas for users to write sentences in. But when the spacebar is used to put spaces in between words outlook automatically goes onto the next email in your inbox. If you go tools>options>other>preview pane and uncheck "single key...
  16. bigDaftie

    JScrollPane, when setting text, how to set scrollbar to the top?

    Thanks for this, I'll give it a try. Cheers, BD
  17. bigDaftie

    DateFormat in Java

    ah yes, ok, that's a MUCH better way!!!!
  18. bigDaftie

    DateFormat in Java

    If you're wanting to avoid checking the int to find out what month you've got ie 11 if statements and 1 else or however you want to handle the 12 months you could do something like this.... java.util.Date date = new java.util.Date(); DateFormat df = DateFormat.getDateTimeInstance()...
  19. bigDaftie

    sharing data between jsp, bean, servlet

    Ok, solved it!! Got the page to call itself, and then forwarded to the servlet. <body> <form method=&quot;post&quot; action=&quot;test.jsp&quot;> <table width=&quot;&quot; border=&quot;0&quot; cellspacing=&quot;&quot; cellpadding=&quot;&quot;> <tr> <td>test</td> <td><input...
  20. bigDaftie

    sharing data between jsp, bean, servlet

    Thanks for getting back to me. I was trying to use the bean because I really like the idea of the lines <jsp:useBean id=&quot;test&quot; scope=&quot;session&quot; class=&quot;servletlesson.TestBean&quot; > <jsp:setProperty name=&quot;test&quot; property=&quot;*&quot; /> </jsp:useBean> It...

Part and Inventory Search

Back
Top