Urgent: sizing a JEditorPane issues

Hi,
I need to build a table of HTML formatted text entries, where each of the entries is essentially a JEditorPane. So what I do is 2 JPanels, each of which has a Gridlayout. Into these I put components which are Jpanels containing a JEditorPane each.
When I do that I get a table with huge amounts of white space around every line of text. I cannot figure out where this white space comes from. There are no P or BR marks in the html. Also, although all the html is one-liners, the table lines do not nicely line up at all.
So I thought I'd set the size of these components to some predetermined, resonable size, like 200, 12. Now I don't see anything -- the content of the JEditorPane is entirely out of the visible area. When I make them a bit bigger, like 200, 32, I see the text, but again have some white space.
Does anybody have an idea what's going on here?
So essentially, the gallery contains a JScrollPane, which contains a Panel with 2 subpanels, each of which contains a column of these components. Each of these is a Jpanel containing a JEditorPane.
This might be an overly complex packaging of the JEditorPanes, but there is some method to that madness...
Thanks a lot for any ideas,
Andreas

Hi Andreas,
Did you find any solution for this ? I am facing the same problem.
When creating a new row in a JTable, with JEditorPane as the cell editor, some new lines are inserted and the cursor is positioned at the end of those unknown characters.
Thanx
MKPrasad.

