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 Mike Lewis 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: *

  • Users: Markh51
  • Order by date
  1. Markh51

    Problem with multiple Forms

    Thanks, for that... But I know I can use JS to perform waht I want, but I need to steer clear of JS, as it is easy to disable. Regards.
  2. Markh51

    Problem with multiple Forms

    How do I get the following code to work ? <INPUT TYPE=&quot;radio&quot; NAME=&quot;ID&quot; VALUE=&quot;1&quot;>Option 1 <INPUT TYPE=&quot;radio&quot; NAME=&quot;ID&quot; VALUE=&quot;2&quot;>Option 2 <FORM METHOD=&quot;POST&quot;><INPUT TYPE=&quot;submit&quot; NAME=&quot;b1&quot...
  3. Markh51

    Problems with the FORM tag spacing

    Doh, why didn't I think of that :-) Cheers !
  4. Markh51

    Problems with the FORM tag spacing

    Hi, I need to use multiple forms like so: <FORM METHOD=&quot;POST&quot; INPUT TYPE=&quot;submit&quot; NAME=&quot;1&quot; VALUE=&quot;1&quot; CLASS=&quot;buttons&quot;></FORM> <FORM METHOD=&quot;POST&quot;><INPUT TYPE=&quot;submit&quot; NAME=&quot;2&quot; VALUE=&quot;2 similar&quot...
  5. Markh51

    Need help combining tables

    sorry the SQL statement above is supposed to be: SELECT Item.itemID, Item.itemDescription FROM ITEM INNER JOIN Bid ON item.itemID = bid.itemID INNER JOIN Buy ON item.itemID = buy.itemID WHERE &quot;my conditions&quot; ORDER &quot;my order&quot; Oooops :-)
  6. Markh51

    Need help combining tables

    Hi I have 3 tables: ITEM BID BUY This is what I have: SELECT Item.itemID, Item.itemDescription FROM ITEM INNER JOIN Bid ON item.itemID = bid.itemID INNER JOIN Buy ON item.lotID = buy.lotID WHERE &quot;my conditions&quot; ORDER &quot;my order&quot; The problem here is, it will only return...
  7. Markh51

    Selecting CheckBoxes via a text link ?!?

    Thanks guys it worked like a dream, much better than the old script I had. Thanks alot for your help. Regards.
  8. Markh51

    Selecting CheckBoxes via a text link ?!?

    Hi, How do I go about select a &quot;unknown&quot; number of checkboxes ? What I mean by unknown is that the number of checkboxes get determined from the amount of records which are returned from the database. The checkboxes all have the same name but their value is &quot;Dynamicaly&quot...
  9. Markh51

    Help with CFLOCK and session variables

    Cheers Ecobb, you just made my life that little bit easier :) Thanks.
  10. Markh51

    Help with CFLOCK and session variables

    Yeah, I'm using CFMX 6.1. Where did you hear that, beacuse I need to be sure. Cheers
  11. Markh51

    Help with CFLOCK and session variables

    Hi, I have just spent the last 9 months writing a application, to find out that I am supposed to use CFLOCK everytime I set a session variable ?!? I have read Macromedia's docs on CFLOCK, but don't really understand. Can somebody explain why I have to use CFLOCK every time I set a session...
  12. Markh51

    Quick disable buttons onSubmit question for you experts.

    Cheers mate, it worked like a charm. Thanks ;)
  13. Markh51

    Quick disable buttons onSubmit question for you experts.

    I have tried that, but when you click on the button, it DOES disable but the form does NOT submit. This is what I was saying the form must be submitted after disabling the button. I don't want to add: document.form1.submit(); to the JS code either, because my page has to be compatible if the...
  14. Markh51

    Quick disable buttons onSubmit question for you experts.

    I have two buttons on the bottom of my form (YES & NO). Both buttons will submit the form to itself and then determine where to go depending on the button pressed. What I want is to be able to disable both of the buttons when you click YES and continue to submit the form, but just submit the...
  15. Markh51

    Need help with RegExp...

    yes I used the last string. As I said works fine in a JS app but not CF ? Mark
  16. Markh51

    Need help with RegExp...

    It works fine like I said, but it allows me to enter: word$£^$%^&^word why does it let me enter any old crap in between the words ? This only does this in CF, not when it is running as a HTM page with JS ! Mark
  17. Markh51

    Need help with RegExp...

    Lrnmore, If I use your RegExp: /[^a-zA-Z\s-]|(\s\s)|(--)|(\|(-\s))/g it works fine, but when I try to use your expression in ColdFusion it works fine as well but if I enter: word$&*word word, it lets me enter that too, why wont the RegExp work in CF the same as it does in JS ? Thanks
  18. Markh51

    Need help with RegExp...

    Lrnmore, If I use your RegExp: /[^a-zA-Z\s-]|(\s\s)|(--)|(\|(-\s))/g it works fine, but when I try to use your expression in ColdFusion it works fine as well but if I enter: word$&*word word, it lets me enter that too, why wont the RegExp work in CF the same as it does in JS ? Thanks.
  19. Markh51

    Need help with RegExp...

    with what ?
  20. Markh51

    Need help with RegExp...

    Lrnmore, What the hell are the rolling heads in your code supposed to mean ? Mark

Part and Inventory Search

Back
Top