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

  • Users: peterswan
  • Order by date
  1. peterswan

    cfchart problem

    might need to copy the cf_runactivecontent.js file into the CFIDE/SCRIPTS folder. Here's a link on it from the Adobe forums: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=143&threadid=1169335 Peter
  2. peterswan

    "Pivot" Query Display

    You'll need a SQL query that's much better than you have. If you want to bring it down in one query, you'll need to visit the SQL forums to get the exact sytax. The final result will need to be ordered by Quarter, month, subCategory, and subCategoryCount. You can worry about the group totals in...
  3. peterswan

    Simple Web Service doesn't work!

    Here's the error I get: Unable to read WSDL from URL: http://www.freewebs.com/jimmy_cheng/CurrencyExchangeService.wsdl. It's likely that the URL for this webservice is incorrect, or the service is down. Peter
  4. peterswan

    Expire pages in Firefox

    not sure if this will work but worth a try: <cfheader NAME="cache-control" VALUE="no-store">
  5. peterswan

    CFLOCATION Target?

    Try something like this. It allows you to run a bunch of CF, then relocate if necessary, remaining in the same or parent frame. You can also append URL variables if necessary. Make sure not to create an actual function in JS, it will run when the page loads, or if you want you can put...
  6. peterswan

    Updating Multiple Records in a duplicate table

    Your code looks pretty good, it looks like a SQL syntax error. Make sure all of the columns in your table are named the same thing that you are referencing in your UPDATE statement. The other thing it could be is your date fields, which can always be very tricky on how it's inserted or...
  7. peterswan

    cflocation like a same page link

    Sorry, for the relocation I meant: <cflocation url="redirect.cfm?pid=#pid###cmtid">
  8. peterswan

    cflocation like a same page link

    Hi PushCode, Instead of: <cflocation url="thepage.cfm?pid=#pid###cmtid-#cmtid#"> put: <cflocation url="thepage.cfm?pid=#pid#&cmtid=#cmtid#"> Peter [smile]
  9. peterswan

    IIS slow

    Hello, I'm a newbie to IIS. It is running very slow, maybe 45 seconds for any page, with ASP included or even just simple HTML. Any ideas for a solution? Thanks, [smile][smile][smile] Peter
  10. peterswan

    fixed width for table cells

    no, didn't work. I forgot to mention that my table width is set to 100%. When the user shrinks the browser, the Name column (set with style sheets to 175 pixels) still shrinks down to well below 175. Is this supposed to happen? I tried {table-layout: fixed;} but now it forces me to set a...
  11. peterswan

    fixed width for table cells

    Hello, I'm trying to set a fixed width for my table cells, but if I specify the width, and the person shrinks the browser width, the cell shrinks down to lower than the specified width, and the contents of the cell wraps. However, what I'd like the cell to do in this case is remain at this...
  12. peterswan

    going back after sorting report

    Hello, I have a report that is accessed by a form page. The user fills out the form and clicks on submit to view the report. At this point there are several column headers that are clickable which allows the user to sort the report by that column header. The page reloads and fetches new...
  13. peterswan

    window not defined error

    Thanks to both MonkSnake and Trollicious, I used MonkSnakes final version and it works fine. I'm still not sure what was wrong with the code. I thought that my previous version was identical to Monksnake's version, but I must have been wrong. The code that works is posted above. Hopefully this...
  14. peterswan

    window not defined error

    <script type="text/javascript"> var iptWin; function openWin() { iptWin = window.open('somePage.html', 'iptWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=375,height=325'); setTimeout('focusWin()',250); } function focusWin() {...
  15. peterswan

    window not defined error

    Hi MonkSnake, Thanks for the reply. Still no luck. I made the changes you recommended, however, now here is the error I'm getting: IPTWin is null or not an object. Thanks, Peter [smile]
  16. peterswan

    window not defined error

    Here is all of the code, including the link that calls it: <script language="Javascript"> function openWin() { var iptWin = window.open('somePage.html', 'newWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=375,height=325')...
  17. peterswan

    window not defined error

    Hello, When I run this script: <script language="Javascript"> function openWin() { var iptWin = window.open('somePage.html', 'newWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=375,height=325'); setTimeout('focusWin()',250); } function...
  18. peterswan

    javascript window opening behind parent window

    Could this be a Windows issue? I noticed that Alt + Tab to redisplay a program only works sometimes, however, not always. It's as if the command from the browser to display the new window worked fine, but the process of displaying the new window on my computer does not work correctly every...
  19. peterswan

    javascript window opening behind parent window

    Hi dwarfthrower, Thanks for the advice. I added the new code, but the window still only opens in front of the browser sometimes, and not in others. I wasn't getting this problem at all in IE6, that's why I believe this is a browser related issue. Here's how my code looks now: <script...
  20. peterswan

    javascript window opening behind parent window

    Hello, I'm opening a popup window with Javascript as follows: <script language="Javascript"> function openWin() { window.open('somePage.html', 'newWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=375,height=325'); } </script> <a...

Part and Inventory Search

Back
Top