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 Mike Lewis 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. jgroove

    Query transactionID using urltoken???

    Kristine, I will try to make an asumption and if I am incorrect please correct me. You have multiple forms on multiple different webpages that a user would fill out and submit into the database all within the same session. If in your buisness rules/logic, you do not want incomplete forms...
  2. jgroove

    Dynamically Driving Org Charts from a Staff Directory

    Carl, I will take a stab at it, i won't gaurentee anything, but i will try. if i had complete control i would use cfmx, flashmx and cfc's, but I will try work within your contraints. how about a cfmx, flash 5 and wddx sort of application? i think this is a pretty cool idea and will try my...
  3. jgroove

    Dynamically Driving Org Charts from a Staff Directory

    this seems like a fun little project! can you give more details? what sort of server enviroment are you using coldfusion version and operating system? what client constraints do you have? can you use flash(which version)? javascript(which browser)? java(which jvm)? straight html? aprox...
  4. jgroove

    Changing from CF4.5 on NT to CFMX on Linux

    I am all for moving away from NT to another enviroment. But I would read this thread over at the MM forums if you plan on moving to Linux. http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=10&threadid=415411 jgroove
  5. jgroove

    ColdFusion 5 VS ColdFusion MX

    If I might add to what Carl has said. Since Coldfusion is now based on top of a J2EE server this means that your cfm pages are executed vs compiled. The first time a webpage is requested via the webserver it is compiled into java bytecode and executed. Each additional request(provided you...
  6. jgroove

    concatenating multiple rows into one record/column

    I am having a hard time writing queries after I have normalized my db to the 3nf, before I would place multiple values in a comma seperated list into one column, which made it impossible to work with the data. normailization has helped out tremendously in the application, but now i need to...
  7. jgroove

    normalization - too many records returned

    thank you for your response. the benifits that we are reaping from normalization far outwieghs this problem. i was just checking to see if i could fix this with sql before i moved it to the logic. jgroove
  8. jgroove

    normalization - too many records returned

    I have been working on normalizing a bunch of table that I have. The problem is that now that I have all the data in a bunch of different tables, when I join them on a select I am not getting exactly what I want. example the problem is I took all the actors out of the movie table and moved...
  9. jgroove

    prevent from opening db into the form

    i am trying to fix an access application that was created a long time ago in access 97. After recieving the file I imported it into 2002 and everything seems to work fine. I can't seem to get started though because i can't get passed the forms. When I open the mdb file it takes me straight...
  10. jgroove

    Regular Expression help

    I am trying to build a regular expression that will let me change text between to comments on a webpage. I have a large textarea that users can type in information about a webpage then I want to be able to write that infomation into a template that I have. The start of the text is <!--...
  11. jgroove

    Finding Differences between 2 tables

    I am not sure if this is the query that you are looking for, but it will look for records that are in one table and not in another. Let me know if it isn't what you are looking for and I can try to help you find a solution. <cfquery name=&quot;getdiff&quot; datasource=&quot;mydb&quot;>...
  12. jgroove

    Text formatting

    ITGL, Regular expressions work really well on manipulating text. Try using these before you print out your textfield. <!---Replace Carriage Returns with paragraph tag---> #REReplace(TextField, CHR(13), &quot;<p>&quot;, &quot;ALL&quot;)# <!---Replace LineFeeds with line break tag--->...
  13. jgroove

    ListQualify and IN clause

    tlhawkins, thanks for the idea, but it didn't work. Maybe you can help me out with another solution. Here is what I am trying to do. I have a select form field where you can select more than one option. I need to be able to find all of the &quot;trainers&quot; from the db based on the...
  14. jgroove

    ListQualify and IN clause

    I am using CF5 and oracle 7.3.4 and I am trying to create a query with an IN clause in it. I have done this many times using the same technique but now it is causing me great pain. Here is my code: <cfset session.Event.selTrainerID=ListQualify(session.Event.selTrainerID,&quot;'&quot;)>...
  15. jgroove

    NT Authentication

    I am trying to write a Coldfusion Application that is sitting on a solaris box running apache. I am trying to figure out is there a way to authenticate to an NT 2000 server. Active Directory is NOT installed, so I can not do an LDAP query. Is there a way using IAS somehow?? I have have read...
  16. jgroove

    DateCompare

    NHRockwell, There are many different ways of accomplishing this task. The easist might be a function called DatePart that takes two arguments. The first is the datepart you are looking for and the second is the date. It looks like this DatePart(datepart,date) possible dateparts are...
  17. jgroove

    DateCompare

    *bangs head on desk* Thank you for pointing that out. The problem is that I had a <cfif DateCompare(StartDate,EndDate)> later in the page and when I changed them, I didn't realize they were opposites and kept changing them back and forth. I knew something was amiss. D'oh!!! it has been...
  18. jgroove

    DateCompare

    I am trying to test whether the enddate is less than the startdate. I am using the date compare function and it is not returning what I expect. Here is the code that I am using: <cfset StartDate=CreateDate (form.selStartDateYear,form.selStartDateMonth,form.selStartDateDay)> <cfset...
  19. jgroove

    CF 5.0 on Linux

    We use the Enterprise version running on a Solaris for our production server. It took a couple of installs to get it tweaked just right. My suggestion is to understand all the of services that you will be using before install i.e. smtp, LDAP(iPlanet is the only one they...
  20. jgroove

    passing form objects in a function

    sooo....if I want to use the function that I created... I could do something like this??? <script language=&quot;JavaScript&quot;> <!-- function ChangeCharacter(textareaobj,remainingcharobj) { MAX_LENGTH = 2000; remainingcharobj.value= 2000 - textareaobj.lenght; if ( (...

Part and Inventory Search

Back
Top