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

  • Users: soloa
  • Order by date
  1. soloa

    Run Command Line from VB6

    Hi. There is a Shell command that accepts 2 parameters... Shell(PathName, WindowState)
  2. soloa

    Replace a string with a pound sign in it

    Did you try using the ascii code for the hash character like?... <CFSET MyChart = #Replace(Mychart, '<TD bgcolor=' & chr(35) & 'FFFFFF>', '<TD bgcolor=' & chr(35) & '000000>', 'ALL')#>
  3. soloa

    Pop up a message when users are trying to leave the web page

    Using <cfinput tag has a 'required' field and a 'message' field. If you set required=&quot;yes&quot;, upon Submit, if the field is empty, the message will be displayed. The user will need to fill this field before continuing.
  4. soloa

    Javascript/CF Dynamic Form Validation

    You can pass the javascript function the #currentrow#. Inside the function you can use document.Form.elements['qty' + currentRow].value and document.Form.elements['increment' + currentRow].value I hope that helps.
  5. soloa

    Distinct help

    Because you are probably selecting an id field in which that record with that id has a report number. These individual id's may reference a similar report number. Your query will return distinct records, not necessarily reportnumbers.
  6. soloa

    How can I populate value to the tex

    I would suggest using javascript, or else you will need to submit the page and populate the text field with the value of the submit field that way.
  7. soloa

    Deleting form fields

    Thank you for your suggestions. I had an <input type=&quot;text> and I wanted to make it a <select, which did not work using innerHTML. I did resolve my problem though by making the field a select to begin with.
  8. soloa

    Send ing Data

    Also, javascript is case sensitive; so make sure the name of the object being passed is the same case as the name of the select object.
  9. soloa

    Send ing Data

    Try replacing Menu with form.Menu where form is the name of your form.
  10. soloa

    Deleting form fields

    Hi, is there a way I can delete a Form field (if it exists) using Javascript so that I can create a new field with the same name (different type) as the deleted field?
  11. soloa

    trying to close window w/o IE message

    Hi, I only worry about and work with IE, but I just did a search for doing the same in Netscape, and came accross the following. It still works with IE, but I haven't checked it with Netsccape... firstwindow = window.self; firstwindow.opener = window.self; firstwindow.close(); It said...
  12. soloa

    Javascript form validation in ColdFusion form

    Is there any reason you aren't you using Cold Fusions's built in validation? <cfinput type=&quot;text&quot; required=&quot;yes&quot; message=&quot;Please enter Reference's first name&quot; ...
  13. soloa

    trying to close window w/o IE message

    I'm not sure if your question has been answered yet, but here is how I have handled your situation... <SCRIPT LANGUAGE=&quot;JavaScript&quot;> function closeMe() { window.open(yourPage with info); window.opener=null; window.close(); } </SCRIPT> <BODY onload=&quot;closeMe()&quot;></body>
  14. soloa

    Passing values from one list box to another

    All you have to do is have a javascript function accepting the 2 select boxes as parameters. Loop through the first one and if the current item is selected, add it to the second. Set the current item of the first list box value to null and decrement the current counter after adding the current...

Part and Inventory Search

Back
Top