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 strongm 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. RichardBro

    Log off from OWA (2003)

    On a new installation of Exchange 2003, accessed via OWA, is there a fix for the failure of the 'Log Off' action. MS say close the browser, but is there a better way? The default installation at best has a page saying close the browser, and at worst issues a 404 page not found error.
  2. RichardBro

    Having a problem creating a Dynamic CFIF

    Try something like: <cfset flds = &quot;&quot;> <cfloop from=&quot;1&quot; to=&quot;#fieldnumber#&quot; index=&quot;x&quot;> <cfset flds = listappend(flds,&quot;isdefined('field_#x#')&quot;,&quot;|&quot;)> </cfloop> <cfset flds = replace(flds,&quot;|&quot;, &quot; AND &quot;,&quot;ALL&quot;)>...
  3. RichardBro

    dual drop down

    Try twoselectsrelated, which you should be able to find on the Macromedia CF Exchange, it does what you require and is easy to use.
  4. RichardBro

    convert to ms excel

    There is an effective and fairly easy solution, see the explaination at http://www.cfcomet.com/Excel/index.cfm?ArticleID=B5ED33FB-5CB1-4ACC-899689A15A0E1539 there is also an article on running macros etc.
  5. RichardBro

    Updating Records

    Try changing the <cfoutput query...> to a <cfloop query...> its about 7 times faster than cfoutput, so the page processing will take a lot less time Richard
  6. RichardBro

    Page Cache STOPING

    To stop a page caching, insert the followin lines at the top of your .cfm file: <META http-equiv=&quot;Expires&quot; content=&quot;Now&quot; > <META HTTP-EQUIV=&quot;pragma&quot; CONTENT=&quot;no-cache&quot;> <CFHEADER Name=&quot;Expires&quot; Value=&quot;#Now()#&quot;> <CFHEADER...
  7. RichardBro

    Javascript and CF for 3 level narrow down search, pls help!

    Both tags come with full instructions attached. Basically you design a query that contains the info you want to display in the following format: For three selects, the first with 3 entries, the second with 3 for each of the entries in select one, and the third with 2 or three entries for each...
  8. RichardBro

    Opening Template in a Frame

    Try the following Item 1 To force a page to open outside a frameset <script LANGUAGE=&quot;JavaScript&quot;> if(top.location != document.location.href) { top.location = 'pagename.cfm'; } </script> Item 2 Try removing the target, the page should open in the current frame...
  9. RichardBro

    Javascript and CF for 3 level narrow down search, pls help!

    Sakura Instead of trying to write this yourself, I suggest that you try either 'ThreeSelectsRelated' or 'ActiveSelect'. Both these tags work well, the latter being able to handle more than three related select boxes. They both use a structured query as a datasource so the page need not be...
  10. RichardBro

    What is Verity & how do I use it?

    Verity is a very powerful 'full text' search tool, which can handle and index a wide variety of file formats. The version that ships with CF is a slightly limited in that it only has provision for only two structured fields (Custom 1 & 2). CF accesses verity through the following tags ...

Part and Inventory Search

Back
Top