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: ded
  • Order by date
  1. ded

    VB Front End/Access DB distribution

    Hi I've got a front-end written in VB6 using ADO that searches an Access DB. I want to distribute this on a CD so that the user can just pop in the CD and run the EXE and it doesn't need to install any files, like DLLs, to do it. Does anyone have any ideas? Many thanks, Duncan
  2. ded

    Deploying on J2EE Application Sevrver

    Has anyone been able to deploy Coldfusion MX 6.1 on Oracle 9i Application Server or Oracle 10g Application Server? The macromedia documentation doesn't list it as one of the possible J2EE compliant servers it has certified but as 9iAS is compliant I think it should work but I have problems when...
  3. ded

    Deploying ColdFusion MX on 9iAS

    Has anyone tried deploying ColdFusion MX 6.1 on Oracle 9iAS?
  4. ded

    O'Reilly WebBoard Integration

    Has anyone had any experience of integrating CF with O'Reilly's WebBoard. As in when you have CF that creates a user account it creates one on WebBoard etc? Perhaps also checks to see if there are new messages etc and displays this on pages created by CF. Any hints most welcome. Cheers, Duncan
  5. ded

    CF returning extra HTML

    Thanks GJ, It was a rogue Application.cfm, I don't think my brain was with me yesterday. Cheers, Duncan
  6. ded

    CF returning extra HTML

    Anyone any ideas how to solve this one. If I write the following CF page <CFOUTPUT>#now()#</CFOUTPUT> then when I access it through the server I get <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;> <html> <head> <title>Untitled</title> </head> <body> </body>...
  7. ded

    Rolling CFOUTPUT

    Thanks but unfortunately I am using CF 4.0.
  8. ded

    Rolling CFOUTPUT

    Does anyone know how to make a CFOUTPUT output the results of a query one line at a time instead of once the whole page is processed. I have a custom tag which checks some data which can take time and it would be good to output each line as it is checked. Cheers, Duncan
  9. ded

    Cleaning MM_preloadImages

    Hi, Does anyone know how to clean the MM_preloadImages() function call in the onLoad parameter of the <BODY> tag so that it only preloads images relevant to that page. The pages of my site have been duplicated from others and then modified and the list of images to preload has grown. Thanks...
  10. ded

    Style Sheet Issues

    I have written this piece of code which will change the background colour of a table cell and the text colour of a link within it. This will only work in IE. Does anyone have any pointers on how to get it to work with Netscape? function changeButtonColor(id) { if(document.getElementById) {...
  11. ded

    Accessing Global Address List from Access/Excel

    Does anyone know of a way in which I can access the Global Address List which Outlook 98 displays in the Address Book from Excel 97 or Access 97 so that I can produce lists of users dependant on criteria from a form or cells? Cheers, Duncan
  12. ded

    need to print multiple pages generated dynamically all at once

    I would give this a try: <cfset URL.user = 5> <cfloop start=&quot;162&quot; end=&quot;164&quot; index=&quot;URL.page&quot;> <cfinclude template=&quot;http://www.test.com/testpage.cfm&quot;> <br class=&quot;pagebreak&quot;> </cfloop> i am not sure about using index=&quot;URL.page&quot...
  13. ded

    Variable inside a variable is its own variable?

    Fantastic. Never knew you could do that. I just changed a file which relies heavily on Evaluate() and it reduced the the time the page took by 50-60%. Definitely a better solution than my Evaluate()
  14. ded

    Variable inside a variable is its own variable?

    Try this. Assume theNumber is initialised. <cfdirectory action=&quot;LIST&quot; directory=&quot;C:\www\mydomain.com\photos\photofiles\temp&quot; name=&quot;temp_photos&quot; filter=&quot;*.jpg&quot;> <cfoutput query=&quot;temp_photos&quot;> <cfset theNumber = theNumber + 1> <cfset field =...
  15. ded

    print page

    Thanks that was very helpful. I must gen up on CSS. Duncan
  16. ded

    need to print multiple pages generated dynamically all at once

    You can do page breaks using style sheets. Here is an example of how to do it. The example will through a break after each instance of the table is printed. Hope this can be of some help. <CFQUERY NAME=&quot;getDetails&quot; DATASOURCE=&quot;ds&quot;> SELECT * FROM a </CFQUERY> <HTML>...
  17. ded

    WHAT'S WRONG WITH THE FOLLOWING SOU

    Give this a try: (basically changing CFOUTPUT to CFLOOP) <CFQUERY NAME=&quot;GetQTask&quot; DATASOURCE=&quot;eKong&quot;> Select * from QTask where wStatus ='P' </CFQUERY> <cfmail query=&quot;GetQTask&quot; FROM=&quot;tonychan@algoltec.com&quot; TO=&quot;#GetQTask.EMail#&quot...
  18. ded

    print page

    I know this might be a really dumb question but how do you do a &quot;page-break-after&quot;? Cheers, Duncan
  19. ded

    Printing to MS Shared printer

    Does anybody know of a way in which I can print over the network from a Mac to a printer which is on a PC running Windows? Cheers, Duncan
  20. ded

    addition

    You have commented out your CFOUTPUT <cfFORM name=&quot;addordersplacedform&quot; action=&quot;postordersplaceddata.cfm&quot; method=&quot;Post&quot;> <!---<cfoutput query=&quot;getval&quot;>---> <INPUT type=&quot;text&quot; name=&quot;order_id&quot...

Part and Inventory Search

Back
Top