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. krisbrixon

    Application.cfm and Many Comments

    that is how I understand it to be. Kris Brixon www.brixon.org
  2. krisbrixon

    Number Extraction Query

    I posted a response on EasyCFM Forum. Kris Brixon www.brixon.org
  3. krisbrixon

    Tightening up codes

    May I ask why you are trying to do this? Kris Brixon www.brixon.org
  4. krisbrixon

    Embeding Coldfusion code on a noncolfusion server

    the xmlhttprequest will not allow requests to different domains. However, read this article. It is what I would call a hack, but it might do what you want. Kris Brixon www.brixon.org
  5. krisbrixon

    Developing CF Sites

    Well, Dreamweaver 8 is newer than Dreamweaver MX, but you don't have to upgrade. You can get the new tag information for Homesite to color code and hint. Another option is Eclipse with CFEclipse plugin. (free) Look at the features of Dreamweaver and see if the new features are something worth...
  6. krisbrixon

    anyone familiar with threeSelectsRelated?

    I have never used that tag, but in javascript if you want to hide something then stick it in a DIV and set the style="display:none;" You would have to add in the logic to check for values then change the display value. Kris Brixon www.brixon.org
  7. krisbrixon

    CSS layout

    Try This Kris Brixon www.brixon.org
  8. krisbrixon

    Custom Tags in another directory

    yup there is a setting in the administrator to map custom tags to where ever you want. Kris Brixon www.brixon.org
  9. krisbrixon

    New to Coldfusion

    What I like the most: - How CF deals with databases, I have never used another programming language that was as DB friendly as CF. What I dislike: - Cost - Prefixing all the tags with <CF... Some resources: cfQuickDocs EasyCFM If you have the money I would recommend CF, I feel it is very...
  10. krisbrixon

    How to keep form variable alive on requery page 2?

    Try this: <td><a href="page2.cfm?sort=#IIF(sort is 1, '2', '1')#&thesite=#thesite#">hltag</a></td> <td><a href="page2.cfm?sort=#IIF(sort is 3, '4', '3')#&thesite=#thesite#">name</a></td> and WHERE site = '#TheSite#' Kris Brixon www.brixon.org
  11. krisbrixon

    Mouse pointer change while query is running.

    Try this: Google: javascript mouse pointer Kris Brixon www.brixon.org
  12. krisbrixon

    update multiple tables

    Take a look at CFTransaction to help with multiple SQL statements. LiveDocs Kris Brixon www.brixon.org
  13. krisbrixon

    decrypting coldfusion

    I had the same problem at one time. One programmer encrypted all his code the last day on the job and no one noticed until a bug was found months latter. cfdecrypt.exe was great for the CF5 code we had. Just copy the code to another machine to decrypt it, don't do it on the production server...
  14. krisbrixon

    How to track record requests?

    I second imstillatwork's idea, that is the same thing that Yahoo and those type of sites do. (check their URLs.) Kris Brixon www.brixon.org
  15. krisbrixon

    general question

    Once you are comfortable with ColdFusion you could look into one of the frameworks: FuseBox Mach-II theHUB Mach-II is not really a beginner framework unless you know OOP. FuseBox 4.x is kinda a lot to deal with for beginners. FuseBox 2 is not bad for beginners. theHUB seems decent for...
  16. krisbrixon

    dynamic flashpaper

    From the following livedoc I would bet that it is possible. The following link talks about converting a word doc into html. Do that, then take the html and convert to flashpaper. livedoc Kris Brixon www.brixon.org
  17. krisbrixon

    Help with DSN-less Connection CFC

    I don't have any real help, but did you see this blog post: Using a DSN connection for Connectionless Access Kris Brixon www.brixon.org
  18. krisbrixon

    Inserting Data - Inserting into all fields

    First, dump the query to the string instead of run it then try to run it in Query Analyzer or Access or ?? (depends on DB). Make sure it is making valid SQL. My guess: # 1 is no id is being sent, so check for it. # 2 there is an error with the SQL, so catch any errors. <cfparam...
  19. krisbrixon

    Trying to learn more about CFLDAP, can you help?

    You might want to ask people on a forum about AD. I know there are extra fields that can be used, but I have no idea how the Windows Admins add that stuff. Kris Brixon www.brixon.org
  20. krisbrixon

    Tag entry in textarea

    In my experience, you are asking WAY TOO MUCH from the user. I know it sounds like a simple request, but they will forget, not read the note, mess it up, and not care. Either search for line returns or for the end of the sentences and add the tags in code. When you want something the same ALL...

Part and Inventory Search

Back
Top