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 bkrike 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: ddfff
  • Content: Threads
  • Order by date
  1. ddfff

    Text Area Question.

    I have a text area on my page and I have it set so that when the mouse rolls over a link on the page, it displays the related text in the text area. It works fine except... If the text to be displayed is exceptionally long (a couple of paragraphs) it does not work. When the text is simple...
  2. ddfff

    Mapping for Developer

    I installed IIS on my pc to work in conjuction with ColdFusion Server Developer Edition so I can preview web pages on my local machine before uploading to the live web server (hosting company). Currently, the folder containing my web application is in inetpub/wwwroot/mysite This works fine...
  3. ddfff

    Create Mapping for Alternate Directory.

    I installed IIS on my pc to work in conjuction with ColdFusion Server Developer Edition so I can preview web pages on my local machine before uploading to the live web server (hosting company). Currently, the folder containing my web application is in inetpub/wwwroot/mysite This works fine...
  4. ddfff

    Admin Mapping Does not appear to work...

    I have the following reference to an image file: image src="/images/myimage.gif"> The file actually resides in: inetpub/wwwroot/mywebsite/images/myimage.gif When I load my page, the image does not load. If I change the image src to "/mywebsite/images/myimage.gif" and it works but I want to...
  5. ddfff

    Tilt Text...

    Using the following to tilt text vertically and it works great. .verticaltext { writing-mode: tb-rl; filter: flipv fliph; } is there a way to adjust this so the text displays at a lesser angle, say 45 or 30 degrees -- making it appear tilted Thanks very much in advance.
  6. ddfff

    IFrame Question

    I have two questions about IFrame. Greatly appreciate an answer to 1 or both. 1. I am calling a page within a page via the use of IFrame. The IFrame is embedded within TD tags of the calling page and I would like the IFrame to be the exact size in width and heigth of its source page. I set the...
  7. ddfff

    No Back...

    I have a form on a cfm template that, after submitted, I do NOT want to allow the user to view as cache page. In other words, once you submit the form -- if you hit the back button on the browser -- the user must fill the page out again. I tried the following but it does not seem to work...
  8. ddfff

    save file

    I have a zip file on our webserver. I am trying the following code to allow the user to save the file to the local machine. <cfheader name="Content-Disposition" value="attachment"> <cfcontent type="application/x-zip-compressed" file="myzipfile" deletefile="no"> Problem is that it appears as...
  9. ddfff

    Random Number

    I need to generate a random whole number in a cfm template between 1 and 2000. What would be the easiest way to do this? Thanks in advance.
  10. ddfff

    Sql functions in cfquery

    I have a userdefined sql function called propercase. when I execute a query from enterprise manager, select propercase(firstname) from names it works. When I try and use it in cfquery tag, it does not recognize the function. What can I do?
  11. ddfff

    cfcookie

    I am using cfcookie in an app as follows. Also note that I am not using cflocation anywhere else on the page. <cfcookie name="LoginID" value="#LoginUser.ID#" expires="NEVER" domain="DPP"> After setting I have the following line to output the cookie: <cfif isdefined("cookie.loginid")> cfdump...
  12. ddfff

    Create Counter Row

    Is there a way in SQL query to create a column in the query results that is the row number?
  13. ddfff

    Subscript.

    Does anyone know how to enter a subscript 2 in the database. Like in H20. Thanks in advance.
  14. ddfff

    Find Value in List

    I have an alert function I am trying to use similair to below. if(document.selectcomm.reportid.value == "") { alert("My Alert"); return false; } However I want to modify it so that it checks for a specific value in a list rather than if ""> For example: I want to run the Alert if the...
  15. ddfff

    CR 10 and Active X Viewer. Need Help

    We are switching to CR version 10. I have a basic report with one table, no groups on the report or anything. Under Report - Selection Formulas- Record I have simple criteria. ID = 5. When I preview this in the developer, it only displays one record -- it works correctly. When I launch through...
  16. ddfff

    Suppress Footer on Condition

    Is there any way to suppress the page footer when using a formula? Far as I can tell, it will ONLY suppress when I check the box for supress but do NOT enter a formula condition. Otherwise, it always reserves space for the footer even when the suppression condition is met. Thanks in advance.
  17. ddfff

    Suppress Page Footer.

    I have a report and want to supress page footer on a condition. I am using the report header to put content of my title page and have it set for NewPageAfter. However, the page footer section only will suppress when there is NO criteria in the "x-2" option. For example, in the pagefooter...
  18. ddfff

    Image as watermark

    Using an image as a watermark in the page header. Works correcly when there is text or data on the page (the image appears as a background behind the text or data). Problem is that for vertical or horizantal lines drawn on the page, the watermark image in the page header appears over the...
  19. ddfff

    Is new page.

    Using cr 8.5. I have a report and on the report I have a field in the details section that repeats on the page. I want hide or suppress this field from view unless I move to a NEW page. Any ideas on how I can create a formula to determine when the report moves to a new page.
  20. ddfff

    Sort Date in Cross Tab. Please Help.

    I have a crosstab and am having a problem sorting. The row for the crosstab should be the month of a date, startdate. When I display the months as a number, month(startdate) the report sorts exacly as I want. However, I need to display the month name (January). When I change to...

Part and Inventory Search

Back
Top