Need a tool bar to bold, highight, change font or color, etc.

with owa (outlook web access) I need a toolbar for bold. itallic, highlighting, font, color. when I receive and email it is also not hightighted

If your report is in ALV, then system automatically places these buttons in toolbar. so make your report as ALV (ie using fm REUSE_ALV_GRID_DISPLAY or using Object oriented CL_GUI*)
a®s

Similar Messages

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

  • Why I cannot change font  and Color in JFrame title??

    Dear sir:
    I try to change font and Color in JFrame title in code below,
    It display all html code, not expected formatted ones.
    but fail. Looks like no way to do it??
    Can somebody help??
    Thanks
    import java.awt.BorderLayout;
    import java.awt.Toolkit;
    import javax.swing.*;
    public class JFrameTester {
      public static void main(String[] args) {
         String iconPath ="file:C:/eclipse/workspace/Test/images/long.PNG";
         String title = "<html><body bgcolor=\"yellow\">" + "<img src=\""+iconPath+"\">" +
              " <font size=\"6\" face=\"Verdana\" color=\"red\"><b>"+ "New Tester" + "</b></font></html>";
        JFrame f = new JFrame(title);
        f.setIconImage(Toolkit.getDefaultToolkit().getImage("images/123.gif"));
        f.setSize(250, 250);
        f.setLocation(300,200);
        f.getContentPane().add(new BorderLayout().CENTER, new JTextArea(10, 40));
        f.setVisible(true);
    }

    Looks like no way to do it??depends on the L&F you want.
    here's one way
    import java.awt.*;
    import javax.swing.*;
    class JFrameTester {
      public static void main(String[] args) {
        JFrame.setDefaultLookAndFeelDecorated(true);
        UIManager.put("activeCaption", new javax.swing.plaf.ColorUIResource(Color.RED));
        UIManager.put("activeCaptionText", new javax.swing.plaf.ColorUIResource(Color.YELLOW));
        String title = "Hello World";
        JFrame f = new JFrame(title);
        f.getLayeredPane().getComponent(1).setFont(new Font("Tall Paul",Font.ITALIC,24));
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(250, 250);
        f.setLocation(300,200);
        f.getContentPane().add(new BorderLayout().CENTER, new JTextArea(10, 40));
        f.setVisible(true);
    }

  • Easiest way to change font size/color with CSS?

    I've never used CSS before; I need to know how to change the font size and color using CSS, since it seems to be the only way to do it now. Sometimes I just need to change the font just for a few words, or a line here and there. Not necessarily page-wide, you understand. Is there a step-by-step process showing the simplest way to accomplish this? I'm not a web developer or professional designer, nor do I want to be. I just use DW to build simple web sites for personal use. I don't build using HTML - I solely use DM's GUI functions. And I'm also trying to teach my nine year-old how to start out page-building. I certainly hope that something as simple as changing font size doesn't require one to buy a book to learn HTML, which seems to be what a lot of people are telling me. Thanks for any assistance.

    Easiest is not always the best way.  You must learn the fundamentals. 
    CSS
    /**this styles all paragraphs in your site**/
    p {
    font-size: 18px;
    color: #000;
    /**This is a class.  Classes are re-usable**/
    .red {
    color:red;
    font-weight:bold;
    HTML:
    <p>This is a normal paragraph</p>
    <p class="red">This is a red paragraph</p>
    <p>This is a normal paragraph with <span class="red">some red text here</span> but not here.</p>
    If you're going to teach your 9yr old how to build web pages, start with the links below.
    There's no point in teaching your child bad habits that will have to be unlearned later.
    http://www.html.net/
    http://w3schools.com/
    http://www.csstutorial.net/
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • SQL Server Management Studio has stopped working when changing fonts and colors

    I installed sql server management studio 2012 about 3 months ago to test drive and from time to time I'll attempt to change my background color of the TSql editor "In the fonts and colors option under tools"; however, the entire studio crashes
    and restarts.
    This has been ongoing since I first installed it 3 or 4 months ago, and have waited on posting to a fourm for help, assuming I am not the only one this is happening to I've waited for an update that might fix the issue.
    I've got to start on some heavy scripting and that god awful white background kills my eyes. I've got to have a black background or my work day is cut off by about 3 hours becuase of strain.
    What can I provide to someone that would help me with this?
    Thank you,
    Erik
    Specialize in software for the construction industry.

    Hello,
    Could you please apply the following updates and let us know the results?
    http://www.microsoft.com/en-us/download/details.aspx?id=35575
    http://support.microsoft.com/kb/2790947
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to change font size & color of text inside note and callout annotation using code ?

    Hi,
    I want to set different font size & color for the text inside note and callout annotations. And for this, I am setting properties using the DS attribute while creating annotations (see below code).
    //"font: Helvetica,sans-serif 12.0pt;font-stretch:Normal; text-align:left; color:#rrggbb";
    sprintf(buf,
    "%s %2.1f%s%s%s%s;" , "font: Helvetica,sans-serif", float(g_fontSize),"pt; font-stretch:Normal; text-align:left; color:#", str[0], str[1], str[2]);CosDictPutKeyString (cosAnnot,
    "DS",CosNewString (cosDoc, false, buf, strlen(buf)));PDAnnotNotifyDidChange(pdAnnot, ASAtomFromString(
    "DS"), 0);
    But this doesn't work when I just wrire text after creating annotation.
    And suprisingly it works fine when I click first outside of the annotaion and then double click to write text inside annoatation.
    Is this bug of Adobe ? if not then please let me know the fix.
    Regards,
    Arvind

    Hi
    Is there any way(eg. preference) by which we can change default color & font size for annotation?
    Regards,
    Arvind

  • DW cs4 -  something changed - font code colors

    Hello
    [history ] I have been using DW CS 4 for 16 months. 
    [Question ] Sometime in last two months the font code colors changed and are mostly blue.  I would like the code to have the variety of colors that it once had which made reading code possible.   When I've checked my code preferences I don't see anything which has changed.
    About the same time I have been getting an error message (maybe a red herring to code color issue)
    "this page contains some SWF that may not work properly in the most recent versions of Internet Explorer.
    Dreamweaver cannot convert them to the new SWF markups. Please delete each of them and insert again."
    However pages from same site that don't have SWF error are not having homogenous code color.
    Elsewhere when I searched the error code someone suggested looking at extensions.  The only extension I remember specifically adding to dreamweaver in last few months is
    Adobe :   HTML5 hinting for CS3 & CS4
    Thanks,
    Casey
    [additional info]
    Windows Vista™ Home Premium (6.0, Build 6002) Service Pack 2 (6002.vistasp2_gdr.100608-0458)
               Language: English (Regional Setting: English)
    System Manufacturer: Dell Inc.
           System Model: Inspiron 1525                  
                   BIOS: Phoenix ROM BIOS PLUS Version 1.10 A16
              Processor: Intel(R) Core(TM)2 Duo CPU     T5750  @ 2.00GHz (2 CPUs), ~2.0GHz
                 Memory: 3062MB RAM
              Page File: 2057MB used, 4264MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11

    @ Nancy  Thanks.  Generally yes.   Transitional xhtml 1.0.
    However  --- 
    DW cs4 code color still is off.
    It seems that a possible cause was not the swf issue (as I first asked about) but something with ASP coding.
    I say this because when I remove the asp comment at the start of a product page (examples below) .   Yet  I don't know asp or DW library well enough to conclusively say this is it or just a hack.  I'd prefer best practice option.
    'default to order tab or not
    or
    I edit it to a string
    'default to order tab or not' 
    then rest of page is colored perfectly.
    three  examples (bigger below) --- as it is DW CS4 not rendering code colors correctly... then #2 removing 'default to order tab or not   then #3
    Original -- 
    Modified option 1 --  removed  asp comment  (which I'd prefer to keep)
    modified option 2 (  asp commented  closed with  '  but this may not be best practice....  will check coding forum for that... for now I'm seeing if DW is messing up something it should be.... )

  • Hyperion web analysis can not change font and color

    In Hyperion web analysis, when I want to set or change font, a null dialogbox appear ; when I click and want to set or change color, nothing happen,even no dialogbox appears. Why?
    thanks advance!
    Edited by: user1016218 on 2010-1-8 上午7:16

    Hello,
    See my answer in this link:
    Urgently!  In Hyperion web analysis  font and color can not be changed
    May be it helps.

  • Do I need the tool bar to be made up of separate psd files?

    I have a toolbar and i am ready to start adding hyperlinks but I am experiencing a problem becuase when i press on the 'about us' tab it comes up with the 'about us' page which is what i want but if I then click on all the other tabs it comes up with the 'about us' page too! Im guessing this is happening because the toolbar is made on photoshop as one whole picture not as separate tabs, but Im sure there is a way of going around this without having to start again.
    Please Help
    Dave Nelson

    Murray has alluded to one method, I will expand on that and show you another.
    Firstly, web browsers cannot display .PSD files. They have to be converted into .JPG, .GIF or .PNG files.
    Muray's method is to use the Image Map hotspots to do your navigation and Dreamweaver does offer good tools for that.
    The other method is to take your image and to cut it up in Photoshop, saving each piece as a .JPG, .GIF or .PNG and then create a menu that way, each with it's own link.
    You should also lay them out in an unordered list that is styled so that it is inline, rather than stacked one on top of each other.
    And, frankly, I would create the buttons as textless buttons, using the button as a background and placing text on top of it as well, so that you do not need an alt tag to describe your navigation for screen readers for the blind.
    All of one styles should go into your style sheet (or a separate style sheet just for navigation) that you attach to your web page so that your HTML is simple:
    If you will use images only, either with image map hot spots or sliced images, your website will require alt tags for each bit of navigation and you ought to use title tags so that there are tooltips for your navigation just to make sure that your navigation is very simple for all visitors to understand.
    And learning HTML and CSS is a really good idea.
    -Mark

  • How can I get latest firefox without yahoo toolbar, latter interferes with and eliminates needed hotmail tool bar

    See question

    You're welcome.
    Could you please click the "''Solved It''" button to take your post out of the loop?
    Thanks.

  • Just below my yahoo tool bar is sign out options from ebay yahoo etc. cannot click on any of these nor the search engine they are dead why?

    read the question

    Recently, the Yahoo Toolbar and the Babylon extension have been reported to cause that problem. They seem to overlap invisibly over the top of the web page display. If you have either or both, uninstall or disable them/it, or see if an update is available that solves the problem.
    *See --> http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *See --> http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    *See --> http://kb.mozillazine.org/Uninstalling_toolbars
    If that does not solve the problem:
    *See --> [http://support.mozilla.org/en-US/kb/Troubleshooting+extensions+and+themes Troubleshooting extensions and themes]
    *See --> [http://support.mozilla.org/en-US/kb/Troubleshooting+plugins Troubleshooting plugins]
    *See --> [http://support.mozilla.org/en-US/kb/Basic+Troubleshooting Basic Troubleshooting]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Change font size, style, etc

    Changing the font size and style are typical requirements of all applications. I find it inconceivable that this option is not available from the research and development staff at a company with the expertise of apple. Until they get their act together I have switched to Google Calendars. Those are very cool indeed! Email your daily itinerary to business colleagues and share calendar access with anyone you desire. Also printable or .pdf formats.

    It isn't gone, just minimized. The top of the screen should have a thick dark brown bar with "Documents", "Undo", etc. Under that should be a thinner lighter brown bar. Touch that thinner bar and the formatting bar should reappear.

  • I have lost the ability to change fonts,use color and size and when I try to write anyone,I cannot see my mailing list and there is no send button.

    A few months ago my ability to use different fonts, colors and sizes suddenly disappeared. These choices were always available when looking at my email and I used them regularly . No one I asked ever heard of such a thing happening. I left it alone until I found someone to help. Then, a few days ago, when I clicked "write" , two things happened. First, I could not forward, reply or even see my collected email addresses. Second, there was no longer a place that said "send". My email page filled the entire screen and when I scaled it down, there was still no way to see my list or to send. I am a novice when it comes to fixes and terms but, I have asked people who have some experience with PC's they were stumped. I contacted Fairpoint and they said it must be a Thunderbird problem. Most of the people I asked said they didn't know Thunderbird. One suggested that I reinstall T.bird but, said I also might lose everything on my PC. I would appreciate any help you can give. Thanks, Jim

    When you click Write and open the new message editor, press Alt to show the Menu Bar, then enable all the toolbars under View/Toolbars. Plus, press F9 to show the Contacts sidebar.

  • Change font's color of Labels

    Is there any way to somehow change color for the font of Cisco IP Phones 797X ?
    I mean the font that can be found in the LABEL field, i.e. font of DN/SpeedDial/BLF.
    It's white color currently.
    Thank you much.

    sorry, not possible
    HTH
    java
    if this helps, please rate

  • Change Font's Color

    how do i change the colour of the font inside a JButton
    for ( int count = 0 ; count < button.length ; count++)
                   for (int count1 = 0 ; count1 < button.length ; count1++ )
                        if (board[count][count1] != 0)
                             button [count][count1].setText(""+board[count][count1]) ;
                             button [count][count1].setEnabled (false ) ;
              }

    http://java.sun.com/docs/books/tutorial/uiswing/components/html.html
    And in response to your username........ "No it doesn't"... :-)
    regards,
    Owen ( Dublin, Ireland )

Maybe you are looking for

  • IDoc failed with the error massaeg "Instance of object type could not be ch

    Hi All I am getting IDoc failed with the error massaeg "Instance of object type could not be changed" Message type :PORDCR Basic type : PORDCR05 Message no. BAPI003 Status : 51 All POs are get uploaded in SAP during Cut over activities only. Please s

  • How do you connect a microphone to a Mac?

    How do you connect a microphone to the Mac?  I'm trying to record vocals onto Garage Band.  I tried to use an adapter (XLR to MONO 3.5 mm) to connect directly to the port on the side of the MacBook Pro.

  • JEditorPane with HTML and css

    Hi I am trying to display a html file with css (css file is external) in jeditorpane. I managed to display html but css effect is lost. Can anyone help please?

  • Can my 2001 G4 Powerbook have wireless internet?

    Hi, I purchased a G4 Powerbook around Spring of 2001. I am not sure if it is Airport ready. I misplaced all the manuals for it. If I wanted wireless internet (to be used at school, hotspots, etc.), do I just buy an Airport card and pop it inside (I n

  • Iphone 4 to 5 problem

    Hi, My husband ran over my phone accidently so a backed it up before it died and got a new one, when I went to sync it (new) said it was not compatible with that version of I tunes down load the new one but when I downloaded that my old one was not t