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: ddfff
  • 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

    Ya know, I tried: <iframe style="background-color:#000000;"> The frame still appears white when loading. It's especially noticable because I have a few images on this screen. Any other ideas?
  7. 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...
  8. ddfff

    No Back...

    I appreciate the suggestion but might there be a more accurate possibility. I have seen some pages that, when you hit the back button, it will only refresh that page. Thanks again.
  9. 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...
  10. 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...
  11. 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.
  12. 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?
  13. 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...
  14. ddfff

    Create Counter Row

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

    Subscript.

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

    Find Value in List

    Thanks but I am having trouble getting the alert to display. Right now I get nothing. I pasted the code for in Array function exactly and have the following: function CheckDupe() { if (inArray(5,5)) { alert("Stop"); return false; } else return true; } I used 5,5 to make as simple...
  17. 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...
  18. ddfff

    CR 10 and Active X Viewer. Need Help

    Thanks for the response. We are using Crystal Enterprise Embedded Version 10 with SQL Server. Here is what I figure is happening. We open the report through Active X viewer by lauching the ASP pages supplied on the Business Objects Site. In one of the asp pages there is a variable passed to...
  19. 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...
  20. ddfff

    Suppress Footer on Condition

    Ok. Lets try this again.... Using version 8.5. Create a report with neither the report header or page footer suppressed. Draw a verticle line on report header and select "extend to bottom of page". Then make the report header section at least as big as a single page, let's say 11 inches...

Part and Inventory Search

Back
Top