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 bkrike 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: MarcDePoe
  • Content: Threads
  • Order by date
  1. 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
  2. MarcDePoe

    CF tag for PB&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...
  3. 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...
  4. MarcDePoe

    problem with parseInt function

    I have a form field with a date in it formatted mm/dd/yy. The field is named LaunchDate, so the below code shows &quot;7 - 9 - 07&quot; for 05/07/01, &quot;6 - 9 - 06&quot; for 05/06/01, but shows &quot;0 - 9 - 09&quot; for 05/09/01! (also for 05/08/01)... For some reason, 08 and 09 are...
  5. MarcDePoe

    Looping thru a CSV

    I need to display the first 10 records of a comma delimited file. Currently, I loop through it #CHR(13)##CHR(10)# delimited. Inside that loop ',' delimited. I know coldfusion treats ',,' as one record, so I replace all ',,' with ', ,' as place-holders for blank records and that works fine...
  6. MarcDePoe

    what does CFHEADER do?

    If a client's browser is set to NOT check for a new/current version of a web-page, can I use CFHEADER to make the client browser NOT use its cached version? Regardless, what does cfheader do? Thanks, Marc
  7. MarcDePoe

    CFexpress support C API?

    Does anyone know if CFexpress supports CFX tags ... I haven't downloaded it yet, but I know it doesn't include cffile, so I was wondering if I would be able to jimmy up a CFX_file. Thanks, Marc
  8. MarcDePoe

    general CF error handling

    Hello all, ok, if I have this right, cferror lets me use a custom template instead of the default CF error output, in which I can use all the nice 'ERROR. variables', but CF will not parse coldfusion tags in this template. ok ... understandable but if I use cftry/cfcatch I can do whatever I...
  9. MarcDePoe

    using cffile to write to network drive

    Can this be done??? I've tried UNC paths AND mapped drive letters ... I keep getting an error: Error: The file could not be accessed. If cffile is incapable of writing to network drives, does anyone know of another means? -Marc
  10. MarcDePoe

    Running exe's from within a cf template

    Is it possible to run a command-line executable from within a coldfusion template? -Marc
  11. MarcDePoe

    Does anyone use CFX tag wizard?

    I need to develop a CFX tag with VC++. I can't find my CF 4.5 CD (moved to new office and burned copy is shot) so I can't reinstall the CFX tag wizard, and the tag wizard is not a project option (obviously) in VC++. I was using it before and I know that basically all I need is 1 file (darn I...
  12. MarcDePoe

    cffile acting weird

    this one is baffling me ... I'm using cffile twice in a loop. <cffile action=&quot;WRITE&quot; file=&quot;c:\data\#counter#.txt&quot; output=&quot;#t_1#&quot; addnewline=&quot;No&quot;> <cffile action=&quot;WRITE&quot; file=&quot;c:\data\#counter#.txt&quot; output=&quot;#t_2#&quot...
  13. MarcDePoe

    using LPTSTR and DWORD

    can someone tell me where LPTSTR and DWORD are defined ... I see them used everywhere and I don't know exactly what they are or the rules on using them. thanks -Marc
  14. MarcDePoe

    can I pass 2 queries to my cfx tag?

    I'm using C++ to write a CFX tag and I have only began to dabble with it. I'm not very familiar with all the CF classes (CCFX...) but I know I can use GetQuery(). must my CFX tag attribute be named &quot;QUERY&quot;, and if so does this mean I cannot pass two queries thru? like a deer staring...
  15. MarcDePoe

    error compiling implementation : Precompiled Header Directive?

    I'm having a problem trying to compile an implementation file and I don't understand this error ... fatal error C1010: unexpected end of file while looking for precompiled header directive does anyone know what this error means? Again Rookie-ly, Marc
  16. MarcDePoe

    need to convert STRING to CHAR *

    I need to create an output object and associate it with a string... For instance: string F2(&quot;\\\\Network\\path\\directory\\file.txt&quot;); ofstream fout(F2); I need string because I build/concat the path dynamically, but I get an error on the second line above. (cannot convert blah blah...
  17. MarcDePoe

    resize window (maximize)

    Can I maximize a browser window with javascript?
  18. MarcDePoe

    file manipulation

    Hello All, OK... There are two words (&quot;building&quot; and &quot;office&quot;) scattered about a document. I must read this file into memory and in a loop, create a temp variable to hold the file contents so I can replace every instance of both &quot;building&quot; and &quot;office&quot...
  19. MarcDePoe

    AHHHHHH!

    Emergency! Anyone know syntax to up the query limit in MySql??? I read manual online but my server spit the syntax back out on me.... I know it's something like this... -O max_allowed_packet-# ....... but what is the number measured in? megs right?? Also, I'm using NT version of MySql I'm lost...
  20. MarcDePoe

    converting query to list

    Is there a way to convert a query result set (one field in it) into a 1-d array? I need a list for criteria in another query ... (WHERE value IN '#list#')] thanks in advance, Marc

Part and Inventory Search

Back
Top