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 strongm 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. dinoviapangea

    Query text file with paragraph entries

    Didn't work. I still get the same error. I thought for sure TEXTQUALIFIER="""" would work. Any other suggestions. Thanks, Dino
  2. dinoviapangea

    Coldfusion Mail Form Problem

    I'm not sure if the code you provided is exactly what you have coded. If it is make sure that the <cfmail> tag is open until all the attributes are defined as below. <cfmail from="#form.emailaddress#" to="david@widget.com" cc="customer@widget.com"...
  3. dinoviapangea

    Query text file with paragraph entries

    I have the following pipe delimited text file called temp.txt , name|date|comment "John Doe"|"22-Apr-08 10:21"|"This is a text file entry. This is a new paragraph in the comment field." I'm trying to query it with the following query, <cfhttp method="Get" url="file_path/temp.txt"...
  4. dinoviapangea

    Displaying a specific line of text, knowing the line number

    I'm a novice Unix person so please bear with me. I have a text file and I know what line I want to display. Say I've created a variable $line that equal a certain line number. I want to display just the line $line. I've tried the following but kept getting a sed: command garbled: set file_row...
  5. dinoviapangea

    Launch popup window while going to next page.

    I want to open a popup window while linking to another page. As follows, <CFOUTPUT> <FORM NAME="temp" ACTION="temp2.cfm" method="POST" enablecab="No"> <input type="submit" name="test" value="Next Page" > </FORM> </CFOUTPUT> When the user clicks on the form link, I not only want them to go to...
  6. dinoviapangea

    Extracint various urls from a string

    Just realized that a coldfusion script/code is somewhat doing what I want above. Something is highlighting the urls. Any suggestions? Thanks, Dino
  7. dinoviapangea

    Extracint various urls from a string

    I'm trying to extract a list of urls from a string, as below. I can use Find, but that only gives me the position of the first occurance. I need some code to grab the whole word/url of all occurances. Any help would be appretiated Sample String: This is an example text file with various...
  8. dinoviapangea

    Find field names in table

    Is there a way or tag to find out the names of the existing fields in a table if unknown? Thanks, Dino
  9. dinoviapangea

    Count how many lines in a text file

    How can a get the number of lines in a text file? The file may or may not be a queryable file, just any text file. Any suggestions would greatly be appreciated. Thanks, Dino
  10. dinoviapangea

    Action on Selected Pulldown

    Got it. Rock On!!! Thanks,
  11. dinoviapangea

    Action on Selected Pulldown

    Nothing happens. I'm wondering if the .cfm in "document.Next_Page.cfm.submit();" is affecting it. <Form Name="Top_Page" Action="Next_Page.cfm" Method="Post"> <Select name="item_id" onchange="document.Next_Page.cfm.submit();"> <OPTION Value = "1" >#item_1_name# <OPTION Value = "2"...
  12. dinoviapangea

    Action on Selected Pulldown

    I have a pulldown menu as below, <Form Name="Top_Page" Action="Next_Page" Method="Post"> <Select name="item_id"> <OPTION Value = "1" >#item_1_name# <OPTION Value = "2" >#item_2_name# <OPTION Value = "3" >#item_3_name# </Select > </Form> How can I have the form submit when a user...
  13. dinoviapangea

    Replace text in text field when new text is typed.

    I have a text field such as below, <input type="text" name="email" value="Enter an email" size="40" maxlength="100"> I want the "Enter an email" to disappear when a user begins to type their email address. Thanks, Dino
  14. dinoviapangea

    reset single text field

    You guys are great. No I'm wrinkle free. Thanks alot, Dino
  15. dinoviapangea

    reset single text field

    Works great. The last wrinkle. How do I use an image instead of a Javascript button? Thanks, Dino
  16. dinoviapangea

    reset single text field

    Works great. One more wrinkle. What if I have the following, <Form> <input type="text" name="text_1a"><input type="text" name="text_1b"><input type="reset" value="clear"<br> <input type="text" name="text_2a"><input type="text" name="text_2b"><input type="reset" value="clear"<br> <input...
  17. dinoviapangea

    reset single text field

    I have multiple text fields in my form like the following, <Form> <input type="text" name="text_1"><br> <input type="text" name="text_2"><br> <input type="text" name="text_3"><br> </From> How can I put a reset button that will reset only that text field? Such as <Form> <input type="text"...
  18. dinoviapangea

    npasswd compiled for IRIX

    Has anyone successfully compiles npasswd for IRIX 6.5? I'm trying but can't quite get it yet. I figured someone else might or should have done it by now. Thanks
  19. dinoviapangea

    Check max length of text field

    It worked. Thanks a lot.

Part and Inventory Search

Back
Top