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. mclosson

    xsl problems (maybe an namespace issue?)

    I have an xsl file: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml"/> <xsl:template match="svg"> <xsl:apply-templates select="mask"/> </xsl:template> <xsl:template match="mask"> <xsl:copy> <xsl:apply-templates/>...
  2. mclosson

    relative paths in web.config

    I will likely do the marker replacement method. Thanks for the suggestions.
  3. mclosson

    relative paths in web.config

    From what I can see, the MapPath function does not work in the web.config file. I was wondering if there is any way to do something similar to MapPath withing the web.config file itself. Mike
  4. mclosson

    relative paths in web.config

    Does anyone know of a way to include a relative path reference in web.config? For example, I would like to store an access database connection string in web.config. I would like to set the Data Source parameter to the metadb.mdb file in the web application root. However, for reusability...
  5. mclosson

    div problem with sliced image

    I was hoping someone might be able to help me. I have sliced an image in order to use rollover effects, and have tried to set it up using div's instead of tables. I am having a problem where I can get the expected results in IE6, but not in Netscape7 (at the moment, these are the only browsers I...
  6. mclosson

    trouble when loading a new window with window.open

    I currently have a situation where the results of a query are returned in to a frame in window#1. Clicking on one of the results opens a more in depth description of that specific result in window#2; this is done using javascript (window.open...) When window#2 opens, the problem I am...
  7. mclosson

    Control # of columns from VB code?

    Does anyone know if there is there any way to control the number of columns in a CR table from VB code? I have a table in my report that needs to consist of varying numbers of columns. Thank you for any advice, Mike Closson
  8. mclosson

    Sending report directly to printer - no preview page

    I have an asp page with a 'print' button on it. I would like to make it so that when the button is clicked, crystal will send the report directly to the printer and will not show the preview page. I've tried using the printout and PrintReport method, but can't seem to get it to work. The...
  9. mclosson

    opening ImageStyler files in ImageReady or Photoshop?

    Does anyone know if there is a way to open ImageStyler (.ist) files in ImageReady or Photoshop 6.0? Thanks, Mike
  10. mclosson

    I want to do the following: Use SQ

    I want to do the following: Use SQL database to crate a recordset R create a folder in Outlook on client side and populate it with R The way I am doing it: <% create record set%> <script language=vbscript>create folder</script> <% start loop %> <script language=vbscript>insert records in...
  11. mclosson

    Graphing in vb6

    I am looking for suggestions on what the best way is to incorporate scientific graphing into vb6. I have seen that MS Excel can be used (ole). Is this the best option? Are there other ones that don't require purchasing any additional software (besides vb6 and Office)? Thank you, Mike Closson
  12. mclosson

    Code to determine whether or not there are details on a give page?...

    I have a report where there are 5 text boxes and a sub-report in the details section. This details section can sometimes be multiple pages and sometimes not. There is also a page footer that takes up a fair amount of space. I would like to make it so that the text boxes show up on every page...
  13. mclosson

    When monitoring is on, there is a 'beep', but no errors are found

    Thanks for the reply. Do you know how to stop this beeping without stopping all monitoring? Mike
  14. mclosson

    When monitoring is on, there is a 'beep', but no errors are found

    I have been setting up Exchange Server 2000. For some reason, as long as the server monitoring is turned on, the computer gives a system beep every 30 seconds or so. I can't find any errors in the windows event viewer and just can't seem to find any reason why Exchange Server is beeping. By the...
  15. mclosson

    Can't get table column headings to repeat on multiple pages

    I have created a report in which one of the tables can sometimes take up less than one page and sometimes take multiple pages. I am having problems trying to get the column headings to repeat if the table spans onto an extra page. At the moment, the tabular data is generated from from an SQL...
  16. mclosson

    I can't split up the details section of a report

    I don't know if this is possibgle with the designer. I just want to know if there is a way to make it so that the same data are not repeated - possibly have the second page leave off from where the first page ends. Would I have to take my table out of the details section? Thank you for your...
  17. mclosson

    I can't split up the details section of a report

    I can't seem to split up the details section of a report I am creating in the Crystal .dsr component for Visual Basic. When the details section grows to a point where the entire report (header, footer, etc..) will no longer fit onto a single page, it is repeated on the second page followed by...
  18. mclosson

    packaging .dll's with ActiveX controls

    I would appreciate it if anyone could help me out. I have a web page that uses an ActiveX component that I designed (it prompts the user to download the .ocx the first time he/she accesses the page). I need to somehow package the .ocx with a required .dll which most computers will not already...
  19. mclosson

    deleting .tmp files from the application directory

    I found that the SHELL() function was not doing anything. I think that the SHELL() in VB6 is meant only as a means of running programs almost as threads. For some reason, using regular dos prompts such as DEL do not seem to work. I was thinking of creating a .bat file that does the delete and...

Part and Inventory Search

Back
Top