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

    Select statement

    the problem is that "like 55" is impossible for the system to understand ... you must code this differently ... Tell me exactly how you want the results to reflect "like" a particluar number. ie 10 more or 10 less than 55, numbers ending or starting with a 5, same double...
  2. MarcDePoe

    Custom Tags

    My bad .. I see now ... awesome
  3. MarcDePoe

    Custom Tags

    custom tags reqire no closing tags &quot;</cf_widget>&quot; ... This page will help a lot http://cfhub.com/advanced/customtags/
  4. MarcDePoe

    multiple file uploads

    I found a great java applet (uses ftp) that runs in a webpage, and is capable of transfering entire directories. http://www.unlimitedftp.ca/uupload/ Thanks for your help, Marc
  5. MarcDePoe

    multiple file uploads

    I need for a user to be able to upload multiple files (30 at a time) with as much ease as possible. ie NOT one at a time. Does anyone know of a way to do this? OR might there be some nice little FTP web interface somewhere that I dont know about? Any help greatly appreciated, Marc
  6. MarcDePoe

    Custom Tags

    It would help to know the error you're getting, but from looking at what code you have here, it seems that maybe it's a recursion problem. You must be careful with recursion and make sure that your flow is correct. ie every time execution &quot;jumps&quot; and continues in a different instance...
  7. MarcDePoe

    SQL Woes

    Is this needed for displaying search results to the user? If you let me know exactly why you need to know which field(s) matched, perhaps I can help you better ... Marc
  8. MarcDePoe

    General CF help

    http://cfhub.com HTH, Marc
  9. MarcDePoe

    using the trim function

    I thought there should be ... never knew there was! Life is now that much better Thanks Marc
  10. MarcDePoe

    CF tag for PB&amp;J

    Can coldfusion make peanut butter and jelly? I downloaded a custom tag called CF_PB ... but I can't find (or think of) any code that can account for the jelly. Perhaps something like this? <CF_PB> Grapes <cfquery name=&quot;JellyQuery&quot; datasource=&quot;Welch&quot;> select Jelly...
  11. MarcDePoe

    BROWSE BUTTON IN CF

    <input type=&quot;file&quot; name=&quot;Attachment&quot;> (make sure in form tag ... enctype=&quot;multipart/form-data&quot;) <cfquery datasource=&quot;[datasource]&quot;> delete from [TableName] where [criteria] </cfquery> HTH, Marc
  12. MarcDePoe

    Passing the select name to an update form

    You need to enclose your options with <cfoutput> HTH, Marc
  13. MarcDePoe

    using the trim function

    katsujinken, Is the variable #Form.Fieldnames# predefined ... or must I define it? Thanks, Marc
  14. MarcDePoe

    using the trim function

    ... also, Any clue about the Mac problem? btw ... it happens only with FORM fields - Marc
  15. MarcDePoe

    using the trim function

    strantheman, I'm not sure what exactly the problem is, but I thought it may have been some Mac problem that everyone knew about but me. The odd thing is that I have a hidden field holding the primary key value (not user input), and when the form is submitted and I try displaying the value...
  16. MarcDePoe

    creating xls file in Server

    oof ... you could always look at an xls file that contains bold font in a simple text editor, try deciphering the jibberish, then append your text along with that jibberish when using cffile. ;) Good Luck, Marc
  17. MarcDePoe

    User not seeing search result

    are your results being displayed in a table? Marc
  18. MarcDePoe

    using the trim function

    I'm not sure why, but when Mac users submit forms on my site, all form field variables on the action page have a bunch of garbage characters (spaces perhaps) appended to them. This is screwing up the &quot;unique-fieldness&quot; of my database. I can eliminate the problem if I use trim() on...
  19. MarcDePoe

    generate attachment in CFMAIL, please help

    You should also check out the CFX_iMSMAIL tag here ... http://coolfusion.com In my opinion, a much better tag. With it you have complete control over all headers which would allow you to do something like this ... <!--- convert message to base64 first ---> <cfset CRLF=CHR(13)&CHR(10)> <cfset...
  20. MarcDePoe

    CFFILE Read By Line

    <cfloop index=&quot;line&quot; list=&quot;#FileContents#&quot; delimiters=&quot;#CHR(13)##CHR(10)#&quot;> #line#<BR> </cfloop> HTH, - Marc

Part and Inventory Search

Back
Top