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 Mike Lewis 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. cfitzner

    Switching between tables at run time

    The easiest way to find out, how your SQL-Statement has to look like is the following: Use the "Show SQL-Query..." function, how Crystal is creating the SQL-Statement. (in Crystal 10 this function is in the Database Menu, I hope Crystal 9 has this function, too!!) Copy that Statement in the...
  2. cfitzner

    XML to HTML and back to XML

    Start with this: Clean your HTML up with Tidy: http://tidy.sourceforge.net/ After that you have to write an XSLT-Stylesheet to transform your html into xml. Or: You find a tool that can do that.
  3. cfitzner

    XSLT

    add this template: <xsl:template match="/"> <xsl:apply-templates select="//content[1]"/> </xsl:template>
  4. cfitzner

    How to use Crystal Reports 10 RDC Merge Modules?

    And here is the solution: 1. The keycode can be changed using Orca from Microsoft, which is included as an InstallationFile in the SDK. With this tool you can open Merge Modules and change the Property Table. 2. Even if not printing the report and only showing the report with the viewer...
  5. cfitzner

    How to use Crystal Reports 10 RDC Merge Modules?

    Thanks Ido, I found this directory on the client computer. The reason why I did ask that question, was that I can't run my reports properly on the client computer and the only difference to the developer computer is the installation of the merge modules / vs. Crystal Reports 10 Developer...
  6. cfitzner

    How to use Crystal Reports 10 RDC Merge Modules?

    Hi all, I'm having some problems with building an Installer Package (.msi) with MS Visual Studio Installer 1.1. I'm adding all the merge modules into my project, change the Build Configuration to Release mode and click Build. The result is a 40MB .msi File. When I start this one, it pretends to...
  7. cfitzner

    Swing refresh problem

    I had almost the same problem with changing the content of a JPanel: Calling the following two functions has solved the problem in my case: validate(); repaint();
  8. cfitzner

    Render multiple elements on one line with white space

    try this website: http://www.mycgiserver.com/~~lisali/papers/1.2/paper.htm
  9. cfitzner

    Dialog after serious crash each time starting Win XP

    I've got an ASUS AGP-V7100 graphic card. but after installing the new driver I had never any problems with the graphic driver again. The problem with the dialog that appeared each time booting the system I've resolved. The dialog said: &quot;System has been started again after a fatal error. For...
  10. cfitzner

    Dialog after serious crash each time starting Win XP

    Hi to all, Windows XP had a problem with my graphic driver and crashed (Yes it really does!!) because the graphic driver was in an infinite loop. After restarting the system a dialog appeared with some help information... Everything was fine after installing a new graphic driver. But now...
  11. cfitzner

    passing control to a JSP page from a servlet

    Hi all, I try to pass the control from a Servlet to a JSP-page: ServletContext sc = this.getServletContext(); RequestDispatcher rd = sc.getRequestDispatcher(&quot;/admin/customer.jsp&quot;); if (rd!=null) { // Pass control to the JSP page try { rd.forward(req,resp); } catch (Exception e) {...
  12. cfitzner

    Problem with Tomcat: Can't find &quot;web-app_2_2.dtd&quot;

    I'm using Tomcat 3.2 together with Netscape Enterprise. Everything is running fine, but when I start Tomcat I get the following error message: XmlMapper: Can't find resource for entity: -//Sun Microsystems, Inc.// DTD Web Application 1.2//EN --> http://java.sun.com/j2ee/dtds/web-app_2_2.dtd...
  13. cfitzner

    Memory leaks somewhere in tomcat

    Try to use an other Java Version! I had the similar problem when I were using JDK 1.2.2. Try it with JDK 1.3.
  14. cfitzner

    Question about doing a Select on a Text DataType

    I have installed the service pack (sql70sp2i.exe) which you can download on http://www.microsoft.com/sql/downloads/sp2.htm Then use the 'Current Connection Options'-MenuItem in the 'Query'-Menu of the Query Analyzer and in the Advanced-box you can modify the 'Maximum characters per column' -chris

Part and Inventory Search

Back
Top