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

    Attachment being converted to TXT

    I got it figured out last night... even though I was waiting for the file to exist, I guess it wasn't quite long enough for NT to let go of the file. I installed a CFX_wait tag that pauses for a second or two before processing. Thanks for your help though.
  2. rdiller

    Attachment being converted to TXT

    I've checked all the forums, and come up with nothing... hoepfully someone can help. I'm generating a PDF on the fly... then I'm looping until the file exists, then attaching it to an email and sending the file. This works about 60% of the time... for some reason occasionally it'll send a...
  3. rdiller

    Dynamic Variable Names

    Need a set of variables... d1_name --> d42_name They will be defined by Records being exported out of the Database. <CFQUERY NAME=&quot;driver&quot; DATASOURCE=&quot;#dsn#&quot;> SELECT * FROM driver WHERE member_id = #Session.member_id# </CFQUERY> This could return any amount of...
  4. rdiller

    oracle 8 and quotes

    it'll only save a portion of the field or it doesn't save at all? I would try to replace the &quot;&quot; with some kind of marker, like a ~ or something, and then when you pull back from the DB, replace the ~ with &quot;. That's what I'd do, if I'm not understanding you, send me an email and...
  5. rdiller

    Javascript Error

    I keep getting an error when I load a CFM that says that an object isn't defined, and it's the JS for the validation for my form. But when I take out validation information, I'm still getting the error. But it's writing to the code for nothing... If anyone has any ideas, or wants me to post...
  6. rdiller

    Define Custom Error Pages

    Hey, We use the <CFTRY> and <CFCATCH> tags to handle any errors produced from coldfusion... something like this... <CFTRY> ...CFM content... <CFCATCH TYPE=&quot;Any&quot;> <CFLOCATION URL=&quot;app_error.cfm&quot; ADDTOKEN=&quot;No&quot;> </CFCATCH> </CFTRY> This will direct any errors to...
  7. rdiller

    Duplicate items in loop

    Thanks dude... you rock. Ryan
  8. rdiller

    Duplicate items in loop

    I'm sending an output from a query, but I only want it to return one instance of each variable... i.e.... FL instead of FL CA FL MI CA MI MI Please assist if possible. Ryan
  9. rdiller

    Getting the value of a dynaminc variable...

    Okay... I really NEED everyones help with this one. I have to request the values for a list of items, there could be 2 there could be 15... so geneterate the form by using.. <CFFORM NAME=&quot;act_pay&quot; METHOD=POST ACTION=&quot;next_page.cfm&quot;> <CFOUTPUT QUERY=&quot;audit_info&quot;>...

Part and Inventory Search

Back
Top