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 TouchToneTommy 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. cfhelp

    Coldfusion 2016 - Cant find CFX_tags

    Hi, I am using coldfusion 2016. I have registered the cfx tags in coldfusion administer, they are c++. I have added a custom path to point to the directory. I get the below error. The CFX custom tag CFX_TAGNAME was not found in the custom tag database. You must add custom tags to the...
  2. cfhelp

    Multiple Instances of Details in Report Builder

    Hi all, Does anyone know how to create multiple instances of the details section in Cf Report Builder. In Crystal Report we could add many instance of the detail, i would like to do something like that. Is it doable? Thanks for your time.
  3. cfhelp

    How to print a pdf from CF?

    When i had coldfusion 5 /Crystal Report, i had a dropdown option for the user to print the report or just create it as a pdf. This was accomplished by a com object, which i coded. Now, moving to cf mx7 i created the report using the cf Report builder. Here i could generate the report as a pdf...
  4. cfhelp

    How to print a pdf from CF?

    Thats the option we had for crystal report. We would like to stick to it.
  5. cfhelp

    How to print a pdf from CF?

    Hi all, I am trying to use the Coldfusion Report builder to create a report. I have an option for the user to print the report or create it as a pdf. If the user wants to print it,(i think i would create it as a pdf first) is there a tag or a third party tool which would grab my pdf file and...
  6. cfhelp

    Assigning Structure to an Array

    <cfset Temp = ArrayAppend(KeyArray,StructCopy(KeyStruct))> Adding StructCopy worked. Thanks
  7. cfhelp

    Assigning Structure to an Array

    Code: <cfset KeyArray = ArrayNew(1)> <cfset KeyStruct = StructNew()> <cfloop INDEX="i" from="1" to="#Attributes.cq_value_Qry.RecordCount#"> <cfset KeyInnerArray = ArrayNew(1)> <cfloop index="j" from="1" to="#r_cq_keycolumns.RecordCount#"> <cfset KeyInnerStruct = StructNew()> <cfset...
  8. cfhelp

    Query Of Query Conversion Problem

    Hi, I recently upgraded to coldfusion MX 7. I have the following Query of Query Problems. The database is SqlServer. i.I have an integer column, where i try to change the value to a character. <cfset temp = QuerySetCell(Attributes.Query,trans_col_name,trans_value)> trans_col_name - is an...
  9. cfhelp

    cffile

    How do you read a file into a table? Thanks in advance.
  10. cfhelp

    dynamic dropdown box

    tleish, Thanks,that worked perfectly. You are an asset to this community. I have learned tons from lurking about reading your responses. thanks again, cfhelp
  11. cfhelp

    dynamic dropdown box

    I am trying to create a drop down box that will display a list of names from a database. The problem is that there might be many different records with the same name in the database with each record having a uniqueID. Here is the code I have so far. <cfquery name=&quot;qDistrictNames&quot;>...

Part and Inventory Search

Back
Top