Document Printing/Exporting Offset

Not too long ago I upgraded from CS 4 to 5.5.  I haven't done much printing until now. 
I'm finding everything in InDesign that I print or export to PDF is offset by 1/8 inch to the left, leaving a wider margin on the right.  (As a PDF, this error becomes visible onscreen.)   I have checked every setting I can think of and everything looks correct.
I did some tests to be sure it wasn't a driver or printer problem by drawing boxes in Pages and Word.  They print flawlessly. 
Could there be something new in 5.5 that I'm unaware of causing this?
Thanks,
Tim

I trashed my preferences via the keyboard shortcut.  Problem persists.  However, PDF export print improved to about 1/16 inch offset. 
Something just occurred me, I know you have to have Java installed to run CS apps.  Apple recently updated and that messed up some web work I was doing.  I wonder if they could be related?  Longshot and I suppose more people would have the same problem.
Related to after trashing the prefs.  It's been years since I had to redo prefs.  In dialog boxes (like New Document) I thought you set what type of measurements they display under preferences->Units & Increments.  Am I wrong or did that change, as I can't get them back to displaying inches.
Thanks.

Similar Messages

  • Print, Export and Page Navigation Buttons in the Report

    When I view a report through CR4E, the generated report has 3 buttons namely Print, Export and Page Navigation buttons. But when I click on either of the buttons I get a 'null pointer exception'. This is a critical error as I am unable to navigate past the first page. Do I have to add code to these buttons? If not, why am I getting an error? Kindly solve my problem as soon as possible.

    <p>Looking at your code it appears that you are storing the ReportSource in session prior to passing in the ResultSet. This will create a problem when a postback is made on  the viewer page (which all of the viewer actions do). If you look at the sample code which is generated when you use the JSP Page Wizard you will notice that the ResultSet is passed to the ReportClientDocument object prior to it being stored in session. Then, when the page is called again this object is retrieved and the ReportSource is used by the viewer. You can quickly run the test using one of our sample reports to see what I am talking about. The code below was generated using the Consolidated Balance Sheet.rpt and did not experience any problems doing any of the viewer actions.</p><%@page import="com.businessobjects.samples.JRCHelperSample,<br />com.crystaldecisions.report.web.viewer.CrystalReportViewer,<br />com.crystaldecisions.reports.sdk.ReportClientDocument,<br />com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,<br />com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,<br />com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,<br />java.sql.Connection,<br />java.sql.DriverManager,<br />java.sql.ResultSet,<br />java.sql.SQLException,<br />java.sql.Statement"%><%<br /><br /><br />    try {<br /><br />        String reportName = "Sample Reports/Consolidated Balance Sheet.rpt";<br />        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);<br /><br />        if (clientDoc == null) {<br /><br />            clientDoc = new ReportClientDocument();<br />            <br />            // Open report<br />            clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);<br /><br />  <br />            {<br />                // **** POPULATE MAIN REPORT ****<br />                {<br />                     // Connection Info for fetching the resultSet<br />                    String connectStr = "jdbc:derby:classpath:/Xtreme";<br />                    String driverName = "org.apache.derby.jdbc.EmbeddedDriver";<br />                    String userName = "dbuser";        // TODO: Fill in database user<br />                    String password = "dbpassword";    // TODO: Fill in valid password<br /><br />                    String query = "SELECT CUSTOMER_NAME FROM APP.CUSTOMER WHERE COUNTRY = &#39;Australia&#39;";<br /><br />                    <br />                    String tableAlias = "FINANCIALS";        // TODO: Change to correct table alias<br /><br />                     <br />                    JRCHelperSample.passResultSet(clientDoc, fetchResultSet(driverName, connectStr, userName, password, query),<br />                        tableAlias, "");<br />                }<br /><br /><br />            }<br />        <br />            // Store the report document in session<br />            session.setAttribute(reportName, clientDoc);<br /><br />        }<br /><br /><br />            {<br />                // Create the CrystalReportViewer object<br />                CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();<br /><br />                //    set the reportsource property of the viewer<br />                IReportSource reportSource = clientDoc.getReportSource();                <br />                crystalReportPageViewer.setReportSource(reportSource);<br /><br />                // set viewer attributes<br />                crystalReportPageViewer.setOwnPage(true);<br />                crystalReportPageViewer.setOwnForm(true);<br /><br />                // Process the report<br />                crystalReportPageViewer.processHttpRequest(request, response, application, null); <br /><br />            }<br />            <br /><br />    } catch (ReportSDKExceptionBase e) {<br />        out.println(e);<br />    } <br />    <br />%><%!<br />// Simple utility function for obtaining result sets that will be pushed into the report.  <br />// This is just standard querying of a Java result set and does NOT involve any <br />// Crystal JRC SDK functions. <br /><br />    private static ResultSet fetchResultSet(String driverName,<br />            String connectStr, String userName, String password, String query) throws SQLException, ClassNotFoundException {<br /><br />        //Load JDBC driver for the database that will be queried    <br />        Class.forName(driverName);<br /><br />        Connection connection = DriverManager.getConnection(connectStr, userName, password);<br />        Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);<br /><br />        //Execute query and return result sets<br />        return statement.executeQuery(query);<br /><br />}%><p>Try using the code generated from the wizard to see if it works for you as well. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • How to include Print & Export Buttons in VC

    Hi
    I developed 1 Dashboard with Tables(4) & Graphs(4).
    My requirement is to include  PRINT & EXPORT TO PDF BUTTONS so that users can Print or export the all the items in dashboard or particular item to a PDF
    Please advise how can i achieve this
    Thanks

    Hi
    Refer the link below. Detail procedure of exporting the data to clipboard,excel & PDF isgiven -
    http://sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/805709cb-ec97-2910-04b8-f3d6303d8d3b
    (Check the appendix at the end of this document, that is also important)
    Also if you want to print the dashboard follow th steps below -
    1. Include one form & right click on it & go to 'Toolbars'
    2. Create Button in it & assign the system action 'Print'
    3. You will get various options for it (Print Table, Print Whole page etc.)
    4. Select Print Whole page.
    5. When you execute thei model in run time you will get one button in that. When user clicks this button, he will get normal print popup window which we get before printing anything.
    Regards
    Sandeep

  • "AcroRd32.exe  /t" print a PDF document ( print only, no need to open )

    I'm using the following command to print a PDF document:
    "D:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" /t "D:\R104-20071025165656.pdf" "\\192.168.0.4\hp" "hp LaserJet 1000" "\\192.168.0.4\hp"
    Now it works fine! But I have more request:
    I want a command that only send the file to printer and no need to open the PDF file on local system.
    So anybody can help me?
    Thanks in advance!

    Dear Pedja,
    My program is a desktop application, no a web application. It's not the same as you. And hope the following codes can help you :)
    private void exportReportToPrinter(JasperPrint jasperPrint,int copyNum, String printerName, MediaSizeName mediaSizeName) throws Exception
    // create the print service exporter so that we can print to a named
    // printer
    JRPrintServiceExporter exporter = new JRPrintServiceExporter();
    // set the report to print
    exporter.setParameter(JRPrintServiceExporterParameter.JASPER_PRINT, jasperPrint);
    // tell the exporter to print 1 copy on A4 paper
    PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
    aset.add(new Copies(copyNum));
    aset.add(mediaSizeName);
    exporter.setParameter(JRPrintServiceExporterParameter.PRINT_REQUEST_ATTRIBUTE_SET, aset);
    // let the exporter know which printer we want to print on
    PrintServiceAttributeSet serviceAttributeSet = new HashPrintServiceAttributeSet();
    serviceAttributeSet.add(new PrinterName(printerName, null));
    exporter.setParameter(JRPrintServiceExporterParameter.PRINT_SERVICE_ATTRIBUTE_SET, serviceAttributeSet);
    // print it
    exporter.exportReport();
    Muiz

  • Looking for a way to automate a print/export function

    I have a document with a 1000 pages, and want to print/export in 10 page ranges (i.e. 1-10, 11-20, 21-30, etc.) to end up with 100 individual files. Is there a way to do this one time as oppose to print/export 100 times?

    The script method would work, however for my post, I used a generic example. The real project would be many documents with various page counts and various ranges. The range would be consistent throughout that document, but it could be every 2 pages, every 4 pages, every 8 pages, etc.
    I did check the scripting forum, and there is a script posted to print every page to file. I imagine I could modify this one, but at this moment without knowing all the page factors involved, I don't know if the script method is the most viable.
    What I was really wishing for... a magical code that could easily be entered into the Page Range field that would separate as needed.

  • Customs Documents for Export Declaration - Output

    Hi ,
    i have created Billing document in R3, in GTS customs docuement generated for that billing doc.
    when  i am Executing the message under Communication View  giving error message "Cannot execute; message P0350 is incomplete"
    Could you please let me know which config i missed out.
    and also when i am check the message message throwing as "Executor/sender has not been maintained in customs document xxxxxxxxx" please let me know where i need to maintain the Sender"
    I want to see print preview on sereen for Certificate of Origin (US) for customs document for export declaration.
    please guide me on this.
    Regards
    Tarun

    Hi,
    You can first identify the incomplete schema assigned to the message (P0350).
    SPRO -> Global Trade Services -> SAP Customs Management -> General Settings -> Communication Processes -> Define Messages for Communications.
    Once you have find the incomplete schema, review the configurations to find which field is missing. From the error message, it might be the processor for the customs document.
    SPRO -> Global Trade Services -> SAP Customs Management -> General Settings -> Document Structure -> Control incompleteness checks in Customs Shipments and Customs Declarations
    Wen

  • Error in SBO-SD-PRT Document Printing - Documento Number

    Hello experts.
    I have a problem in :
    A/R Sales > Document Printing
    Printing invoices from here, the document number is set on the first available number in the serires.
    This happens only when printing invoices. If i print order or delivery notes, the number printed is correct.
    If i print  a single invoice from A7R invoice module, the number is correct.
    My configuration is:
    SAPB1 2007 A (8.00.181) SP:00 PL:49
    do you have any suggestion??

    HI Gordon...
    Thank's for the reply...
    In ADMINISTRATION > System Initialisation > Printing Preferences > TAB Per Document > AR Invoices
    I've this setting:
    Export  to MSWord - NO FLAG
    Print Document - NOFLAG
    Print incoming payment with invoice - NO
    Print incoming payment & invoice on One Page - NO FLAG
    Print discount data - FLAG
    Print Mfr catalogue no instead of item number - NO FLAG
    hen batch/serial no. exist print - Document and batch / serial no.
    the problem occurs after upgrade from PL42 to PL49.
    Thank's in advance

  • ARE-1 document Print

    Hi All,
    Please Let me know how to print ARE-1 document,
    Let me know what are the settings required
    Immediate Response will be Appreciated
    Regards,
    Abid.

    Hi,
    ARE.1 is the export document for export clearance (Annexure-14), which shall be prepared in quintuplicate (5 copies). This is similar to the erstwhile AR.4. This document shall bear running serial number beginning from the first day of the financial year.On A.R.E.1, certain declarations are required to be given by the exporter. These should be signed by the exporter or his authorised agent.
    ARE-1 is a form, in India, that companies have to fill out when they remove
    excisable goods from their manufacturing plants for export and this exempts them from paying excise duty on those clearances or export shipments.
    Settings in SAP :
    1. IMG > Logistics Gengeral > Tax on goods movement > India > Business Transactions > Exports under Excise Regulations > Exports > Make settings for ARE-1 Procedure
    (in the above mentioned IMG activity - you make the settings that control how the ARE documents transaction works for ARE-1s. These settings apply to exports
    under bond and exports under claim for rebate.)
    2. IMG > Logistics Gengeral > Tax on goods movement > India > Business Transactions > Exports under Excise Regulations > Printouts of ARE Documents > Maintiain Output Type
    (Here we define output type for printing ARE-1 from the ARE document (J1IA101) transaction and along with this we specify associated programme, FORM routine and form) and proceed further by specifying Printers
    3. IMG > Logistics Gengeral > Tax on goods movement > India > Tools > Number Ranges
    ( Here we define number ranges for the object - J_1IARE1 - ARE1 Doc No object based on Series Group)
    The standard output type for ARE-1 is J1IB. When processing via t-code J1IA101, you will have to tick on print ARE1
    Hope it helps
    Thanks and Regards,

  • Print/Export book as spreads

    It is possible to make a InDesign book print or pdf as spreads. But the last page of an document/chapter and the first page of the next document/chapter are always single pages! Therefore many dtp-ers choose not to use the InDesign book option, but make the complete book in one document.
    I would love to send my complete InDesign book as pdf in spreads for email review. Please let the first and last page of the book documents be exported as spreads, as if it was made in one document.

    Found out how to make a PDF in spreads from a InDesign Book document... Also the last page of a document/chapter and the first page of the next document/chapter will be printed as a spread! YEAH...
    I do believe there must be a more efficient way to do it, but since nobody could tell me how... I have to do it the inefficient way! This is how i did it:
    * Make a single page PDF of the InDesign Book document (indb)
    In the menu of the InDesign Book panel/window select
    - Export Book to PDF
    * Open PDF in Acrobat Professional (PDF 1)
    * Delete first page !!!
    * Save As... (different name) (PDF 2) !!!
    * File Print...
    * Print (pop-up window)
    - Printer: Adobe PDF 8.0 / 9.0
    Copies & Pages (Print submenu)
    - Page Scaling: Multiple pages per sheet
    - Pages per scheet: Custom: 2 by 1
    - Page Order: Horizontal
    Layout (Print submenu)***
    - Pages per sheet: 2
    ! ATTENTION: check the page order before printing
    in the preview of Copies & Pages submenu!
    [Print]
    * Save (pop-up window) will pop-up
    Save As: ... (documentname)(PDF 3)
    Select location on you computer
    [Save]
    * Open PDF 1
    * and open PDF 3
    * Select first page off PDF 1
    * Drag an drop it in front of the spreads of PDF 3
    * Save this PDF (PDF 4)
    Now i have a PDF of my book in spread,
    except for the first page, which is a single page.
    Unfortunately there is a white margin/area around the spreads,
    because the Acrobat Print option Multiple pager per sheet does not make the pages Fit/Shrink to Printable Area.
    Footnote *** Layout (Print submenu); Pages per sheet: 2
    First i did not select this option, Acrobat was mixing up the Pages in the wrong order.

  • Issue w/ Queues in Server 10.5.5, Xerox 7760s: They print, but offset

    A little background:
    Currently we have a mix of 80 fully patched 10.4.11 and fully patched 10.5.5 clients printing directly to 4 identical Xerox Phaser 7760DXs via ipp. They work great. No problems with clients printing directly to the printer.
    -BUT-
    For reasons beyond the scope of this post, we MUST move the clients to use server queues (PaperCut).
    Server is now a clean test server running fully patched 10.5.5 OS X Server with just print services running.
    We set up 4 queues the usual way, and then set clients to print to the named queues via LPR, designate the correct driver/ppds on the client.
    The clients CAN print, however, out of every app we try, from TextEdit to Illustrator CS3 -anything-
    the print outs are blown-up or offset really noticeably -
    Say you set up Preview to
    print a 7"X5" jpg to centered, on tabloid in landscape. Set the scale option to %100 (no scaling) and
    it prints basically off center: up and to the left about 25% of the total page size- really off.
    Again, not app related, textedit does this with a single word of centered text, photoshop CS 3, BBEdit, Firefox, etc every print, all print out offset more or less to the same degree, no matter how one sets them up.
    Same clients, setups, but printing to the printer directly, rather than by the queues, in all the same apps, you never have this issue.
    We did look at this as far as the pstop file version and 10.5.5:
    http://www.macosxhints.com/article.php?story=20080925104227545&query=print%2Bque
    and no, substituting the older pstop files did not correct the situation.
    Ideas, input greatly appreciated.

    A little background:
    Currently we have a mix of 80 fully patched 10.4.11 and fully patched 10.5.5 clients printing directly to 4 identical Xerox Phaser 7760DXs via ipp. They work great. No problems with clients printing directly to the printer.
    -BUT-
    For reasons beyond the scope of this post, we MUST move the clients to use server queues (PaperCut).
    Server is now a clean test server running fully patched 10.5.5 OS X Server with just print services running.
    We set up 4 queues the usual way, and then set clients to print to the named queues via LPR, designate the correct driver/ppds on the client.
    The clients CAN print, however, out of every app we try, from TextEdit to Illustrator CS3 -anything-
    the print outs are blown-up or offset really noticeably -
    Say you set up Preview to
    print a 7"X5" jpg to centered, on tabloid in landscape. Set the scale option to %100 (no scaling) and
    it prints basically off center: up and to the left about 25% of the total page size- really off.
    Again, not app related, textedit does this with a single word of centered text, photoshop CS 3, BBEdit, Firefox, etc every print, all print out offset more or less to the same degree, no matter how one sets them up.
    Same clients, setups, but printing to the printer directly, rather than by the queues, in all the same apps, you never have this issue.
    We did look at this as far as the pstop file version and 10.5.5:
    http://www.macosxhints.com/article.php?story=20080925104227545&query=print%2Bque
    and no, substituting the older pstop files did not correct the situation.
    Ideas, input greatly appreciated.

  • All the Pages are Printed - Document Printing Sales Orders

    When using the Document Printing option for Sales Orders, if I select multiple documents and select print I get a message after each document that says "All the Pages are Printed", then the next document comes for printing. I also get a prompt each time whether or not to print Sales Order only or Sales Order and Pick List.
    I don't have the same issue if printing Invoices from Document Printing. It asks what to print and prints all records without additional prompts between each record. I don't see anything in Print Preferences that would cause the Order to act differently from the Invoice.
    We are using B1 9.0 PL 06.
    Alan

    Hello there, linafrompereira.
    The following portion of the online Pages Help for Mac provides information on grouping items in Pages:
    Layer, group, and lock objects - Pages Help for Mac
    http://help.apple.com/pages/mac/5.2/#/tan5eab46568
    Group and ungroup objects
    Shift-click to select multiple objects.
    In the Arrange pane of the Format inspector, click Group (or choose Arrange > Group from the Arrange menu at the top of your computer screen).
    To ungroup an object, select it, then click Ungroup or choose Arrange > Ungroup.
    Tip: You can Control-click objects, then choose Group or Ungroup from the shortcut menu. You can also add these buttons to the toolbar: Group and Ungroup.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Report Print & Export Issue (File Download Box appears)

    We send a URL to Crystal Enterprise which runs a script, logs on, finds folder, finds report and displays in the Crystal report viewer. All that works fine....
    However, when you select the print icon or the export icon a Windows Internet Explorer box to select page range etc. and then when you say OK, you recieve a File Download Box asking to Open/Save/Cancel one of the following:
    Print - Name: CrystalViewer.pdf, and Type of pdf_auto_file
    Export - Name: CrystalViewer.rpt, and Type of CrystalReports
    I have no IDEA what he is trying to do but he sure ain't printing.  I can only assume that I have a missing part that he is trying to download at the time of print/export. Or that there is something set in the script that is killing me...
      Sub ViewReport( iStore, id, token)  
      URI = "./viewer/en/viewreport.csp?id=" & id & "&token=" & token & GetPrompt
       Set viewer = Server.CreateObject( "CrystalReports.CrystalReportViewer" )
       Set rptFactory = iStore.EnterpriseSession.Service("", "PSReportFactory")
       Set rptSource = rptFactory.OpenReportSource(CInt(id))
       ' Set the viewer's properties to prepare it for viewing.
       With viewer
          .ReportSource       = rptSource
          .EnterpriseLogon    = iStore.EnterpriseSession
          .URI                = URI
          .ISOWNPAGE          = TRUE
          .ISOWNFORM          = TRUE
          .HasPrintButton     = TRUE
          .ISDISPLAYPAGE      = true
          .isdisplaytoolbar   = true
          .isDisplayGroupTree = true
          .GroupTreeWidthUnit = 1
          .GroupTreeWidth     = 17
          .HasRefreshButton   = true
          .HasExportButton    = true
          .ParameterFields    = GetParams
       End With
        If Err.Number <> 0 Then
          'There was an error setting up the viewer.
          Response.Write "<p>Unable to create report viewer. " & Err.number
       Else
          'Process the request and launch the viewer.
          viewer.ProcessHttpRequest Request, Response, Session
          'viewer.refresh
       End If
    End Sub
    Help me???

    Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Crystal Report/STRUTS: Error (404) when clicking on Control Buttons (Print, Export, Next, Previous, etc...) on report viewer

    Post Author: jwenny
    CA Forum: Deployment
    Need help badly!!!
    We are using the crystal reports plugin for STRUTS.
    We are able to display the report in the crystal report viewer.  However, when we click any control buttons (print, export, etc...), then we get:
    JSPG0036E:  Failed to find resource /Report-viewer.jsp
    We then moved Report-viewer.jsp to the WebContents folder (root directory) and got a different error when we clicked any control button:
    Error:  400 page not found
    Does anyone know how to solve this problem?  For instance, is there a setting or parameter that needs to be set?
    Greatly appreciate any help!

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

  • Accounting document for Export Excise invoice

    Dear All,
    We have two scenario's one is Domestic Sales & Export Sale.
    In domestic sales as per the normal flow of document we create excise invoice after billing document and accounting documents are also generated and updated in the billing document accounting (VF02). Accounting document for excise invoice has been generated.
    However in export sales we create excise invoice with the reference of billing document but no accounting document has been generated for excise invoice.
    Can u please tell me where i have to make changes so my accounting document for export excise invoice will generate?
    Thanks & Regards,
    Ratish

    Hi ALL,
    There are 4 export scenario :
    1) Deemed export 2) Export under Bond 3) Export under claim for rebate [No bond] 4) Export under Letter of Undertaking.
    3) In export under no bond process is :- we pay the excise on the goods for exports and create the ARE-1 doc and send to port where the customers officials note the actual quantity of goods on the ARE-1 doc and stamped it. Then these stamped ARE-1 will be send to the excise range of the despatch plant(for exports) where we claim the rebate.
    Now if you are not able to generate the accounting doc for such a scenario some of the consultants may suggest u to use the user exit (J_1I7_USEREXIT_DUTY_IN_EXPORT) and pass the the value X to the parameter SUPPRESS_CALCULATION this intern will help u to generate the Accounting doc also. but real problem lies somewhere else.
    Actual Solution: Maintain J1ID (Customer excise details)
    for export customer maintained the excise indicator to 3 {Nil Duty} insted of 1 {100% tax}.
    Problem will be solved
    Regards
    Satish Zade

  • How can i  duplicate a document print layout from one DB to another DB?

    hi experts,
    I make all document print layouts in a test DB, and now I want to move them to my production DB.
    is there any easy way to copy a document layout from a database to another? please advise, thanks a lot.

    Hi,
    There is one more option
    1.Open the PLD in the test database
    2.Go to edit-> select all(including hidden fields)
    3.Go to edit->Copy
    4.Log off from test system(Administration-Choose company-select live database),log in live database
    5.Open the corresponding documents system pld
    6.Go to edit-select all
    7.In the properties window uncheck the visible checkbox(Under General tab)
    8.Save layout as different name say <Test>
    9.Again open the layout <Test>
    10.Go to edit-Paste and save layout.
    NB:Don't delete the existing fields,you should only hide them as mentioned in step7

Maybe you are looking for

  • Acrobat 9.0 PDFConverter toolbar missing in Excel 2003

    For some reason the PDFConverter toolbar disappeared in my installation of Excel 2003. I remember an error message flashing up but apparently I didn't pay enough attention. That happens all to often unfortunately. After an hour of searching several w

  • Folder size and library size don't match?

    I have my iTunes music library located on an external hard drive and when I do the "get info" tool on it it shows up being 43 gigs. However, when I'm using iTunes it says that my total music library is 19 gigs, my videos are only 383 mb, and my podca

  • Mass processing

    HI, Is it possible to st the Deletion flag to the process order through mass processing. Regards, Amit

  • Help compensating for menu bar height!

    I am trying to write a turn based game and I want to make a grid. However when I create the grid using the following code the last row appears off screen. I think this is due to the menu bar across the top with the close buttons and title. I can comp

  • BADI enhancement spot

    hi, I can see in a standard program the below code:     IF NOT badi_vlc_db_check IS INITIAL.       CALL BADI badi_vlc_db_check->read_before_write         CHANGING           disable_read_cv = disable_read_lv.     ENDIF. Please help me understand how d