Similar Messages

  • Print Sizing and Quality Issues

    When I print PDF documents I have issues with sizing and quality. I only have this issue with my Mac. Windows prints the files as they should be. I've tried two different printers, both over network. It doesn't matter whether I am in Adobe or in a browser. Basically it oversizes the documents and cuts off the edges. The quality on images and logos is severly degraded. This probelm existed in Lion and now in Mountain Lion. Any help?

    What we need are the clip properties & sequence settings in Final Cut Express.  Your screenshot is from a Finder window.
    It would appear you have a clip with nonstandard frame size (1366x768) in an H.264 file.  FCE cannot edit this material.  FCE is limited to specific codecs and frame sizes.  You need to convert your clip to QuickTime/Apple Intermediate Codec. If it's highdef widescreen then convert it to QT/AIC 1920x1080i.  Try using MPEG Streamclip to convert the source clip.
    You also need to be using a matching Easy Setup in Final Cut Express.  If your source media file is QT/AIC 1920x1080i then you should select the AVCHD Apple Intermediate Codec 1920x1080i60 Easy Setup in FCE -AND- then create a new sequence before importing your clip into FCE and placing it in your sequence (timeline)

  • Urgent : general abap performance issue

    HI floks
    i did some development in new smartform its working fine but i have issue in data base performance is 76% . but i utilize similar below code with various conditions in various 12 places . is it possible to reduce performance this type of code . check it and mail me how can i do it . if possible can suggest me fast .how much % is best for this type of performance issues.
    DATA : BEGIN OF ITVBRPC OCCURS 0,
           LV_POSNR LIKE VBRP-POSNR,
           END OF ITVBRPC.
    DATA : BEGIN OF ITKONVC OCCURS 0,
            LV_KNUMH LIKE KONV-KNUMH,
            LV_KSCHL LIKE KONV-KSCHL,
           END OF ITKONVC.
    DATA:  BEGIN OF ITKONHC OCCURS 0,
           LV_KNUMH LIKE KONH-KNUMH,
           LV_KSCHL LIKE KONH-KSCHL,
           LV_KZUST LIKE KONH-KZUST,
           END OF ITKONHC.
    DATA: BEGIN OF ITKONVC1 OCCURS 0,
           LV_KWERT LIKE KONV-KWERT,
           END OF ITKONVC1.
    DATA :  BEGIN OF ITCALCC OCCURS 0,
           LV_KWERT LIKE KONV-KWERT,
           END OF ITCALCC.
    DATA: COUNTC(3) TYPE n,
           TOTALC LIKE KONV-KWERT.
    SELECT POSNR FROM VBRP INTO ITVBRPC
      WHERE VBELN = INV_HEADER-VBELN AND ARKTX = WA_INVDATA-ARKTX .
    APPEND ITVBRPC.
    ENDSELECT.
    LOOP AT ITVBRPC.
    SELECT KNUMH KSCHL FROM KONV INTO ITKONVC WHERE KNUMV =
    LV_VBRK-KNUMV AND KPOSN = ITVBRPC-LV_POSNR AND KSCHL = 'ZLAC'.
    APPEND ITKONVC.
    ENDSELECT.
    ENDLOOP.
    SORT ITKONVC BY LV_KNUMH.
    DELETE ADJACENT DUPLICATES FROM ITKONVC.
    LOOP AT ITKONVC.
    SELECT KNUMH KSCHL KZUST FROM KONH INTO ITKONHC WHERE KNUMH = ITKONVC-LV_KNUMH AND KSCHL = 'ZLAC' AND KZUST = 'Z02'.
    APPEND ITKONHC.
    ENDSELECT.
    ENDLOOP.
    LOOP AT ITKONHC.
    SELECT KWERT FROM KONV INTO ITKONVC1 WHERE KNUMH = ITKONHC-LV_KNUMH AND
    KSCHL = ITKONHC-LV_KSCHL AND KNUMV = LV_VBRK-KNUMV.
    MOVE ITKONVC1-LV_KWERT TO ITCALCC-LV_KWERT.
    APPEND ITCALCC.
    ENDSELECT.
    endloop.
    LOOP AT ITCALCC.
    COUNTC = COUNTC + 1.
    TOTALC = TOTALC + ITCALCC-LV_KWERT.
      ENDLOOP.
    MOVE ITKONHC-LV_KSCHL TO LV_CKSCHL.
    MOVE TOTALC TO LV_CKWERT.
    it's urgent ..........
    thanks .
    bbbbye
    suresh

    You need to use for all entries instead of select inside the loop.
    Try this:
    DATA : BEGIN OF ITVBRPC OCCURS 0,
    VBELN LIKE VBRP-VBELN,
    LV_POSNR LIKE VBRP-POSNR,
    END OF ITVBRPC.
    DATA: IT_VBRPC_TMP like ITVBRPC occurs 0 with header line.
    DATA : BEGIN OF ITKONVC OCCURS 0,
    LV_KNUMH LIKE KONV-KNUMH,
    LV_KSCHL LIKE KONV-KSCHL,
    END OF ITKONVC.
    DATA: BEGIN OF ITKONHC OCCURS 0,
    LV_KNUMH LIKE KONH-KNUMH,
    LV_KSCHL LIKE KONH-KSCHL,
    LV_KZUST LIKE KONH-KZUST,
    END OF ITKONHC.
    DATA: BEGIN OF ITKONVC1 OCCURS 0,
    KNUMH LIKE KONV-KNUMH,
    KSCHL LIKE KONV- KSCHL,
    LV_KWERT LIKE KONV-KWERT,
    END OF ITKONVC1.
    DATA : BEGIN OF ITCALCC OCCURS 0,
    LV_KWERT LIKE KONV-KWERT,
    END OF ITCALCC.
    DATA: COUNTC(3) TYPE n,
    TOTALC LIKE KONV-KWERT.
    *SELECT POSNR FROM VBRP INTO ITVBRPC
    *WHERE VBELN = INV_HEADER-VBELN AND ARKTX = WA_INVDATA-ARKTX .
    *APPEND ITVBRPC.
    *ENDSELECT.
    SELECT VBELN POSNR FROM VBRP INTO TABLE ITVBRPC
    WHERE VBELN = INV_HEADER-VBELN AND
                     ARKTX = WA_INVDATA-ARKTX .
    If sy-subrc eq 0.
      IT_VBRPC_TMP[] = ITVBRPC[].
      Sort IT_VBRPC_TMP by vbeln posnr.
      Delete adjacent duplicates from IT_VBRPC_TMP comparing vbeln posnr.
    SELECT KNUMH KSCHL FROM KONV
                   INTO TABLE ITKONVC
                   WHERE KNUMV = LV_VBRK-KNUMV AND
                   KPOSN = ITVBRPC-LV_POSNR AND
                    KSCHL = 'ZLAC'.
    if sy-subrc eq 0.
       SORT ITKONVC BY LV_KNUMH.
        DELETE ADJACENT DUPLICATES FROM ITKONVC COMPARING LV_KNUMH.
       SELECT KNUMH KSCHL KZUST FROM KONH
                 INTO TABLE ITKONHC
                 WHERE KNUMH =  ITKONVC-LV_KNUMH AND
                               KSCHL = 'ZLAC' AND
                               KZUST = 'Z02'.
       if sy-subrc eq 0.
    SELECT KNUMH KSCHL KWERT FROM KONV
                   INTO TABLE ITKONVC1
                    WHERE KNUMH = ITKONHC-LV_KNUMH AND
                                   KSCHL = ITKONHC-LV_KSCHL AND
                                    KNUMV = LV_VBRK-KNUMV.
        Endif.
    Endif.
    Endif.
    *LOOP AT ITVBRPC.
    *SELECT KNUMH KSCHL FROM KONV INTO ITKONVC WHERE KNUMV =
    *LV_VBRK-KNUMV AND KPOSN = ITVBRPC-LV_POSNR AND KSCHL = 'ZLAC'.
    *APPEND ITKONVC.
    *ENDSELECT.
    *ENDLOOP.
    *SORT ITKONVC BY LV_KNUMH.
    *DELETE ADJACENT DUPLICATES FROM ITKONVC.
    *LOOP AT ITKONVC.
    SELECT KNUMH KSCHL KZUST FROM KONH INTO ITKONHC WHERE KNUMH = ITKONVC-LV_KNUMH AND KSCHL = 'ZLAC' AND KZUST = 'Z02'.
    *APPEND ITKONHC.
    *ENDSELECT.
    *ENDLOOP.
    *LOOP AT ITKONHC.
    *SELECT KWERT FROM KONV INTO ITKONVC1 WHERE KNUMH = ITKONHC-LV_KNUMH *AND
    *KSCHL = ITKONHC-LV_KSCHL AND KNUMV = LV_VBRK-KNUMV.
    *MOVE ITKONVC1-LV_KWERT TO ITCALCC-LV_KWERT.
    *APPEND ITCALCC.
    *ENDSELECT.
    *endloop.
    LOOP AT ITCALCC.
    COUNTC = COUNTC + 1.
    TOTALC = TOTALC + ITCALCC-LV_KWERT.
    ENDLOOP.
    MOVE ITKONHC-LV_KSCHL TO LV_CKSCHL.
    MOVE TOTALC TO LV_CKWERT.

  • Urgent!!!  Issue in using GOS(Generic Object Services)

    Hello Friends,
    I have created a GOS Business object and i am using this to attach documents at the selection screen of my programs.
    The implementation is successfull and working fine. When i execute my program, i can see the GOS Toolbar, i am able to upload document from my PC and view in the attachment list too.
    But the issue is, when i end my session, and try to see attachment list by executing the program again, it comes blank with no documents. This means, once i end the session, i am not able to see the attachments that i have created earlier.
    Any helpful input will be appreciated and rewarded.
    Thanks and Regards,
    Vikas Bittera.

    Hello Vikas
    The document has to be uploaded to the <b>BDS </b>(Business Document Service).
    I will give you an example how I did this:
    1. Create business object 'ZREPORT'.  " for attaching documents to reports
    2. Call transaction <b>OAER </b>(Business Document Service) with the following parameters:
        - Class name = 'ZREPORT' (my business object)
        - Class type  = 'BO' (business object)
        - Objekt key  = leave empty or enter name of report (if empty, a popup appears)
        - Storage system = 'BDS_DB' (seemed a good choice to me)
    3. Execute
    4. In the BDS choose tabstrip "<b>Create</b>" (lower left part of screen). Right-click on the <i>Word document icon </i>and choose<i> Import File</i> from the context menu.
    As soon as you have uploaded your Word document it is visible in your business object (attachment list). When you display the attachment list and right-click on the document you can directly open it in the BDS.
    Regards
      Uwe

  • Urgent please-sorting code issue in BIP

    Hi,
    issue with sort order in BIP reports. I gave code like this but saying expression error. Please help me.
    sort should be in the order of numbers , then upper case then lower case values.
    declared variable is <?variable: srtStr; "'01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'"?>
    then i am trying to apply code in my group
    <?for-each-group:ssAssetMgmtAsset;./ssReferenceNumber3?><?sort:current-group()/string-length(substring-before ($srtStr,substring(ssReferenceNumber3,1,1)));'ascending';data-type='text'?>
    the above code saying expression error
    Thanks,
    lax

    What is the exact error you get?
    I believe that the data-type (within the for-each-group) should be number. Try that and let me know if that fixes your issue.
    Thanks,
    Bipuser

  • URGENT: Service Call Activity Issue

    Hi guys, I have a seriously irritating issue concerning the linking of an activity to service call.
    As of Service Pack 01, Patch 36 (at least as far as I know) I get the following error when attempting to create and link an activity to a service call:
    Error Code: -5002
    Error Description: A service call activity does not exist
    I use the folliwing code;
    If oServ.GetByKey(MRI) Then
                    If DocType = "QT" Then
                        oAct = oComp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oContacts)
                        oAct.Activity = SAPbobsCOM.BoActivities.cn_Task
                        oAct.CardCode = oServ.CustomerCode
                        oAct.DocEntry = DocID
                        oAct.DocType = 23
                        oDoc = oComp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oQuotations)
                        If oDoc.GetByKey(DocID) Then
                            oAct.Notes = "Sales Quote: " & oDoc.Comments
                        End If
                        oAct.Details = "Sales Quote " & DocID & " auto created by MRI " & MRI & ""
                        If oAct.Add <> 0 Then
                            oApp.SetStatusBarMessage("Error adding Linked Document Activity for Sales Quote " & DocID & " : " & oComp.GetLastErrorDescription)
                            oLog.WriteLog("Error adding Linked Document Activity for Sales Quote " & DocID & " : " & oComp.GetLastErrorCode & oComp.GetLastErrorDescription, EventLogEntryType.Error)
                        Else
                            oServ.Activities.Add()
                            oServ.Activities.ActivityCode = oComp.GetNewObjectKey
                            oServ.Activities.SetCurrentLine(oServ.Activities.Count() - 1)
                        End If
    If oServ.Update <> 0 Then
                        oApp.SetStatusBarMessage("Error linking Expense Document " & DocID & ":" & oComp.GetLastErrorDescription)
                        oLog.WriteLog("Error linking Expense Document " & DocID & ":" & oComp.GetLastErrorCode & "-" & oComp.GetLastErrorDescription, EventLogEntryType.Error)
                    End If
    the Activity is added without any problem, but the error comes when linking it to the Service Call (oServ.Update)
    Can you please help, I'm going insane with this problem.

    this is how i got it to work:
    ServiceCalls sc = null;
    sc = (ServiceCalls)company.GetBusinessObject(BoObjectTypes.oServiceCalls);
    if (!sc.GetByKey(callId))
          throw new Exception("Failed to add service call activity! Service call does not exist!");
    if (sc.Activities.Count == 1)
             sc.Activities.SetCurrentLine(sc.Activities.Count - 1);
             string temp = sc.Activities.ActivityCode.ToString();
             if (!string.IsNullOrEmpty(temp) && !temp.Equals("0"))
                     sc.Activities.Add();
    else
             sc.Activities.Add();
    sc.Activities.SetCurrentLine(sc.Activities.Count - 1);
    sc.Activities.ActivityCode = int.Parse(lastAcctivity);
    if (sc.Update() != 0)
             company.GetLastError(out errorCode, out errorMsg);
              if (null != sc)
                      System.Runtime.InteropServices.Marshal.ReleaseComObject(sc);
                      sc = null;
    throw new Exception(errorCode + " -> " + errorMsg);
    You could either use that piece of code or make an insert in SCL5.

  • [URGENT] Business Account Closing Issue

    I am the owner of a company which uses PAID skype accounts for business purpose. I recebtly received an e-mail from skype that tells me these accpunt are going to be closed (deleted) in 24 hours. Please contact me urgently.
    Personally identifiable information redacted for privacy.

    Hi, bodyinoita, and welcome to the Community,
    Please contact Skype Customer Service to resolve this.  Here is a link to the instruction on how to contact Skype Customer Service via their secure portal: Contact Customer Service
    Here are a few extra notes to guide you along the way ...
    You will need to proceed through each step, one at a time. Sign on to the Skype website as requested. Choose the subject and topic which most closely matches the item you need assistance with. Then, continue past Step 2 of the instruction where several articles from the FAQ library will appear for you to review, and proceed to Step 3, Continue Support Request (the blue "button" appears at the lower right corner of the website page). You may also skip through Step 4 where you will be referred back here to the Community; no need to do this as the Community is where you started. When you complete the web-form and click Submit, your information is relayed to Skype and you will receive a reply via e-mail unless you are transferred to start an instant message chat session with a Customer Service agent.
    If you experience difficulty reaching Skype Customer Service, try again using a different web browser. Also, look to approve a pop-up dialogue box which would connect you to start an instant message chat with a customer service agent. If you have pop-ups blocked in your browser settings, this will also impede reaching an agent.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • URGENT: WS data control - Issue in Application server 10.1.3.3

    Hi All,
    I created a ADF web service data control and used that data control in an ADF JSPX page. When I tested the page in JDeveloper 10.1.3.3 (Embedded OC4J) it worked fine. But when I deployed the same in Application Server 10.1.3.3. it shows the following exception:
    javax.faces.el.EvaluationException: oracle.jbo.JboException: JBO-29000: DCA-40012: Failed to create a connection to the Web Service
    Similar issue is already posted in the following threads:
    Re: Web sevice data control deploy error.
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=452703&start=15&tstart=240
    There is bug (ID: 5878326 ) raised in Metalink for this. I applied the patch 5878326 as mentioned in the Metalink. But after applying the patch also, the same exception occurs. I deleted connections.xml and then recreated, but no success.
    I also tried to create a new web service data control and used it in a new ADF JSPX page, again it shows the same exception in App Server 10.1.3.3.
    But the bug in Metalink is closed. Please let me if anyone is facing the same issue and the solution for this.

    Please post ADF related issues to the JDeveloper forum -- ADF is a runtime that gets installed on the app server, so the ADF folks are the most likely of all to be able to be of help.
    -steve-

  • URGENT:  Journal Batch Workflow Issue

    Hi All,
    I am facing issue with Journal Batch Workflow. There is function called "Find Approver",when we go for Approve the Journal then it returns "NO Approver Find".But when sysadmin reassign to requestor and requestor response as "Problem Fixed" then it Find Approver and it also went to next Approver. I tried to debug the Workflow, basically two tables are used in Find Approver function "GL_HR_EMPLOYEES_CURRENT_V & wf_users" ,both table has the record for requestor and next approver.
    Please help on this.
    Thanks,
    Shishir

    There are several MOS Docs that discuss this issue - pl see if they are applicable here
    268635.1 - Journal Approval : Could not find an approver
    563487.1 - Journal Is Sent For Approval/No Approver Found-Supervisor Is In Place
    737224.1 - What Are The Profiles That Affect The Way Journal Approval Works?
    HTH
    Srini

  • Urgent : Sizing MDI Window for Forms running on Web

    Hi,
    I am using Developer 6.0 and deploying forms on Web. I use
    SEPERATE_FRAME = YES in my HTML so that the form appears outside
    the browser in a seperate Window. The problem I am facing is the
    initial size of the MDI Window is very small compared to the
    Application window, so I have to maximise the MDI Window
    manually in order to see my Application Window completely.
    On Client Server I can get the handle of this MDI window using
    FORMS_MDI_WINDOW and maximise it programatically. On Web
    FORMS_MDI_WINDOW returns NULL as a result I cannot maximise the
    same.
    1. Is there any way to get the handle of MDI Window on web ?
    2. If not is there a way to set the size of MDI window thru any
    parameters or setting in HTML file or by other means ?
    Thanx in advance
    Ravi
    null

    Hello,
    you must generate a CWeb - cartrigde for your forms with a
    separate frame in the Oracle Application Server_v4.0.7.
    In the height and wight values for the frame set your size.
    It works very well.
    All the best
    Klaus
    Ben Eadington (guest) wrote:
    : I have been having the same problem. I found a way to correct
    : it by altering the Main.class file within f60all.jar (see the
    : thread started Sept. 1) The problem is that I cannot resign
    the
    : jar file. That must be done by Oracle. The window size issue
    : is apparantly a bug in Dev. 6. Hopefully they will get it
    fixed
    : soon. I would like to hear if anyone has had any luck getting
    a
    : patch or anything from Oracle.
    : Ron Lindhoudt (guest) wrote:
    : : I believe you have to change an Oracle class. There is
    another
    : : thread about this in the forum not more than a couple of
    weeks
    : : ago.
    : : Steve (guest) wrote:
    : : : I believe you want to maximize the console window not the
    : : : mdi window. There is no mdi window in web forms or any
    other
    : : : operating system environment other than microsoft.
    : : : Ravindra Channe (guest) wrote:
    : : : : Hi,
    : : : : I am using Developer 6.0 and deploying forms on Web. I
    use
    : : : : SEPERATE_FRAME = YES in my HTML so that the form appears
    : : : outside
    : : : : the browser in a seperate Window. The problem I am
    facing
    : is
    : : : the
    : : : : initial size of the MDI Window is very small compared to
    : the
    : : : : Application window, so I have to maximise the MDI Window
    : : : : manually in order to see my Application Window
    completely.
    : : : : On Client Server I can get the handle of this MDI window
    : : using
    : : : : FORMS_MDI_WINDOW and maximise it programatically. On Web
    : : : : FORMS_MDI_WINDOW returns NULL as a result I cannot
    : maximise
    : : the
    : : : : same.
    : : : : 1. Is there any way to get the handle of MDI Window on
    : web ?
    : : : : 2. If not is there a way to set the size of MDI window
    thru
    : : : any
    : : : : parameters or setting in HTML file or by other means ?
    : : : : Thanx in advance
    : : : : Ravi
    null

  • Urgent (Export to Excel issue)

    Hello Experts,
    I am trying to execute one of the BW report via portal. I have a following issue when I am trying to use Export to excel option from the context menu.
    The first part of Export to Excel works ok. but if I choose either the Save or the Open option it appears to work but I get a file with only c20 lines, instead of the 20,000+ lines in the report. If I then go back to the BW report and try to do anything it tells me that the session has timed out message attached
    Can someone please help me to fix this issue.
    Thanks and Regards,
    Apparao

    There are several. Here's one of them:
    1) Click on the fx button of the column in question. Enter the following:
    '<span style "display:none">&nbsp</span>'|| columnanme NOTE: Put an "equal sign" after the word "style." I could not get this to display with the operand in. Sigh.
    2) Change the Data Format to HTML on the Data Format tab.
    3) Export in the usual manner.

  • RH8 - Why do once-fixed auto-sizing, ranked index issues reappear in 64-bit build environment?

    I'm using RoboHelp 8.0.2.208 fully integrated with Telelogic Synergy source control, and we generate WebHelp. In building the latest release (117) of our software the generated WebHelp has a couple of issues that weren't present in the previous builds. First, the auto-size pop-up topics are now cutting off text when they worked fine pre-117. Second, changes we'd made several releases ago to remove ranking in the index reverted, and we're back to ranked index results.
    Our long-suffering Build Manager and I are trying to troubleshoot why this happened, and there are a couple of variables as of this build. Our developers are moving to PowerBuilder 12 as of this release, but we don't see anything that points to this being connected to the issue. Another variable is that we're in a new build environment that uses 64-bit OS. (There were the recent sunspots, too, but, naa, don't think that's it...). While I've found in this forum a discussion regarding the cut-off text in pop-ups (BTW, no extra lines ever had to be added), as well as the discussion about how to remove ranking in the index (http://forums.adobe.com/message/2901513#2901513), we'd like to find out what caused these issues to show up again now.
    This also raises for us the issue of legacy files and how RoboHelp handles those in upgrading. It was when we moved from RoboHelp 5X to RoboHelp 8 that we first encounted and solved the ranked index issue. My recollection is that we also dealt with the pop-ups not autosizing properly at that time, although I haven't been able to find documentation about how we resolved that.
    Is there code within our custom skin, old .css file, template/layout, or ? that could be bringing legacy issues into play here? What do the files in WebHelp5Ext do? Will migrated template_skin and/or template_stock eventually cause legacy issues? Does each subsequent RoboHelp release update to current coding standards?
    Thanks!

    CelesteD wrote:
     1] Is there code within our custom skin, old .css file, template/layout, or ? that could be bringing legacy issues into play here?
    2] What do the files in WebHelp5Ext do? Will migrated template_skin and/or template_stock eventually cause legacy issues?
    3] Does each subsequent RoboHelp release update to current coding standards?
    1] Code that is good now will likely have problems in the future. Code created in the days of DOS can now be a problem. In this forum we can only address identified issues.
    2] Perhaps Willam can answer the first part. The second part has a similar answer to 1 above. Right now it should work, one day it might not but when and if that happens, I am sure Adobe will fix it.
    3] If you mean the code that makes RoboHelp work, only Adobe would know that. If you mean the web outputs, I understand they meet current W3C standards but the standards are everchanging, all Adobe can do is meet the current standards and change things when the standards change.
    Does that answer the questions?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • OrgChart and OrgPlanning sizing and productivity issues

    Dear Experts,
    Our customer is going to implement OrgChart and OrgPlanning solutions and having some concerns regarding sizing, productivity and some others. Could you please clarify the following questions?
    1. If some objects or data are blocked in the moment of fetching from SAP to Nakisa (or Nakisa DB), how is it going to react on Nakisa? How will this affect sending idocs? And also while doing backward process: sending data from Nakisa if there blocked objects in SAP which should be updated or changed.
    2. What is going to happen if objects/data are deleted from SAP back-end system while it’s being modeled and then transferring back into SAP from Nakisa?
    3. In terms of OrgModeler: is it possible to create a position or another type of objects (basically duplicate one) choosing from the list of existing ones? Or if it’s creating then the only option you have is creating a new one with unique ID?
    4. Are there any other formulas or advices on how to calculate sizing and hardware needs except what is described in Capacity Planning Guide?

    Larry, thanks for the suggestions. I'll have to try them when I get home from work. I'm working with a 45,000 image library. Have now prepared about 155 Faces. Only a few Places so far. Nevertheless the wait in interminable when you are trying to get things done. I have to initiate an action and then click away and do something else while iPhoto churns away. I have Menu Meters showing the CPU in the menu bar. Most actions in iPhoto (particularly Face scanning)force both CPUs to 100%.
    I imagine one of the features dragging the system down is the repeated Face scanning of the whole library. A future update simply has to include a setting to turn this action OFF when you are not interested in matching more Faces. As it stands, even to simply look at a Faces album initiates a full scan of the library (CPU 100%). While I appreciate the feature, there has got to be some way of turning it OFF when all you want to do is view photos.

  • Require Very Urgent Help on Aggregation Issue. Thanks in advance.

    Hi All,
    I am new to essbase.
    I have got an issue with aggregation in Essbase. I load data at zero level and then when I aggregate using CALC DIM i do not get any value.
    The zero level load being:
    Budget,Version,Levmbr(Entity,0),Levmbr(Accounts,0),NoRegion,NoLoc,NoMod,Year,Month.
    When I use default calc or give Calc Dim for the above no aggregation takes place at the parent level.
    Requirement :
    Values at Version,Region,Location,Model,Year,Month.Budget Level.
    Please advice.
    Thanks in advance.
    Bal
    Edited by: user11091956 on Mar 19, 2010 1:07 AM
    Edited by: user11091956 on Mar 19, 2010 1:10 AM

    Hi Bal,
    If you had loaded without an error , and after that your default calc is resulting in not aggregated values. Then I can imagine only one way, it cannot happend is through your outline consolidations.
    Check,if data which is loaded at the members does have IGNORE or ~ as the consolidation
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • Urgent Help Required- Syncing Issues

    Heya.
    I have just purchased an 80GB Ipod Classic and have been experimenting with syncing music from my previous libary, to my new iPod. This hadnt worked. Eventually i downloaded the new Itunes 7 and put all my previous music on there, but my Ipod will not sync my music. Nothing comes up. I watched a tutorial about syncing, and realised the Set Up Assistant did not appear, allowing me to name my Ipod or anything like that. So when i go to help, they tell me to click summary and i cant do that as my Ipod, although recognised on devices, will not sync my music.
    N e help/support will b MUCH appreciated. I am at the end of my tether.
    Emily

    I've had trouble getting iTunes to recognise my iPod classic too. The only solution I've found is to reset the iPod just before connecting it to the computer. To do this, slide the hold button on and off then hold down the centre buton and the menu button at the same time for 6-10 secs.
    I don't know if this will solve the issue in your case, but it's worth a try.

Maybe you are looking for

  • Back-up / Retrieve Files from an external hard drive that doesn't appear in Devices

    Someone please help! I am going to write the "history" from my disk utility repair here so that other's who copy and paste into search may find it: (PLEASE SCROLL 13 ROWS DOWN) Verify and Repair volume “Your Hard Drive Name” Checking Journaled HFS Pl

  • RMI Server Offline Problem

    Hello all, I am e newbie in the world of RMI programming. I have developed an application that can control two devices over the internet. The code files are given below : Parallel.java import java.rmi.*; public interface Parallel extends Remote      

  • ATV to display in another room

    I have an ATV (ver2.2) in my living room hooked up to a Sony LCD TV by HDMI. I would like to send the ATV display to a TV in my kitchen (Samsumg LCD TV with all the usual interfaces) and also send the audio to a stereo in the kitchen. I also have an

  • Want to be able to block certain numbers and texts on my phone

    been trying to add a block call and text from certain numbers feature on my phone but i havent been able to do so.....do i need to call Verizon to add that or is there a link that i havent found yet on here??.....tried to add the Parental Control fea

  • Printing From and To Date on an XML Report

    I have several reports in xmlp that are generated with a select statement of date ranges. How can I put the from and to dates on the header of the reports?