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

  1. ChiefJoseph

    Office Automation compatability

    Ok summer school out so now onto my project agian... The CSV file idea worked great but it turns out professors are stupid and need a full functioning program for step by step instructions. I wrote my dada interpolation program in C++ and allthough vb would probably be easier, im thinking I...
  2. ChiefJoseph

    Office Automation compatability

    Greetings all, Here is the deal, I'm at a university working on a little project that will allow professors to use a text file that is generated after scantrons are ran, and filter this into a excel spreadsheet(for grades). Now the text file that gets generated is all messed up with missing...
  3. ChiefJoseph

    Performance with CustomTags

    Thanks guys, its hard to learn good programming techniques if your not in a group of programmers...
  4. ChiefJoseph

    Performance with CustomTags

    Hey tlhawkins, So, how often do you use custom tags? I'm running into a CF programming technique problem. Is it better to write long CF scripts or modularize “specific tasks” into custom tags. I realize that this probably depends how often your using that “specific task” but do you have a...
  5. ChiefJoseph

    Performance with CustomTags

    Doe's anyone know if you loose a lot of performance time when you use a lot of Custom tags?
  6. ChiefJoseph

    Installation Problems with 4.5

    The CF Service Pack....
  7. ChiefJoseph

    Installation Problems with 4.5

    Have you download service packs 1,2?
  8. ChiefJoseph

    How to join tables from different datasources

    Chief here, First your asking a VERY broad question, try to narrow it down next time. Now are your tables related? if they arent then you will need two <CFQUERY> statements. If they are related, you can refer to them through a join. Now this can be an inner join,outer join, or another that...
  9. ChiefJoseph

    Good Programming Info

    I have the hard copy, but I think they do a web thing to. Just pick it up at you closest book store. I believe the company that publishes this is responsible for the javascipt, java, xml.... developer journals.
  10. ChiefJoseph

    Good Programming Info

    Hey Chief here, If you guys havent got the ColdFusion Developers Journal I highly recomend it. It has some great articles on creating you own tags and such.
  11. ChiefJoseph

    Timing, CF VS PERL

    Does anyone know how much longer CF takes to process compared to Perl. I realize that Perl will be quicker but does anyone know the extent?
  12. ChiefJoseph

    Displaying Cold Fusion Search Query Data in a table

    Try the MOD operator, <TABLE> <CFOUTPUT query=&quot;CategoryQuery&quot;> <CFIF CurrentRow mod 2> <TR> </CFIF> <CFSET CatID=CategoryID> <TD width=&quot;50%&quot;>Hello world</TD> </TABLE>
  13. ChiefJoseph

    Output problem when multiple messages exists

    AHHHHH! I didn't know you could reference a query like this #DateFindQuery.MessageDay# That solved everything, you rock!
  14. ChiefJoseph

    Output problem when multiple messages exists

    I need to call apon the power of the cold fusion gods Heres what i got, <CFQUERY NAME=&quot;DateFindQuery&quot; DATASOURCE=&quot;Callender&quot; DBTYPE=&quot;ODBC&quot;> SELECT MessageDay FROM UserMessage WHERE ((MessageMonth='#mo#' AND MessageDay='#count#' AND...
  15. ChiefJoseph

    &lt;CFSET i=0&gt; &lt;CFLOOP CONDITION=&quot;#

    Hey guys, Heres the deal, I want to dynamically populate an array then output it later. Now my C++ brain tells me to do it this way. <CFSET days=ArrayNew(1)> This is where i populate the array <CFSET n=0> <CFLOOP CONDITION=&quot;n LT endday&quot;> <CFSET days[n]=&quot;n&quot;> THIS IS...
  16. ChiefJoseph

    My query works with no problems, bu

    Sorry not much help, I've had nothing but problems when trying to do a case statement in a query
  17. ChiefJoseph

    My query works with no problems, bu

    Have you tried removing the ; Cold fussion might not like it
  18. ChiefJoseph

    My query works with no problems, bu

    Add the ODBC(or whatever datatype your using) with the query tag. Now what is line 41 pointing to exactly and is BASE_SNAPSHOT_DT another field?
  19. ChiefJoseph

    How to tell if file exists in web directory

    hey strantheman, Will i was writing that cops were storming into my nieghbors across the hall because they had a meth-lab. My mind wasn't very clear. Oh well....
  20. ChiefJoseph

    How to tell if file exists in web directory

    Late night... :)

Part and Inventory Search

Back
Top