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

  • Users: cfdeveloper
  • Order by date
  1. cfdeveloper

    query that returns the top 5 records (most frequently used)kindly read

    Rudy, the explaination given in this thread is right Regards cfcoder
  2. cfdeveloper

    query that returns the top 5 records (most frequently used)kindly read

    >>i know they're related by Issueunique, but i'm not clear on which one is the primary and which one is the foreign The IssueUnique column is the primary key in job_issues table. The jobs table too has a column called IssueUnique which is a foreign key. When logging a new job for the customer...
  3. cfdeveloper

    query that returns the top 5 records (most frequently used)kindly read

    Hello Travid and Rudy, and thanks for replying to my thread. Sorry for not getting back yesterday. Just got in to work. Rudy, hopefully this will make it clearer. I want the query to return the 5 most frequently used issues in a date range that customes have selected when logging jobs. I'm...
  4. cfdeveloper

    query that returns the top 5 records (most frequently used)kindly read

    Hello everybody, I really need someone to help me here. I'm developing a report and stats front-end interface for a job logging system in ColdFusion and SQL Server 2000. I need your help in writing a sql query. I want to get the top 5 issues used when logging a job for a customer from the...
  5. cfdeveloper

    embedding an image in cfmail

    it is an intranet site only accessible to users within the organisation
  6. cfdeveloper

    embedding an image in cfmail

    but I get the prompt and my internet connection is behind the firewall. The project I'm working on is a intranet.
  7. cfdeveloper

    embedding an image in cfmail

    Hello everybody, Is it possible to do this in ColdFusion 6.1? I ask this because the email that is sent via cfmail has a div tag in it with the style background-image attribute and when I try to open the email in ms outlook, I get prompted to enter the username and password. I have XP...
  8. cfdeveloper

    format y-axis in cfchart

    Hi again, I'm just so loosing my focus here. Not knowing how this things works is probably what's getting me all frustrated. Ok, here is what my query looks like <cfquery name="qBar" datasource="testDB"> SELECT CONVERT(varchar(15), dt.dtlogged, 106) AS dtlogged, dt.jobcount, j.jobPriority...
  9. cfdeveloper

    format y-axis in cfchart

    The values displayed on the y-axis are are mix of float and int. The chart displays int values on the y-axis if I use only one cfchartseries tag. The code below calculates the value for the gridlines and scaleto attributes. <cfset...
  10. cfdeveloper

    cfchart and cfchartdata question. Kindly help!

    tried it already. Didn't work. when I output srcto outside the cfchart tag, the value is 88
  11. cfdeveloper

    cfchart and cfchartdata question. Kindly help!

    Hi there, thanks a ton for replying to my query. I have done just what you asked me to. I'm having a problem with the values on the y-axis. <cfset scTo=evaluate(ArrayMax(ListToArray(valuelist(qJobsLogged.JOBCOUNT)))+1)> <cfchart show3d="yes" gridlines="#evaluate(scTo+1)#"...
  12. cfdeveloper

    cfchart and cfchartdata question. Kindly help!

    Hello everybody, I really need someone to help me here. I'm new to charting. I'm developing a graphical interface to report the no of jobs logged in a period. The x axis displays the period (days) and the y-axis displays the number of jobs logged in a given day. The data is pulled from the jobs...
  13. cfdeveloper

    Problems Querying Text File Datasource Using ODBC/Coldfusion MX

    Hi, Just wondering if anyone has experience with using the Microsoft Text ODBC Driver with Coldfusion? The problem I am getting is that the datasource I have to work with is named "account.dat.cgi". I have set up a System DSN on the server for the folder containing this file, and...
  14. cfdeveloper

    Pattern matching in ASP - Kindly help

    Cheers vbkris. Thanks for your help Best regards
  15. cfdeveloper

    Pattern matching in ASP - Kindly help

    function GetCommentsWrapper(txt){ if(REFindNoCase("<(newLog|legacyLog)\b[^>]*>",txt)) return GetCommentsNew(txt); else return GetComments(txt); } I want to display everything between the opening <newLog> or <legacyLog> tag and the closing </newLog> or </legacyLog> tag. The...
  16. cfdeveloper

    Pattern matching in ASP - Kindly help

    here is a working CF code: <cfscript> function GetHeaders(header){ // regexp for timestamp var timestampRegexp = "\d{1,2}/\d{1,2}/\d{4}\s+\d{1,2}:\d{1,2}:\d{1,2}"; var stTmp = StructNew(); var stReturn = StructNew(); // remove *** if necessary header =...
  17. cfdeveloper

    Pattern matching in ASP - Kindly help

    I really need someone to help me here, conehead, if I don't get this done by today, I won't be getting any salary :)
  18. cfdeveloper

    Pattern matching in ASP - Kindly help

    I'm really hoping someone could help me. I am a ColdFusion developer. I'm trying to re-write some CF code in ASP, and am stuck. To give you an overview, I'm working on a job logging system. The customer calls the helps desk to log a job, the help desk creates a new job, adds the comments to the...
  19. cfdeveloper

    regular expressions help - re-writing Coldfusion Code to ASP

    <cfscript> function GetHeaders(header){ // regexp for timestamp var timestampRegexp = "\d{1,2}/\d{1,2}/\d{4}\s+\d{1,2}:\d{1,2}:\d{1,2}"; var stTmp = StructNew(); var stReturn = StructNew(); // remove *** if necessary header =...

Part and Inventory Search

Back
Top