Create separate pages from 1 long screencapture

Whilst using the 'scrolling region' or 'scroll active window' functionality within my screencapturing program, I can capture long documents, such as websites, program settings, etc.
After pasted into Acrobat obviously Acrobat has a problem for instance with OCR.
As an example, right now, OCR says it could not perform OCR as the document is larger than 45x45 inches.
I could resize the screencapture to fit width:landscape, but then again, the document is way too long.
I could select a region each time (that may roughly fit A4-landscape) and then via Edit-Copy ->insert from clipboard, but that is quite a job.
Q: Is there no way to do this automatically?
Some 'action' thing ?
i.e. to split a llllong screencapture into A4 portrait or A4 landscape pages?
Thanks
=
Acrobat Pro XI

Thanks.
I have come accross roughly the same questions a few other threads elsewhere on Internet.
One in the Hypersnap support forum, on the Hyperionics site: Cutting a big image from a web capture in multiple pages
and
on http://forums.mydigitallife.info How to take a Screenshot of a full webpage,Split and Print?
Seems PosteRazor might do the job http://posterazor.sourceforge.net/
i.e. splitting a long screencapture into userdefined A4 portrait or landscape pages.
Anyway, thanks again!
=

Similar Messages

  • Where is the setting to set up pages instead of spreads? Need to pdf separate pages from a spread setup.

    Where is the setting to set up pages instead of spreads? Need to pdf separate pages from a spread setup.

    This is the selection you're looking for:

  • How to Create HTML page from portal

    Hi
    I have a requirement to create html pages from portal.
    There will be an author who can choose document type as HTML
    and then he will write html codes on saving it should be saved as HTML doc in UCM.
    and publisher should be able to display it on portal(may be using content presenter).
    please help me in this. I know there is rich text editor task flow which can save a doc as doc file.
    and in spaces we have option of creating HTLM file but i don't know how to do it for my portal.
    Thanks

    A better way would be to create the page using approach in this blog:
    https://blogs.oracle.com/ATEAM_WEBCENTER/entry/content_presenter_cmis_complete
    That way the page can be edited inline and the html author need not upload html to ucm everytime.

  • Error running create expense page from jsp

    Hi,
    I am getting the following exception while running the create expense page from Jdev using a jsp.
    I have FTPed all the files from OA_JAVA and AP_TOP to my local machine. Created a new project and imported the files to this project. To run the create expense page I created a jsp in which there are various links including the helloworld and search.
    Problem is when i run any other page it works fine but when I try to clink on <create expense> page I get the exception pasted below.
    The JSP code is as fallows:
    <%@ page
    language = "java"
    errorPage = "OAErrorPage.jsp"
    contentType = "text/html"
    import = "java.io.File"
    import = "oracle.apps.fnd.framework.webui.OAJSPHelper"
    import = "oracle.apps.fnd.framework.webui.URLMgr"
    import = "oracle.apps.fnd.security.HMAC"
    %>
    <%! public static final String RCS_ID = "$Header: test_fwktutorial.jsp 115.5 2003/05/05 10:20:28 gmallesh noship $"; %>
    <jsp:useBean
    id = "sessionBean"
    class = "oracle.apps.fnd.framework.CreateIcxSession"
    scope = "request">
    </jsp:useBean>
    <%
    response.setHeader("Cache-Control", "no-cache"); // HTTP 1.1
    response.setHeader("Pragma", "no-cache"); // HTTP 1.0
    response.setDateHeader("Expires", -1); // Prevent caching at the proxy server
    if (request.getHeader("User-Agent").indexOf("MSIE") >= 0)
    // HTTP 1.1. Only way to force refresh in IE.
    response.setStatus(HttpServletResponse.SC_RESET_CONTENT);
    // Obtain the Runtime Connection directly from the Project Settings.
    // NOTE: This option will not work under Apache/JServ. In order to run under Apache/JServ
    // you will need to hard code these values as shown in the commented alternatives
    // below.
    String dbcFullPathName = oracle.apps.fnd.framework.webui.OAJSPHelper.getWebAppContextInitParameter(pageContext, "DBC_FULL_PATH_NAME"); // OAJSPHelper.getWebAppContextInitParameter(pageContext, "DBC_FULL_PATH_NAME");
    String userName = OAJSPHelper.getWebAppContextInitParameter(pageContext, "OA_LOGIN_USERNAME");
    String userPassword = OAJSPHelper.getWebAppContextInitParameter(pageContext, "OA_LOGIN_PASSWORD");
    String appShortName = OAJSPHelper.getWebAppContextInitParameter(pageContext, "OA_RESPONSIBILITY_APPS_SHORT_NAME");
    String responsibilityKey = OAJSPHelper.getWebAppContextInitParameter(pageContext, "OA_RESPONSIBILITY_KEY");
    // String userName = "< your user name >";
    // String userPassword = "< your password >";
    // String appShortName = "AK";
    // String responsibilityKey = "FWK_TBX_TUTORIAL";
    String sessionid = sessionBean.createSession(request, response, dbcFullPathName, userName, userPassword, appShortName, responsibilityKey);
    String transactionid = sessionBean.createTransaction(sessionBean.mRespInfo[0], sessionBean.mRespInfo[1], sessionBean.mRespInfo[2], dbcFullPathName);
    HMAC macKey = sessionBean.getMACKey(session);
    %>
    <HTML>
    <HEAD>
    <title>Test Framework ToolBox Tutorial</title>
    <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
    document.cookie = "OADiagnostic=1";
    document.cookie = "OADeveloperMode=1";
    document.cookie = "OABackButtonTestMode=0";
    document.cookie = "OAPassivationTestMode=0";
    document.cookie = "OAConnectionTestMode=0";
    document.cookie = "OADumpUIXTree=0";
    </SCRIPT>
    </HEAD>
    <BODY>
    <a href="<%=URLMgr.processOutgoingURL(OA.jsp?OAFunc=FWK_TOOLBOX_HELLO&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_HELLO&transactionid=" + transactionid, macKey) %">">Hello, World!</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_PO_SEARCH&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_PO_SEARCH&transactionid=" + transactionid, macKey) %>">Search &amp; Drilldown</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_SUPPLIER_SEARCH&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_SUPPLIER_SEARCH&transactionid=" + transactionid, macKey) %>">Create (Single Step)</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_PO_SUMMARY_DEL&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_PO_SUMMARY_DEL&transactionid=" + transactionid, macKey) %>">Delete From Table</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_PO_SUMMARY_UP&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_PO_SUMMARY_UP&transactionid=" + transactionid, macKey) %>">Update </a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_PO_SUMMARY_CR&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_PO_SUMMARY_CR&transactionid=" + transactionid, macKey) %>">Create (Multistep)</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_HOME&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_HOME&transactionid=" + transactionid, macKey) %>">Home Page</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=FWK_TOOLBOX_SAMPLE_BROWSE&OAPB=FWK_TOOLBOX_BRAND&OAHP=FWK_TOOLBOX_TUTORIAL_APP&OASF=FWK_TOOLBOX_SAMPLE_BROWSE&transactionid=" + transactionid, macKey) %>">Sample Library</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?_rc=HXCTIMECARDACTIVITIESPAGE&_ri=809&FromActivities=N&Action=Create&ResourceType=PERSON&oapc=7&menu=Y&oaMenuLevel=2&_ti=" + transactionid, macKey) %>">Create Timecard</a><br>
    <a href="<%=URLMgr.processOutgoingURL("OA.jsp?OAFunc=OIECREATEPAGE&_ti=" + transactionid, macKey) %>">Create Expense</a><br>
    </BODY>
    </HTML>
    Exception Details.
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_NO_REGION_DATA. Tokens: REGIONCODE = OIEMAINPAGE; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:576)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3459)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at _OA._jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
         at _OA._jspService(OA.jsp:45)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
         at _OA._jspService(OA.jsp:45)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.adf.mds.exception.MDSRuntimeException: Duplicate Reference: A component with ID "OIEErrorIconInstruct____2" already exists in document "/oracle/apps/ap/oie/webui/OIEMAINPAGE".
         at oracle.adf.mds.internal.MUnResolvedState.resolveState(MUnResolvedState.java:193)
         at oracle.adf.mds.internal.ElementData.resolveState(ElementData.java:509)
         at oracle.adf.mds.internal.ElementData.getUntransAttrVal(ElementData.java:922)
         at oracle.adf.mds.internal.ElementData.getAttrVal(ElementData.java:835)
         at oracle.adf.mds.internal.ElementData.getAttributeValue(ElementData.java:260)
         at oracle.adf.mds.internal.Cache.getAttribute(Cache.java:237)
         at oracle.adf.mds.internal.MetadataManagerBase.getAttributeValueInternal(MetadataManagerBase.java:1084)
         at oracle.adf.mds.internal.MElementImpl.getAttrValueOrExpression(MElementImpl.java:620)
         at oracle.adf.mds.internal.MElementImpl.getAttributeValue(MElementImpl.java:230)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:552)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3459)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at _OA._jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
         at _OA._jspService(OA.jsp:45)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
         at _OA._jspService(OA.jsp:45)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    oracle.adf.mds.exception.MDSRuntimeException: Duplicate Reference: A component with ID "OIEErrorIconInstruct____2" already exists in document "/oracle/apps/ap/oie/webui/OIEMAINPAGE".
         at oracle.adf.mds.internal.MUnResolvedState.resolveState(MUnResolvedState.java:193)
         at oracle.adf.mds.internal.ElementData.resolveState(ElementData.java:509)
         at oracle.adf.mds.internal.ElementData.getUntransAttrVal(ElementData.java:922)
         at oracle.adf.mds.internal.ElementData.getAttrVal(ElementData.java:835)
         at oracle.adf.mds.internal.ElementData.getAttributeValue(ElementData.java:260)
         at oracle.adf.mds.internal.Cache.getAttribute(Cache.java:237)
         at oracle.adf.mds.internal.MetadataManagerBase.getAttributeValueInternal(MetadataManagerBase.java:1084)
         at oracle.adf.mds.internal.MElementImpl.getAttrValueOrExpression(MElementImpl.java:620)
         at oracle.adf.mds.internal.MElementImpl.getAttributeValue(MElementImpl.java:230)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:552)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3459)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at _OA._jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
         at _OA._jspService(OA.jsp:45)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.evermind.server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:189)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:199)
         at _OA._jspService(OA.jsp:45)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)</a>

    Build an ear file containing your ejb jar file and your war file.
    If you're not familiar with this deploytool from sun (bundled with j2ee sdk release)does quite a good job.
    But you'll need adittional deployment descriptors specific to weblogic.
    If you're using weblogic they probaply got a tool somewhere that can do this.
    If not try searching for some ear building tool.

  • Maverick Mail Printing Problem: prints email header on separate page from body of email.  Why?!

    Maverick Mail Printing Problem: prints email header on separate page from body of email.  Why?!

    For what it's worth, I can report exactly the same problem.  I just recently converted from Outlook for Mac 2011 to Mail.  I did the conversion while running Yosemite.  I like pretty much everything about Mail EXCEPT that it take 2 pages to print a 1 page email!!  The header appears on the top of p.1, followed by a blank space.  The message begins at the top of p.2.
    If you scale it down, you can get the message to begin to appear on the bottom of p.1, but clearly, Mail is inserting BIG SPACE between the header and the message.  Changing the display fonts for Mail had no apparent effect (except that the font DID change, of course)....still a BIG SPACE between the header and the message. 
    Coming to Mail for the first time, I would have assumed that this was just a quirk of Mail, but am I understanding that some of you Mail users out there USED TO NOT have this problem??  I think it's pretty clear that it's Mail that's causing the problem, not the message, because I went over to my old Outlook and printed the same couple of messages with no such space between the header and the message.  So Mail is inserting a space into the print formatted email message that is NOT there in Outlook's print formatted same message.
    Be really nice to get rid of this problem, but my Apple Care free support has expired.  Not sure I want to pay for something that's generic to Mail!!  Anyone else made any progress on this?

  • HELP with Problem creating a page from a template Suggestions PLS.

    Nadia was kind enough to give me step by step in creating a template the right way.
    Problem is why won't it work?
    1) I create a page exactily like I want the templete to look.
    2) I save the child page as a template.
    3) I go to FILE>NEW>Page from template, look at the template on the insert on the right and it is just as I would expect it to be. The update is checked on change. I say ok and what appears on screen is I have lost all my formatting. When I look at the code, creating a page from the template causes the process to change the location of (for instance) the background image gif file from ...images/background.gif to the full location name starting the string at the C:/ all the way to ...background.gif. Therefore, the created page from the template loses all of its formatting.
    How do I fix this problem????

    Okay, here I go again with this problem step by step.
    1) Created a basic page that has a header, body and footer: www.goodimage.com and saved it as maintemp.html .
    2) I saved maintemp.html in the normal place where all the html are stored because as I was creating the template it told me I needed to save the page I was working on. So I decided to store it as an html until as it was layed out. Then I went to FILE/SAVE AS TEMPLATE storing it as maintemp.dwt.
    3) Then I created an edItable area called BODY.
    4) Then I did a FILE/SAVE AS TEMPLATE or tried to. As part of this process it wants to know if I want to UPDATE LINKS. If I do then the links will reference the template folder (but it is the DW default - hmmm what do I do) When in doubt take the default. So I did.
    5) So now I have a nice looking template called maintemp.dwt with one editablel region. So I feel pretty good until I suspect the next problem I have been fighting all along will appear. I select FILE/NEW PAGE FROM TEMPLATE and I see goodimage site, and my template called maintemp and a nice picture of it on the right screen part. Also update page when template changes is checked. Then I select to do the action.
    6)  Upcomes an unformatted screen caused by the links not being correct. I save the page as index.html to see if it will correct itself. I does not correct itself. So the index.html page is not formatted even after I closed down DW to see if that would help. It didn't. So I could go in and manually update the page but what a mess that would be.
    7) So I will go back to create a page from the maintemp.html with the UPDATE LINKS turned off. Using maintemp.html to create a template just like in step 2). When UPDATE LINKS is not selected then the template falls apart and is unusable.
    I HAVE WASTE ABOUT THREE DAYS ON THIS ONE PROBLEM AND I HAVE BUT A FEW MORE HOURS TO GET IT DONE. ONCE THIS WORKS IT WILL GO FAST. I AM TIRED OF BEING TIRED BUT MAYBE THAT IS CAUSING MY PROBLEM. ANYWAY, PLEASE HELP AS I AM AT A LOSE.
    HLOWER

  • Can not create new page from template

    I have been working on a new site for the last couple of
    weeks and have created several pages using a basic template.
    All of the child pages of this template still update when
    changes are made to it, however I can no long create new children
    from this template.
    Any ideas as to what the problem might be.
    THanks
    Clint

    > It is basically just creating a copy of my template, and
    not linking to it in
    > any way.
    > This allows me to change any section of the html.
    my guess is that you are opening the .dwt template file and
    doing a "Save
    As". That page is not a "child" page of the template.
    >
    > I want to be able to create new pages off this template
    and have it work like
    > all of the first pages I created.
    dw menu-->File-->New
    in the new files dialog box, click the Templates tab
    from list in left, click This Site Name
    from list in right, pick This Template
    make sure x is in box to Update if template changes
    click okay
    save file with filename you want to within this local site
    folder.
    add content to within the editable areas
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • How do I separate pages from a PDF?

    How do I save a pdf form that is 2 pages into separate pages?  So I would end up with 2 separate files.

    Hi separate pages,
    To separate pages, you need to use Acrobat. If you don't have Acrobat, feel free to give it a try. You can download a trial from www.adobe.com/products/acrobat.html. (In Acrobat, you choose either Extract or Split from the Pages pane in the Tools panel.)
    Best,
    Sara

  • Create web pages from xml files using Servets or JSP

    I�m new in this tecnology and I have to create a web pages from information that I get from a XML files. I would like to know if there is a place where I can find examples of code or any book that could help me.

    Two places with loads of information on this:
    http://xml.apache.org
    Look at Xalan or Cocoon.
    Also, there was an article on http://www.javaworld.com on XML with JSP.

  • Create new page from template

    I created a page, and saved it as a template. I want to
    create a new page from the template (creating more pages for the
    same website). When I select file > new > page from template,
    the list contains <no sites>.
    How do I get the page and / or template I already created to
    be in a "site" so it shows up on the list. Couldn't find this in
    the help file.
    Thanks

    So where is the correct location?
    I created the folder for this site when I first created the
    html page. This is the folder I mentioned. This site folder was
    created inside the Documents folder, I believe by default.
    As I mentioned, on the first try, I just let it save the
    template to this same site folder, which is what it suggested by
    default, and it has been there ever since.
    I only created my own "templates" folder as an experiment
    after your first suggestion. I have now renamed it "Templates"
    (upper case T) and the template is still not found with File >
    New> Page from Template.
    Sorry I am not sure if I understand exactly what you mean by
    "A folder in the root of the "local site folder"". Is this the same
    as or different from the site folder I created and saved the html,
    css, and image files to? (which is in Documents) If different,
    where can I find it?
    I searched my system for ALL folders named Templates, and
    found none that I believe could be associated with DW. Is this in
    appdata or hidden location?
    Many Thanks

  • Image links broken when creating a page from template

    I have created a page in dw cs4 and saved it as a template. I have a navigation bar in a div tag. The image renders great in the template. I save the template. I go to File>New>PagefromTemplate and choose the template. I save the page as index.html. The links to the navbar images are broken. I can see the difference in the code, but I don't know why it's changing the code. I know it's just a simple link problem, but I don't know how to fix it and I don't understand why the code is changing. I have made the links relative to the document, and have gone through other settings and solutions on this forum and nothing fixes it. Any help would be most appreciated.
    Here is the code for the template:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Welcome to Pennyhill - Custom Furnishing for Home and Office</title>
    <!-- TemplateEndEditable -->
    <link href="../pennyhill.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
       var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
         var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
         if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
       var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
         d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
       if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
       for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
       if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
       var i,img,nbArr,args=MM_nbGroup.arguments;
       if (event == "init" && args.length > 2) {
         if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
           img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
           if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
           nbArr[nbArr.length] = img;
           for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
             if (!img.MM_up) img.MM_up = img.src;
             img.src = img.MM_dn = args[i+1];
             nbArr[nbArr.length] = img;
       } else if (event == "over") {
         document.MM_nbOver = nbArr = new Array();
         for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
           if (!img.MM_up) img.MM_up = img.src;
           img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
           nbArr[nbArr.length] = img;
       } else if (event == "out" ) {
         for (i=0; i < document.MM_nbOver.length; i++) {
           img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
       } else if (event == "down") {
         nbArr = document[grpName];
         if (nbArr)
           for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
         document[grpName] = nbArr = new Array();
         for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
           if (!img.MM_up) img.MM_up = img.src;
           img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
           nbArr[nbArr.length] = img;
    //-->
    </script>
    </head>
    <body background="../swirlybackg.jpg" onload="MM_preloadImages('navbars/homedown.jpg','navbars/homeover.jpg')">
    <div id="wrapper">
       <div id="fabricR"></div>
       <div id="fabricL">
         <div id="nav"><a href="../index.html" target="_top" onclick="MM_nbGroup('down','group1','home','navbars/homedown.jpg',1)" onmouseover="MM_nbGroup('over','home','navbars/homeover.jpg','navbars/homedown.jpg',1)" onmouseout="MM_nbGroup('out')"><img src="navbars/homeup.jpg" alt="Home Button" name="home" border="0" id="home" onload="" /></a><br /></div>
         </div>
       <div id="header"></div>
       <!-- TemplateBeginEditable name="windowhomepg" -->
       <div id="windowhomepg"></div>
    <!-- TemplateEndEditable --></div>
    <div id="copyright">Copyright © 2009 Pennyhill Furnishings. All rights reserved.</div>
    </body>
    </html>
    Here is the code for the index.html page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/pennyhillbasichomenav.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Welcome to Pennyhill - Custom Furnishing for Home and Office</title>
    <!-- InstanceEndEditable -->
    <link href="pennyhill.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
       var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
         var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
         if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
       var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
         d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
       if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
       for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
       if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
       var i,img,nbArr,args=MM_nbGroup.arguments;
       if (event == "init" && args.length > 2) {
         if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
           img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
           if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
           nbArr[nbArr.length] = img;
           for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
             if (!img.MM_up) img.MM_up = img.src;
             img.src = img.MM_dn = args[i+1];
             nbArr[nbArr.length] = img;
       } else if (event == "over") {
         document.MM_nbOver = nbArr = new Array();
         for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
           if (!img.MM_up) img.MM_up = img.src;
           img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
           nbArr[nbArr.length] = img;
       } else if (event == "out" ) {
         for (i=0; i < document.MM_nbOver.length; i++) {
           img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
       } else if (event == "down") {
         nbArr = document[grpName];
         if (nbArr)
           for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
         document[grpName] = nbArr = new Array();
         for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
           if (!img.MM_up) img.MM_up = img.src;
           img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
           nbArr[nbArr.length] = img;
    //-->
    </script>
    </head>
    <body background="swirlybackg.jpg" onload="MM_preloadImages('navbars/homedown.jpg','navbars/homeover.jpg')">
    <div id="wrapper">
       <div id="fabricR"></div>
       <div id="fabricL">
         <div id="nav"><a href="index.html" target="_top" onclick="MM_nbGroup('down','group1','home','navbars/homedown.jpg',1)" onmouseover="MM_nbGroup('over','home','navbars/homeover.jpg','navbars/homedown.jpg',1)" onmouseout="MM_nbGroup('out')"><img src="navbars/homeup.jpg" alt="Home Button" name="home" border="0" id="home" onload="" /></a><br /></div>
         </div>
       <div id="header"></div>
       <!-- InstanceBeginEditable name="windowhomepg" -->
       <div id="windowhomepg"><script type="text/javascript" src="v3flashslideshow/slideshow.js"></script>
    <!-- Begin XML Flash Slideshow v3 -->
       <script type="text/javascript">
    // <![CDATA[
    XMLFlashSlideshow_v3({swf:'v3flashslideshow/slideshow.swf',w:'315',h:'350',redirect:'',us ePreloader:'true',xml:'v3flashslideshow/slideshow_data7.xml',preventCache:'true',disableMu ltipleXML:'false',initXML:'%3C?xml%20version=%221.0%22%20encoding=%22utf-8%22?%3E%3Cslides how%20version=%223%22%3E%0A%20%20%3Cstyles%3E%0A%20%20%20%20%3CPreloader%20label=%22Loadin g%20%7BN%7D%2525%22%20iconColor=%22#666666%22%20iconAlpha=%2270%22%20iconWidth=%2250%22/%3 E%0A%20%20%20%20%3CPreloaderLabel%20font=%22Verdana%22%20size=%2210%22%20color=%22#666666% 22%20bold=%22false%22/%3E%0A%20%20%20%20%3CBackground%20backgroundColor=%22#FFFFFF%22%20ba ckgroundAlpha=%22100%22%20bevelColor=%22#FFFFFF%22%20bevelStrength=%2270%22%20borderWidth= %220%22%20borderColor=%22#FFFFFF%22/%3E%0A%20%20%20%20%3CLoaderAnimation%20type=%22circle% 22%20color=%22#FFFFFF%22%20alphaBackground=%2220%22%20alphaInner=%2240%22%20frameWidth=%22 2%22%20width=%2250%22%20height=%2250%22/%3E%0A%20%20%20%20%3CDataLoader%20useAnimation=%22 true%22%20useLabel=%22true%22%20labelPlacement=%22bottom%22%20fadeOutDuration=%22400%22%20 textFormat=%22loader_text%22/%3E%0A%20%20%3C/styles%3E%0A%20%20%3Clocalization%3E%0A%20%20 %20%20%3Ctext%20orig=%22Loading%20Data...%22%20local=%22Loading%20Data...%22%20desc=%22The %20label%20displayed%20while%20data%20file(s)%20are%20being%20loaded%22/%3E%0A%20%20%3C/lo calization%3E%0A%20%20%3Cfonts%3E%0A%20%20%20%20%3Cfont%20id=%22loader_text%22%20name=%22P ixelade%22%20embed=%22true%22%20size=%2213%22%20color=%22#666666%22%20bold=%22false%22%20s electable=%22false%22%20align=%22left%22/%3E%0A%20%20%3C/fonts%3E%0A%3C/slideshow%3E'});
    // ]]>
       </script>
       <!-- End XML Flash Slideshow v3 --></div>
    <!-- InstanceEndEditable --></div>
    <div id="copyright">Copyright © 2009 Pennyhill Furnishings. All rights reserved.</div>
    </body>
    <!-- InstanceEnd --></html>
    Here is a link to the site:
    http://www.pennyhillfurnishings.com
    Any help would be most appreciated. Thanks.

    Ok, I figured this one out, finally. I had my navbar image files in a folder in the Templates folder. I found, buried deep in another thread about something else, that DW doesn't like anything else to be in the Templates folder except the Templates files. So I put the Navbar folder on the root level, out of the Templates folder, and the page is rendering perfectly in Firefox, Safari and IE on Mac and PC.

  • How to create new page from EBS

    Hi
    I want to create new page through EBS
    is that possible
    and
    how?

    HI
    Now page is run successfully
    but when it opens then It gives an error like:
    Exception Details. >oracle.apps.fnd.framework.OAException: Application: ICX, Message Name: Could not find the specified responsibility.
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(Unknown Source)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(Unknown Source)
         at runregion.jspService(_runregion.java:132)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)

  • Creating Short Videos From Longer Main Video

    I have Adobe Premiere Elements 4.  I have old family videos on a DVD (each one is 30 minutes long).  I want to edit the 30 minute video into smaller 5-7 minute video segments.  Then I want to create a separate video file for YouTube from each segment.  Is there a way to do that within Elements 4 without disgarding the other video segments each time?  Whenever I divide up the video into segments, Elements wants to create the output video using ALL of the segments rather than just one of them.  Thanks
    Ed

    Make sure that you're using a project preset for DVD and hard drive camcorders.
    Import your DVD video into your project and place it on the timeline.
    Then set the Work Area Bar over the segment you want to output and go to Share/Personal Computer/WMV. Before you output your video, check the box that says Share Work Area Bar only.
    Then move the Work Area Bar so that it is over the next segment, etc.

  • How do you automatically create a page from an entry in another list?

    I have a custom list with lots of entries and I would like to set it up so that by adding a new entry to my list a new site page is automatically created for that entry. I thought I could configure this by using lookup columns by adding these colums to the
    site pages list which are linked to the columns in my custom list. That way the site pages list will be populated as I add more entries to my custom list. However I tried this and none of my entries from my custom list were displayed.So how would I go about
    doing this? It would be great if a new page was automatically created from a template as well.
    Thanks!

    Hi,
    Please check URL
    http://sharepointryan.com/2013/09/10/create-a-sharepoint-site-spweb-using-rest-in-spd-2013-workflow/ it might help you !!
    Regards
    PT

  • Creating separate forms from Database

    I'm using Acrobat 9.1.2 and LiveCycle Designer ES ver. 8.2.1x.
    I have an MS Access database populated with names/info regarding various people (Customers).  I'm trying to create/generate separate (Order) forms, one for each Customer, each pre-populated with the Customer's contact information from the database.  I want to e-mail each customized form to each Customer.
    Each Customer should be able to change/correct inaccurate Customer information on the form (set control "Type" to "Calculated - User can override"?).
    Each form will also have a table containing various "Products" (not connected to the database) and drop-down list controls from which each Customer can select the number/quantity of each Product he/she wants to order.  Price extensions, subtotals, and totals are all calculated using FormCalc.
    The Customer will then be able to both "Submit by e-mail," and "Print" and return the form by mail with his/her payment.  I will then collect/assemble the returned .xml files and import them into the MS Access database myself.
    Where I'm hung up is when I connect the Order form to the database, only one form is created, and only data from the first record appears in it.  How do I create one form for each Customer from the database?
    You can e-mail me at [email protected]

    So each record in the DB represents a separate instance of the form to be mailed out to someone.....right?
    Normally that level of functionality is done server side but there is one reason why you may not want to do this clicent side. Let me explain. You woudl have to write an automation script that woudl retrieve each record from the DB. Once a record is retrieved you coudl automate the mail of the doc , then get the next record and mail ...etc...until all records are done. All of this is possible except for the sending of the email. Acrobat/Reader will allow you to create the email message and control all aspects of it, but it will not allow you to send an email without the user hitting the send button. So if you want to have the mail generated, then hit send after every instance then it could be done.
    If you do this using server products then this is not an issue and can be easily done, but note that the cost of the server products will make the solution out of reach for all but the company's that do mass mailings or e-statements etc.
    Hope that helps
    Paul

Maybe you are looking for

  • How to insert a new step type into a submenu?

    Hi! I'm inserting a step type into the MyTypes.ini file with c++. With the code below I managed to put it into a menu (in the step type menu editor it is called "Group"). But I want a sub menu. How can I put it into a sub menu (in c++)? Who can help

  • HT2506 How do I get Adobe Acrobat to see/print pdf forms I've filled out in Preview

    I've been working in Preview and filling out Adobe Acrobat created forms according to instructions from the help in Preview.  However, whent these filled forms are submitted to someone and opened in Adobe Acrobat, they can neither see what I've fille

  • Errors while upgrading from 9i to 11gR1 during catuprd.sql

    Hi, I am very new into the world of databases and am learning it the hard way. Testing all sorts of work on my home PC. I am in the process of upgrading my Win 32 9.2.0.8 to 11gR1 and am at the stage of running catupgrd.sql. The SQL ran for hours and

  • Wats the probs??

    hei why u guys banned me? i never say your card is sound bad and i never say any bad news in your back bout that card or saying anything bad in other forum web and i knew wat ever product is it there must be some limitation and other powerfull works

  • Sharing a PM's project with a TeamMember using SharePoint Security Mode

    When using SharePoint Security Mode, is it possible for a Project Manager to share a his project plan with a particular Team Member?  If so what are the steps? I am asking because we want certain Team Member to be the Status Manager for certain assig