Coping Color Coded Text from PLSQL Editor

Does anyone know a way to capture the color coded text from the Reports PLSQL editor so it can be pasted into MS Word? A normal copy and paste does not copy the color and I would like the color coded text as part of the report documentation.
Thanks

The correct subject is:
Copying Color Coded Text from PLSQL Editor

Similar Messages

  • Get colors and text from Legend or chart?

    It seems to be impossible ( or at least I cannot find a way to ) to wrap the labels in the Legend control.
    so I will have to write my own legend control that can do this.
    In order to create a Legend control I will need to get a array of the colors used in the Chart ( or legend) and apply these to the new legend control. Can anyone advise how I can do this?
    thanks

    Hi Natasha
    I have tried:
    for each(var item in myChart.series.legendData ){
    trace("series item is : " + item);
    And
    for each(var item in myChart.series.items){
    trace("series item is : " + item);
    UPDATE: I have also tried:
    trace ("legendData is : " + myChart.series[0].legendData); 
    trace("items is : " + myChart.series[0].items);
    for each(var item:Array in myChart.series[0].legendData){ 
    trace("series item is : "+ item);
    And again the trace statement in the for each loop is never reached, and the other trace statements are empty (besides the initial string), yet I can see in the variables window of Eclipse that there should be data.
    And I have a breakpoint on the trace statement, yet in both cases the breakpoint is never reached. I am not getting any error message.
    Also, when editing, when I put the '.' after myChart.series I do not get either legendData or items in the 'intellisense', just methods. Perhaps the intellisense is very limited.
    Anyway, can you advise on another way to get the colors and labels from a chart so I can create my own legend, which can wrap the labels?
    Many thanks

  • How to make it so that DW shows color-coded text for a file type?

    Hi,
    I work with ".inc" files, which I include into PHP files.
    At the moment DW just shows all of the text within .inc files
    as black. How can I get DW to color-code the text (like it does
    with other files such as html or php) so that I can make it easier
    to read?
    Cheers!

    http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_16410
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "chuckee" <[email protected]> wrote in
    message
    news:fb6cdb$mno$[email protected]..
    > Thanks for that but I did want to keep the file with the
    .inc extension.
    > In the back of my mind I thought there was some setting
    I could change so
    > that DW recognised new file types.

  • Color coded text area

    How can I make a text area that when you type, if it is a reserved word it change it's color, like JCreator or some editor

    Swing related questions should be posted in the Swing forum.
    How can I make a text area that when you type, if it is a reserved word it change it's colorYou can't. You need to use a JTextPane (or JEditorPane)
    Search the Swing forum using "syntax highlighting" as the keywords to find other postings on this topic. You may even find my "SyntaxDocument" solution which will work for Java but not other programming languages.

  • I have messages in mail that are color-coded as if by a rule, but I have no rules set. How can I correct this?

    The only rule that I ever had in Mail was the default one that color coded messages from Apple blue. I notice that some messages are color-coded brown and I have no rules set at al (hence no rule to turn off.)  Some of the messages are related to viewing online magazine, but not all.  How can I stop this?

    Hi. Thanks for your message.
    Well, I understand what you are trying to say but I thought it was easier to categorize in Apple Mail.
    On Entourage I just click twice on a sender address, record it on Address book and give it a colour that I previously defined as "Work", "Personal", "Customers", "Suppliers", "Friends" or whatever.
    As Apple Mail don't have Address Book as part of it but an outside feature it's very annoying. Of course I am used to use a software and I don't expect now Apple Mail do everything as Entourage but... as someone said it seems Apple Mail stopped in time. The recent version seems the first one ever issued. I hate the way Mail.app handles attachments by placing big chunky previews right in my email. I prefer them to be named attachments listed somewhere else, out of the content of my email. I don't if I can change this via terminal commands? Can you tell me if that is possible?
    I don't understand why Apple Mail have lots of plugins instead of a great improvment from the backstage.
    I use Apple computers since ever and I love this machines but sometimes I don't understand this lake of improvments.
    Take a look at this link:
    http://scottworldblog.wordpress.com/2009/10/12/microsoft-entourage-vs-apple-mail /
    Of course I don't agree 100% with him but some things are true...

  • Problem in reading the modified text from text editor

    Hi all,
    Im using text editor for saving the long text entered in the text editor as standard text in So10 tcode.
    Here im facing an issue in reading the text from text editor. That is, when the text is entered by the user for first time, then the below method reads the text successfully.   But when i do some changes in the existing text present in the text editor and try to read, then the modified text is not returned by the below method.
    I use the "CALL METHOD g_editor_ftext1->get_text_as_stream" to read the text. Given below is my code.
    CALL METHOD g_editor_ftext1->get_text_as_stream  
       IMPORTING
          text                   = ig_text_table
          is_modified            = g_xthead_updkz
        EXCEPTIONS
          error_dp               = 1
          error_cntl_call_method = 2
          OTHERS                 = 3.
    The return value of "is_modified" is always returned as 0.
    Could anyone pls help how to read the modified text using the above method?

    Check if this works and if it works then there should be some mistake in your coding
    REPORT abc.
    PARAMETERS:pa1 TYPE bwart.
    DATA: container TYPE REF TO cl_gui_docking_container,
          editor    TYPE REF TO cl_gui_textedit,
          report    TYPE syrepid,
          mod TYPE i,
          modon TYPE i.
    DATA:tlines    TYPE TABLE OF tdline,
         wa_tlines TYPE tdline.
    AT SELECTION-SCREEN OUTPUT.
      report = sy-repid.
      IF container IS INITIAL.
        CREATE OBJECT container
                     EXPORTING repid     = report
                               dynnr     = sy-dynnr
                               side      = container->dock_at_left
                               extension = 1070.
        CREATE OBJECT editor
                    EXPORTING
                         parent     = container.
      ENDIF.
      wa_tlines = 'This is test before a change'.
      APPEND wa_tlines TO tlines.
      CALL METHOD editor->set_text_as_r3table
         EXPORTING
               table              =  tlines
         EXCEPTIONS
               OTHERS             = 1.
      CALL METHOD editor->go_to_line( 1 ).
    START-OF-SELECTION.
      CLEAR tlines[].
      CALL METHOD editor->get_text_as_stream
                EXPORTING
                only_when_modified = '1'
                IMPORTING
                text = tlines
                is_modified = modon
                EXCEPTIONS
                error_dp = 1
                  error_cntl_call_method = 2
                  OTHERS = 3.
      IF modon = 1.
        WRITE 'Changed'.
      ELSE.
        WRITE 'Not changed'.
      ENDIF.
      WRITE modon.

  • Palm Desktop 4.2 - Text of color coded calendar entries are hidden for some colors

    Environment: 
      Treo 680
      Palm Desktop 4.2 running on Windows XP Pro
    Color coded calendar entries have been working great since I got my phone over a year ago.  When I added a new color category (bringing my total to 7 categories) I noticed that some of my calendar entries showed the color coded bar for the appointment, but the text for the entry was hidden.  Nor was I able to edit the entry using Palm Desktop since any attempt to select the entry tries to create a new entry.
    Thinking that I had exceeded a limit for the number of color categories I deleted the new category (so the entries were now unfiled).  Now, all but one of my color categories are affected (color bar for appointment, but no text visible), including those marked with a category of "undefined".
    The only color that now shows the text for calendar entries is my default category (not unfiled).  This affects all of my existing calendar entries and any new ones I create, regardless of whether I create them on the Treo or using Palm Desktop. 
    If I press <tab> to cycle through my appointments on the page, it selects only those for my default color cateogry where the text of the entry is visible (i.e. it skips all the other appointments).
    The calendar entries are all visible on my Treo, thankfully.
    I have not installed any new apps or updates.
    I've not been able to find anyone else reporting this problem.
    My next step will be to restore my backup from last week, but I was hoping to avoid that if possible, so any advice would be greatly appreciated.
    Thanks in advance!
    Post relates to: Treo 680 (AT&T)
    This question was solved.
    View Solution.

    Pardon my ignorance, but where do I set categories to all?
    Tools > Categories
      Whichever category I select here becomes the default category and its entries will be visible, but all other categories will be hidden.  My only other options are New, Delete, Rename and Help.
    The only other configuration setting for categories that I can find is under
    Tools -> Preferences
    I have the checkbox "Display color-coded categories" checked
    Thanks!
    Post relates to: Treo 680 (AT&T)

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • How do I find images in LR 2.4 (imported from CS4 Bridge) that have color labels already assigned In CS4 Bridge? I have set both Bridge and LR color labels text to match (eg Green for green, etc).

    How do you find images in LR 2.4 that have been imported from CS4 Bridge and have been assigned a color label in Bridge?  I have set both LR 2.4 and my CS4 Bridge to match the text for each color to be the same (eg. Green for green, etc), and the filter search in LR 2.4 shows that a label has been assigned, but I am unable to identify and locate the specific images in LR 2.4 that have had a color label assigned from CS4 Bridge.  I have tried to search via attribute, metadata, text, etc...Is it necessary to re-assign color labels all over again, image by image, in LR 2.4, or is there a way to automatically have the color labels assigned in CS4 Bridge be assigned and searchable to the images after they have been imported into the LR 2.4 catalogue from the Bridge program?

    JohnM.
    I closed both programs and re-imported photos and re-tried the action of having LR  read the XMP metadata from the CS4 files, and it seems to work now just fine...don't know why now and not before, but thanks much. Is there a way to have LR do this automatically upon import of images from CS4?  I tried to do this with an import metadata preset, but no luck.  It seems as if I can only do this once the images have already been imported into LR, and then to have to have LR read the metadata from the CS4 Bridge files.  thanks gain.

  • Copy text from FrameMaker 11 to another editor

    It appears that one cannot copy text in FrameMaker 11 and paste it into another editor such as Notepad++ or MS Word. It is as though FrameMaker does not use the Windows clipboard. We observe this behavior with WYSIWYG View and Author View. On the other hand, we can copy text from the XML View and paste into these other editors with no problem.
    This issue seems to have been introduced with FrameMaker 11, as we can copy and paste the identical text from FrameMaker 10. As another data point, unstructured FrameMaker 11 also allows copy and paste to an external editor.
    Can anyone provide insight into why this behavior occurs and how we might modify it?
    Thank you,
    --larry0

    Hi Russ,
    I tried your suggestion and saw no difference between the keyboard shortcut and the menu command. However, your question about there being anything unusual in our files led me to think about what might be different. The difference is that we use DITA-FMx. I converted back to native FM DITA and the anomaly disappeared.
    I'll contact Scott Prentice directly about this issue to minimize traffic on this forum.
    Thank you for your help,
    --larry0

  • How do you change the text color in io7 from white to black?

    How do you change the text color on the home page in iO7 from white to black?  I tried to invert the color but that reverses everything inclufing pictures.

    Yes, you can. If you change your wallpaper to a very light or white color the text turns black.

  • How can I save colors of text by copy and paste from a strange application

    Hi!
    When I copy colored text from a strange application to paste it into pages (4.0.2) all text is black. The colors disappear. When I look at the clipboard, I see the correct colors. In AppleWorks, MS-Office and OpenOffice the colors are copied correctly.
    What can I do to save the colors?
    Reinhold

    Reinhold Venzl-Schubert wrote:
    System Events (what ever this may be?)
    It's a major component of the operating system. NEVER touch it !
    iCal (I thinks its from Apple for iCal)
    FontExplorerXAutoload (what ever this may be?)
    It's a component of "Linotype FontExplorer", a third party Font manager.
    iTunesHelper (I thinks its from Apple for iTunes)
    good guess
    Try to disable the others to see if something changes.
    GeburtstagsChecker (It's a birthday-checker)
    N067U_ButtonManager (this is my scanner)
    N124U_ButtonManager (this too)
    ABF Hotkey (A Better Finder Rename)
    MacGiroMemo (it's my banking SW)
    UltralinguaHotkey (Translation SW)
    MediaCentral Launcher (something like FrontRow)
    TheTube Helper (SW for my TV-Stick)
    In fact I was thinking to an application like CopyPaste.
    Yvan KOENIG (from FRANCE dimanche 2 août 2009 21:00:52)

  • Set textRollover color for Text control from css (very urgent)

    Hi,
           I have text control . I need to set textRollovercolor for the text control from css. Is it possible.
    regards,
    Jayagopal.

    Jayagopal
    We can set the text roll over color using css like shown below.
    .txtColor{
        text-selected-color:         #000000;
        text-roll-over-color:         #FF0000;
    Thanks
    Raghu

  • How to retrive the font color, style and size of the copied text from html

    I have requirement, where I need to retrive font size and style of the copied text from html page. Here copied text I mean, the text we select and copy using either windows copy command or using Ctrl+C.
    Please help me to get the solution for this req.
    Thanks in advance,
    Amodnk.

    You can also try this, especially if you've got the Text Inspector and the Color Picker open already.
    Select the text to be colored (note that if the text is already multiple different colors the swatch under Color & Alignment section of the Text Inspector still only shows one out of the several)
    Find the color you want in the Color Picker
    Click and drag from the Color Picker into the swatch under Color & Alignment in the Text Inspector
    That will also change all the selected text to the chosen color.
    Also, regarding web safe colors, that SHOULD come as a part of the Color Picker. With the Color Picker open, select the third icon at the top (If you mouse over it, it should indicate Color Palettes. Click the popup menu button and you should see Web Safe Colors as one of the choices. With this and the Text Inspector open, you can drag and drop your way to identical colors in no time!
    That same drag and drop trick works for text on the slide as well. If you just created a bit of text and you want to apply a color, scroll until you find the color you want, then drag and drop over to the text (it will highlight in blue showing you what you're about to color).

  • CSS WON'T GET COLOR CODED UNLESS THE FILE IS IN A PROJECT?? R U KIDDIN??

    If I open a CSS file outside of a project, there is no color coding! Please tell me this can be changed. I DO NOT WANT CFBUILDER ORGANIZING MY PROJECTS!
    $299 for this? Really - please explain why I should pay $300 for a bloated version of Homesite?  Homesite was GREAT!  You guys frakked up by killing it.  CFB is confusing, the settings especially, nothing does what it states. Spend too much time trying to figure out how to update a simple thing.  Bad when I have to Google when I just want to display line numbers.  Typical Adobe - non-intuitive.

    Stop shouting.  Jesus.
    What you're whining about is the equivalent of my mum (who is a lovely little old lady in her late 70s) buying a new VHS and having a tanty of the buttons not being in "the right place".
    If you struggle so much with a software app having settings in different places that it yields this sort of response - and not even an inital visceral response, but lingering enough for you to put the caps lock on and write it down! - you're in the wrong industry, mate.  We're not talking rocket surgery here.  Or even brain science.
    That's not to say that shifting from something like HS to Eclipse doesn't involve a bit of a mindshift, but it's not the end of the world.  And no-one's making you change text editors either.
    Personally I think CFS was a really good text editor, and I rued moving onto DW (not my choice, I was the guinea pig for a failed experiment at a job I had years ago), and when I moved from DW to Eclipse I spend a few moments going "what's all this project sh!t?".  But then I realised everything I work on actually is a project, and there's no harm in having a little organisation in my work. And the work of the rest of the team.  And whilst I found Eclipse has some quirks I could do without, I also remember CFS had some quirks I could do without (and DW was an app I could simply do without from start it finish), so they're even in that regard.  But I also found that Eclipse's inifintitely customisable platform is a real boon for my development across various languages and productivity tools.  Eclipse really is far far better than CFS when one looks at the bigger picture: the one that is outside the realms of developing just basic websites, by one's self, on a single server (and that's not Adobe's target market with CF & CFB anyway, I think).
    That said:  CFB has a way to go (and is ot worth $300: it's just a Eclipse plug-in after all), but being built on Eclipse is a good start.
    I look fwd to CFB 2.0 to see if it's worth buying...
    Adam

Maybe you are looking for

  • No Audio on Keynote exported to iDVD in quicktime

    I am at my wits end with this! I just got this mac in May so bear with me (recently converted PC-er). This is my problem, in a nutshell: 1) I created a keynote presentation 2) I created a soundtrack for it in Garageband (blending two songs together t

  • Import csv file

    Hi guys, I'm uploading a 260,000 row csv file. Getting an error: "Object reference not set to an instance of an object". If I split the csv in two with 130,000 rows each, it uploads fine. (the 260,000 row file validates through the transformation fil

  • Cannot authorize Adobe Digital Editions - E_AUTH_NO_AUTHRESP

    Hi anyone, When trying to authorize my computer through ADE I get the following error:- Error communicating with AdobeID server. Please try again later. E_AUTH_NO_AUTHRESP http://adeactivate.adobe.com/adept/AddSignInDirect [email protected] The "chat

  • Routine error 9006 Forcing me to Reboot to Bring iTunes7 Back Up

    I routinely get error 9006 since "upgrading" to iTunes7. Not only does this stop the downloading process, but, after getting this error I close iTunes and try to bring it back up again -- but it will not come back up without a reboot. And, when I try

  • I've recorded all tracks in mono, can I pan them to different speakers?

    Hi all, As above. Specifically, I've recorded to parts of harmony and I want to pan one right and one left. Not being a techy, I didn't realise that this couldn't be done if recorded in mono, I thought it only matter how the speakers were set up. I'm