Print in JSP

Hi, I'm new to JSP and have met such a problem.
I use <%=output%> to print out the contents generated in JavaBean, whenever I refresh the page the contents will be printed out once more, while I need once only. Can you tell me what the possible problem is?
Many thanks!!

what do you mean? You mean that if you refresh, the output prints 2 times? In this case, whatever is creating the output must be appending another copy to the existing variable holding the output. If you refresh, it will call the JSP page again, so whatever the page does will run again. So if you are keeping the same bean object and not resetting the results at the start (and if you have the bean in the session scope or higher, then you are reusing the same bean), this will happen.

Similar Messages

  • Printing a jsp page

    I am building an application in which there is option for printing that jsp by clicking
    print button.(I used MVC -2 architecture (jsp ,ejb,struts)).Please help me out.

    I am building an application in which there is option
    for printing that jsp by clicking
    print button.(I used MVC -2 architecture (jsp
    ,ejb,struts)).Please help me out.Printing the page is browser related stuff which has nothing to do with EJB or Struts. A simple way of doing it is using JavaScript for which a Google search gives several code samples.

  • How to print a JSP page ?

    HI,
    I need to implement a printing functionality on a JSP page.
    So I have a JSP page and there wud be a button on top of it.There is one table containing around 20 columns. So I jusst want to print that table out and nothng else from page.
    So when user clicks on Print button , whcih will open a new window and show the contents to be printed.Once user click Print bbutton on this second newly opened window it shud print.
    Can any one provide pointer to any link or help to implement this?
    Thanks in advance..
    javaardentfan

    You can do it using javascript, see the following JSP code and follow it.
    put the code in DIV tags that you do not wat to see in the final print
    previewRpt() javascript method does all the work..
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%-- jsf:pagecode language="java" location="/JavaSource/pagecode/jsp/reports/OrderEditDetailsPopup.java" --%><%-- /jsf:pagecode --%>
    <%@taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
    <HTML>
    <HEAD>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1"%>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META name="GENERATOR" content="IBM Software Development Platform">
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="../../theme/Master.css" rel="stylesheet" type="text/css">
    <LINK rel="stylesheet" href="../../theme/EOPS.css" type="text/css">
    <LINK REL="stylesheet" TYPE="text/css" HREF="../../theme/menus.css" />
    <TITLE>Option Order Edit Details</TITLE>
    <LINK rel="stylesheet" type="text/css" href="../../theme/stylesheet.css"
         title="Style">
    <script language="javascript">
    function previewRpt() {
         document.getElementById("buttonsArea").style.display="none";
         document.getElementById("buttonArea").style.display="none";
         if (document.all) {
              var OLECMDID = 7;
              /* OLECMDID values:
              * 6 - print * 7 - print preview * 1 - open window * 4 - Save As
              var PROMPT = 1; // 2 DONTPROMPTUSER
              var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
              document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
              WebBrowser1.ExecWB(OLECMDID, PROMPT);
              WebBrowser1.outerHTML = "";     
              window.PrintArea.innerHTML = "<div class='formlabel'>Please Click the X on the window to close!</div>"
              window.close();
         } else {
              window.print();
    </script>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    <f:view>
         <BODY onload="javascript:scrollTop=0"><hx:scriptCollector id="scriptCollector1">
              <div style="visibility:hidden">
                   <hx:commandExButton type="button" value="Close"
                   styleClass="custbutton1" id="button2">
              </hx:commandExButton>
              </div>
              <div id="buttonsArea">
                   <table cellpadding="0" cellspacing="0" border="0" width="100%">
                   <tr>
                   <td></td>
                   <td align="right">
                        <input type="image" src="../../images/printRest.gif" title="Print This report"
                                  onclick="previewRpt()"/>
                   </td>
                   </tr>
                   </table>
              </div>
              <TABLE width="100%">
                   <TR><TD align="center"> <h3>Order Edit Detail Report</h3></TD></TR>
                   <TR><TD align="center"> Order Id # <c:out value="${ORDER_HEADER_ID}"></c:out> Details</TD></TR>
              </TABLE>
         <BR>
              <TABLE class="grooved" border="1" cellpadding="0" cellspacing="0">
                   <TR><TD class="formlabel">Account</TD><TD><c:out value="${PART1.ACCOUNT}"> </c:out></TD></TR>
                   <TR><TD class="formlabel">Order Status</TD><TD><c:out value="${PART1.ORDER_STATUS}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Number</TD><TD><c:out value="${PART1.ORDER_NO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Sales Rep #</TD><TD><c:out value="${PART1.SALES_REP_NO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Date</TD><TD><c:out value="${PART1.ORDER_DATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">PO</TD><TD><c:out value="${PART1.PO}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">School or Institution Name</TD><TD><c:out value="${PART1.SCHOOL_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">District or Parent Institution Name</TD><TD><c:out value="${PART1.DISTRICT_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Account Name</TD><TD><c:out value="${PART1.ACCOUNT_NAME}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Attention</TD><TD><c:out value="${PART1.ATTENTION}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Miscellaneous</TD><TD><c:out value="${PART1.MISC}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Street Address</TD><TD><c:out value="${PART1.STREET}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">City</TD><TD><c:out value="${PART1.CITY}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">State</TD><TD><c:out value="${PART1.STATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Zip</TD><TD><c:out value="${PART1.ZIP}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Contact Phone</TD><TD><c:out value="${PART1.CONTACT_PH}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Contact Fax</TD><TD><c:out value="${PART1.CONTACT_FAX}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Pack By</TD><TD><c:out value="${PART1.PACK_BY}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Ship On Date</TD><TD><c:out value="${PART1.SHIP_ON_DATE}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Order Ship Via</TD><TD><c:out value="${PART1.ORDER_SHIP_VIA}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Customer Default Ship Via</TD><TD><c:out value="${PART1.CUSTOMER_DEFAULT_SHIP_VIA}"></c:out> </TD></TR>
                   <TR><TD class="formlabel">Warehouse</TD><TD><c:out value="${PART1.WAREHOUSE}"></c:out> </TD></TR>
              </TABLE>
              <BR>
              <c:if test="${PART2_FOUND eq 'YES'}">
              <h:form styleClass="form" id="form1"><h:dataTable border="1" cellpadding="2" cellspacing="0" columnClasses="columnClass1" headerClass="headerClass" footerClass="footerClass" rowClasses="rowClass1" styleClass="dataTable" id="table1" value="#{PART2}" var="rpt" rows="40">
                   <h:column id="column1">
                        <f:facet name="header">
                             <h:outputText id="text1" styleClass="outputText" value="Product Title"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text11" value="#{rpt.PRODUCT_TITLE}"></h:outputText>
                   </h:column>
                   <h:column id="column2">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Product Code" id="text2"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text12" value="#{rpt.PRODUCT_CODE}"></h:outputText>
                   </h:column>
                   <h:column id="column3">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Order QTY" id="text3"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text13" value="#{rpt.ORDER_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column4">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Customer Service QTY" id="text4"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text14" value="#{rpt.CUSTOMER_SERVICE_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column5">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Sales Admin QTY" id="text5"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text15" value="#{rpt.SALES_ADMIN_QTY}"></h:outputText>
                   </h:column>
                   <h:column id="column7">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Product Price" id="text7"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text17" value="#{rpt.PRODUCT_PRICE}"></h:outputText>
                   </h:column>
                   <h:column id="column8">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Extended Cost" id="text8"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text18" value="#{rpt.EXTENDED_COST}"></h:outputText>
                   </h:column>
                   <h:column id="column9">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Gratis" id="text9"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text19" value="#{rpt.GRATIS}"></h:outputText>
                   </h:column>
                   <h:column id="column10">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Series" id="text10"></h:outputText>
                        </f:facet>
                        <h:outputText styleClass="outputText" id="text20" value="#{rpt.SERIES}"></h:outputText>
                   </h:column>
                        <f:facet name="footer">
                             <hx:panelBox styleClass="panelBox" id="box1">
                                       <hx:pagerDeluxe styleClass="pagerDeluxe" id="deluxe1" />
                                  </hx:panelBox>
                        </f:facet>
                   </h:dataTable></h:form>
              </c:if>
              <br>
              <div id="buttonArea">     
              <center><hx:commandExButton type="button" value="Close"
                   onclick="window.close();" styleClass="custbutton1" id="button1">
              </hx:commandExButton></center>
              </div>
              <BR>
         </hx:scriptCollector></BODY>
    </f:view>
    <HEAD>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    </HEAD>
    </HTML>

  • Printing from JSP

    Hi All!
    I'm using the servlet-JSP technology for displaying tables from database in browser. I'd like to know that how can I send the long, multipage tables to a printer. I have to gain such printed document, which contains all of the table with table header in all pages. I tried with JavaScript, but it's not too good.
    How can I set the page properties, such as page size, orientation, ...?
    Can anyone a quick solve to my problem, or other technology to generates tables?
    Thanks for all,
    Milcsi

    JSP runs on the server, I assume you want to print on the client (browser's) machine. In this case, JSP/Servlet can't do it and you will have to investigate more into printing with javascript.
    Another idea would be to make a 'printer friendly' copy of your pages that displays the info in the correct format. Then use javascript or the browser's print option to print.

  • Recursive Print in JSP page

    I have a tree like structure in my java code and I want to print the output in my JSP page. Any idea how to perform recursive print in a JSP page.

    Couldnt U just use a while loop something like the following...
    <table>
    <%
    while(tree.next()){
    %>
    <tr>
    <td><%=tree.getString("output") %></td>
    <td><%=tree.getString("output2") %></td>
    </tr>
    <%
    } %>
    </table>
    or your version of that...
    Assuming U have Ur tree.next returning a false when it gets to the end.
    Hope I helped.
    - meMyselfAndI

  • Print in jsp page

    hi,
    I using jsp to develop webpage. From that i need to print a small size identity cards. while i design, it shows in corner of webpage and remain space are as whitespace.
    also i using print() in javascript to print.
    how to print a page with small size.?
    thanks in advance.,
    edi

    Couldnt U just use a while loop something like the following...
    <table>
    <%
    while(tree.next()){
    %>
    <tr>
    <td><%=tree.getString("output") %></td>
    <td><%=tree.getString("output2") %></td>
    </tr>
    <%
    } %>
    </table>
    or your version of that...
    Assuming U have Ur tree.next returning a false when it gets to the end.
    Hope I helped.
    - meMyselfAndI

  • Printing with JSP

    When I try to print with <%=%> sysntax JSP compiler throws the foll. error"
    illegal start of expression.
    out.println(); works fine.
    I am using JRun 3.1 on Win NTSP6a

    You're not trying to do something like this are you:
    <% ......
       <%= object.method() %>
    %>

  • Print previous jsp page generated content

    Hi to all
    Today i am trying to print a previous jsp page content in a next jsp page.
    For this reason i am passing the pagecontext object from the first jsp page to second jsp.
    My first jsp page coding is
    ===================
    <%
    out.print("hello");
    session.setAttribute("pagedata",pageContext);
    %>
    Click
    The coding in page.jsp is
    ===================
    <%@ page import="java.io.*"%>
    <%
    PageContext p=(PageContext) session.getAttribute("pagedata");
    JspWriter pageWriter = null;
    HttpServletRequest respon = (HttpServletRequest)p.getRequest();
    out.print(respon.getContentLength());
    InputStream print=respon.getInputStream();
    if(print.read()!=-1)
    out.print(print.read());
    %>
    but page.jsp doesn't print anything
    can i do this way
    Please Help me.

    Your code doesn't seem to be doing anything related to what you want to do. You are reading from the inputStream of the previous request and writing it to the current response. How is that supposed to work?? When you write to a response stream, the response is sent to the client and not stored in the request object or anywhere else. If you want to send the response of another page in a different page, you'll have to send all the response of the first page to a StringBuffer, send it as the response in the first request and store it in session scope. This is a way that I can think of for doing this...

  • Printing the JSP Page

    Hi All,
    I have a jsp page and want to print the page when user clicks the
    button it is similar to printing the web page from file menu which is on the IE browser.
    Thanks

    Use JavaScript in your JSP:
    <input type="button" value="Print" onClick="window.print()">

  • Printing through JSP

    hello all,
    I want to print my HTML page through JSP. I don't want printer dialog box to be display. Is there any way that I can select my printer name in the code so I don't have to select it from printer dialog box??...so if anyone click on Print button it automatically prints the page in A4(8.5x11) size...
    I will appreciate any suggestions..
    thanks
    Vic

    Use this..it might serve ur purpose...
    <script language="javascript"><!--
    function myprint(){
    WebBrowser1.ExecWB(6,-1);
    -->
    </script>
    <OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>

  • PRINT FROM JSP

    Hi,
    I have a JSP with data that comes from beans. The issue is How I can print the data info and not the header, banners from my jsp page?
    I used the window.print(), but it print whole the page includes images, header,etc, and I just want to print the data.
    Thanks!
    Carlos

    Yes. you are exactly right. You can see my entire code snippet for your reference.
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-validate">
    <META HTTP-EQUIV="expires" content="0">
    <LINK REL=STYLESHEET HREF="/apps/css/main.css" TYPE="text/css">
    <TITLE>Report Run on <%= new java.util.Date() %></TITLE>
    <SCRIPT Language="Javascript">
    function printit(){
    window.print();
    </script>
    </HEAD>
    <BODY>
    <form name="printpage">
    <TABLE width=750>
    <TR>
    <TD ALIGN=LEFT>
    <input type="button" class="printbutton" onClick="printit()" value=" Print">
    </TD>
    <TD ALIGN=RIGHT>
    <TABLE BORDER=0 CELLPADDING=1 CELLSPACING=0 WIDTH=750>
    <TR HEIGHT=15>
    <TD ALIGN=RIGHT >
    <div class=noprint>
    <IMG SRC=/apps/images/bluearrleft.gif BORDER=0 ALT=" Back ">���
    <IMG SRC=/apps/images/bluearrright.gif BORDER=0 ALT=" Forward ">
    </div>
    </TD>
    </TR>
    </TABLE>
    </TD>
    </TR>
    <TR ><TD colspan=2>
    <%
    String param= new String();
    String rep= new String();
    try{
    param = (String)request.getParameter("params");
    rep = (String)request.getParameter("reps");
    catch(Exception e){
    out.println(e);
    %>
    <%= param %>
    </TD></TR>
    <TR><TD colspan=2>
    <%= rep.replace('~','"') %></TD></TR>
    </TABLE>
    </form>
    </BODY>
    </HTML>
    Hope this helps.
    Best Luck!
    Senthil Babu J

  • Index printing in JSP using JSTL

    I want to print the index of an collection, as weel as the data
    right now I am doing
    <c:forEach var="codebean" items="${PROJECT_LIST}" >
      <c:out value="${codebean.name}"/>
      <input type="hidden" name="rank" value="${index}"/>  <--Print the index here
    </c:forEach>                         I know I can do this,
    <c:forEach var="index" begin="${0}" end="${fn:length(PROJECT_LIST)-1}" >but I cannot combine both,
    <c:forEach var="codebean" items="${PROJECT_LIST}" var="index" begin="${0}" end="${fn:length(PROJECT_LIST)-1}" >
    <c:out value="${codebean.name}"/>
      <input type="hidden" name="rank" value="${index}"/>  <--Print the index here
    </c:forEach>Help!!

    use the attribute varStatus of the c:forEach
    example
    <%
    int [] ts1 = new int[3];
              ts1[0] = 0;
              ts1[1] = 1;
              ts1[2] = 2;
    pageContext.setAttribute("ts1", ts1);
    %>
    <c:forEach items="${ts1}" varStatus="status" var="foo">
              <c:out value="${foo} and count is ${status.count}" which is not zero based/></br>
    </c:forEach>s

  • How can send to the print Queue in Ring Barcode printer using jsp?

    Any one help me Please
    I Tried it in Servlets But i wont detect the printer......
    My Coding in Servlet.....
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.lang.*;
    import java.security.*;
    import java.awt.*;
    import java.awt.print.*;
    public class BarCodeServlet2 extends HttpServlet implements Printable, Servlet
    // The following function is a placeholder for control initialization.
    // You should call this function from a constructor or initialization function.
    public void vcInit() {
    //{{INIT_CONTROLS
    // Our barcode string //
    String s="FMT(1,576d,414d,0,0,1)\n" +
    "DMD(1)\nDPD(1)\nACL()\nCOL(0)\nFAG(2)\nCFL(1,420d,376d,8,2,2)\nCFL(2,416d,352d,8,2,2)\n" +
    "CFL(2,416d,352d,8,2,2)\nLIN(3,0d,330d,529d,330d,1,3)\nCFL(4,504d,280d,6,1,1)\nCFL(5,504d,233d,6,1,1)\n" +               
    "CFL(6,504d,327d,6,1,1)\nCFL(7,504d,185d,6,1,1)\nCFL(8,504d,138d,6,1,1)\nCFL(9,339d,116d,8,2,2)\n" +
    "BDN(2,4)\nBFL(10,458d,94d,0,28,59d)\nCFL(11,435d,24d,6,1,1)\nCFL(12,413d,406d,2,1,1)\n" +
    "DAT(1,[email protected])\nDAT(2,[email protected])\nDAT(3,LIN)\n" +
    "DAT(4,COLOUR :RED)\nDAT(5,SIZE   :S28)\nDAT(6,NAME   :ST0060)\n" +
    "DAT(7,STYLE  :HALF SLEEVES)\nDAT(8,PRICE  :600)\n" +
    "DAT(9,:(Incl of all Taxes//))\nDAT(10,/6ST1D003J-134N)\nDAT(11,ST1D003J-134N)\n" +
    "DAT(12,BLAZE APPARELS-INDIA)\nPRT(1,0,1)";
    public static int count=0;
    public void service(HttpServletRequest req, HttpServletResponse res)
    throws ServletException,IOException
    PrintWriter out = res.getWriter();
    res.setContentType("text/html");
    out.println("<html><head><title>My Servlet!</title></head>");
    out.println("<body><h1>Hello Test ,updated!"+ s + "</h1></body></html>");
    PrinterJob job=PrinterJob.getPrinterJob();
    JobAttributes ja = new JobAttributes();
    // Make sure the print dialog box doesn't open because were in a Servlet//
    ja.setDialog(JobAttributes.DialogType.NONE);
    // Get the page format /.
    PageFormat page = job.defaultPage();
    // Get the paper object //
    Paper paper =page.getPaper();
    // Make the whole page imageable ..
    paper.setImageableArea(0,0,page.getHeight(),page.getWidth());
    page.setPaper(paper);
    job.defaultPage(page);
    job.setPrintable(this,page);
    try{
    // Print //
    job.print();
    }catch(Exception e)
    out.println("Exception caught");
    out.println(e.getMessage()+ "Exception caught");
    out.flush();
    public int print(Graphics g, PageFormat f, int pageIndex)
    if(pageIndex >0)
    return NO_SUCH_PAGE;
    //g.drawString(s,0,9 );
    g.drawString(s,0,32 );
    return PAGE_EXISTS;
    //{{DECLARE_CONTROLS
    }

    FileOutputStream printOut = new
    = new FileOutputStream("Samsung ML-1450 Series on
    JPRASAD");If that is supposed to be the name of the printer, I am afraid that is not the way it is done. As much as I could help you, I would suggest you to take a look at the API docs and check the classes under the javax.print package.

  • How to print a local file from jsp

    Hi,
    I want to print a local file(eg. .doc,.pdf) from a jsp.
    Please help me with any answer or any example code
    Thanks in advance
    Regards,
    Sanjeev

    Try this:
    index1.jsp:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <Link rel='alternate' media='print' href=null>
    <script Language=JavaScript>
    function setPrintPage(prnThis){
    prnDoc = document.getElementsByTagName('Link');
    prnDoc[0].setAttribute('href', prnThis);
    window.print();
    </script>
    </head>
    <body >
    <a href="#" onclick="setPrintPage('index.jsp');"> Click to Print </a>
    </html>This will print index.jsp without opening it in browser. Hope this helps!

  • Printing problem in jsp

    Hi...
    I have made an website by using jsp and servlets, the problem is that when click on the print option, to print that jsp page, the links get printed with that, and i want to avoid that link, please help me out from this problem,,thanks in advance...
    Bye n tc

    this is a html/css problem and not a java or jsp one.
    create a css file print.css for example and write the following to this file :
    a{
    display: none;
    }add this to the header of the JSPs you want to print :
    <link rel="stylesheet" media="print" href="/print.css" type="text/css" />

Maybe you are looking for

  • Photoshop and Illustrator sometimes hang when working together (CS 5.5)

    Hi all, I'm working with Adobe Creative Suite Design Premium 5.5 and sometimes, when I have Photoshop and Illustrator opened together, if I try to open something a little more complex (but not to heavy), one of the programs hang or freeze. This is a

  • Folder linked to FTP site

    Hello, Some time ago I created a link to an FTP site that functions like a local directory. Recently, I needed to create another one but have forgotten how I created the first. I am able "add a network location" but that doesn't achieve the same type

  • Problem with Select query fetching records.

    Hi All, SELECT bukrs belnr gjahr bldat cpudt aedat cputm usnam xblnr bktxt waers                    FROM bkpf INTO TABLE bkpf_tbl                    WHERE bukrs IN s_bukrs AND blart IN ('RE' , 'ZL') AND ( ( cpudt > prv_date )                    OR   

  • Why cant i get a facetime call to connect?

    I cant get my mac book or iphone to connect a facetime call why please help?

  • ERROR: Could not open Key.. when installing 9.1.0.79 x64

    I get the following error box when trying to install iTunes 9.1.0.79 x64 on my Dell Studio laptop with Vista 64-bit: Could not open Key: UNKNOWN\components\DA42BC89BF25F5BD0AF18C3B9B1A1EE8\7E577B2224C65CF4E801A9E5237 5DB49 I have no idea what this me