Change font bot working?

Hi, trying to change a font in a document that is an import from a word file. I have done the "find and change font" thing but it really doesn't change it.
how do I go about changing a font in a document 100% I want NO reference to the old font. After I save... he old font always comes back... errrrr!!! there are quite a few tables and to click on allll the little cells is beyond time consuming!
I want to replace the font 100%!!! never to be seen again!!! but how?

Check your styles.
Bob

Similar Messages

  • Changing fonts in tables

    Hi,
    I want to change font in a table. It's the only item in the document. Selecting all, and changing font doesn't change anything. It does change any text I subsequently type outside the table, but not the table itself. Adding another row to the table uses the table font. Selecting an individual cell before changing font doesn't change anything either. Selecting the text within the cell before changing font does work, but it would be time consuming to do the whole table like this.
    Hope you can help,
    Tris.

    DennisG wrote:
    Tris,
    After I read your post, I tried changing typefaces in a table, and it's not as intuitive as it should be.
    My favourite word processor, TechWriter, uses a menu so you can choose what aspect of the text you want to select at the point at which the caret is, be it Document or Chapter, down to Table row or Table cell.
    But there's a method that worked well for me. Double click on the first cell to select it. Hold down the Shift key, then click on the last cell. The whole table should be selected. Now change the typeface.
    Works for me, thanks. I'd still like to know how to inspect the style for the table though.

  • On my MacBook Pro, sometimes when I click to close tabs in Safari the button will not work.  I have to click on some other part of the screen and then it will.  This happens in other programs like Word/Excel for changing font, etc. Solution/Suggestions?

    On my MacBook Pro, sometimes when I click to close tabs in Safari the button will not work.  I have to click on some other part of the screen and then it will.  This happens in other programs like Word/Excel for changing font, etc. Solution/Suggestions?

    Start up in Safe Mode.
    http://support.apple.com/kb/PH4373

  • I followed the instructions for changing font colors and it worked a few times then stopped working.

    latest version of Firefox

    What instructions are you referring to and why do you want to change the colors?
    *https://support.mozilla.org/kb/Websites+look+wrong
    *https://support.mozilla.org/kb/Website+colors+are+wrong
    *https://support.mozilla.org/kb/Changing+fonts+and+colors

  • How to change font/ font color etc in a graphic object using JCombobox?

    Hello
    My program im writing recently is a small tiny application which can change fonts, font sizes, font colors and background color of the graphics object containing some strings. Im planning to use Jcomboboxes for all those 4 ideas in implementing those functions. Somehow it doesnt work! Any help would be grateful.
    So currently what ive done so far is that: Im using two classes to implement the whole program. One class is the main class which contains the GUI with its components (Jcomboboxes etc..) and the other class is a class extending JPanel which does all the drawing. Therefore it contains a graphics object in that class which draws the string. However what i want it to do is using jcombobox which should contain alit of all fonts available/ font sizes/ colors etc. When i scroll through the lists and click the one item i want - the graphics object properties (font sizes/ color etc) should change as a result.
    What ive gt so far is implemented the jcomboboxes in place. Problem is i cant get the font to change once selecting an item form it.
    Another problem is that to set the color of font - i need to use it with a graphics object in the paintcomponent method. In this case i dnt want to create several diff paint.. method with different property settings (font/ size/ color)
    Below is my code; perhaps you'll understand more looking at code.
    public class main...
    Color[] Colors = {Color.BLUE, Color.RED, Color.GREEN};
            ColorList = new JComboBox(Colors);
    ColorList.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent ev) {
                     JComboBox cb = (JComboBox)ev.getSource();
                    Color colorType = (Color)cb.getSelectedItem();
                    drawingBoard.setBackground(colorType);
              });;1) providing the GUI is correctly implemented with components
    2) Combobox stores the colors in an array
    3) ActionListener should do following job: (but cant get it right - that is where my problem is)
    - once selected the item (color/ font size etc... as i would have similar methods for each) i want, it should pass the item into the drawingboard class (JPanel) and then this class should do the job.
    public class DrawingBoard extends JPanel {
           private String message;
           public DrawingBoard() {
                  setBackground(Color.white);
                  Font font = new Font("Serif", Font.PLAIN, fontSize);
                  setFont(font);
                  message = "";
           public void setMessage(String m) {
                message = m;
                repaint();
           public void paintComponent(Graphics g) {
                  super.paintComponent(g);
                  //setBackground(Color.RED);
                  Graphics2D g2 = (Graphics2D) g;
                  g2.setRenderingHint             
                  g2.drawString(message, 50, 50);
           public void settingFont(String font) {
                //not sure how to implement this?                          //Jcombobox should pass an item to this
                                   //it should match against all known fonts in system then set that font to the graphics
          private void settingFontSize(Graphics g, int f) {
                         //same probelm with above..              
          public void setBackgroundColor(Color c) {
               setBackground(c);
               repaint(); // still not sure if this done corretly.
          public void setFontColor(Color c) {
                    //not sure how to do this part aswell.
                   //i know a method " g.setColor(c)" exist but i need to use a graphics object - and to do that i need to pass it in (then it will cause some confusion in the main class (previous code)
           My problems have been highlighted in the comments of code above.
    Any help will be much appreciated thanks!!!

    It is the completely correct code
    I hope that's what you need
    Just put DrawingBoard into JFrame and run
    Good luck!
    public class DrawingBoard extends JPanel implements ActionListener{
         private String message = "message";
         private Font font = new Font("Serif", Font.PLAIN, 10);
         private Color color = Color.RED;
         private Color bg = Color.WHITE;
         private int size = 10;
         public DrawingBoard(){
              JComboBox cbFont = new JComboBox(GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames());
              cbFont.setActionCommand("font");
              JComboBox cbSize = new JComboBox(new Integer[]{new Integer(14), new Integer(13)});
              cbSize.setActionCommand("size");
              JComboBox cbColor = new JComboBox(new Color[]{Color.BLUE, Color.RED, Color.GREEN});
              cbColor.setActionCommand("color");
              JComboBox cbBG = new JComboBox(new Color[]{Color.BLUE, Color.RED, Color.GREEN});
              cbBG.setActionCommand("bg");
              add(cbFont);
              cbFont.addActionListener(this);
              add(cbSize);
              cbSize.addActionListener(this);
              add(cbColor);
              cbColor.addActionListener(this);
              add(cbBG);
              cbBG.addActionListener(this);
         public void setMessage(String m){
              message = m;
              repaint();
         protected void paintComponent(Graphics g){
              super.paintComponent(g);
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(bg);//set background color
              g2.fillRect(0,0, getWidth(), getHeight());          
              g2.setColor(color);//set text color
              FontRenderContext frc = g2.getFontRenderContext();
              TextLayout tl = new TextLayout(message,font,frc);//set font and message
              AffineTransform at = new AffineTransform();
              at.setToTranslation(getWidth()/2-tl.getBounds().getWidth()/2,
                        getWidth()/2 + tl.getBounds().getHeight()/2);//set text at center of panel
              g2.fill(tl.getOutline(at));
         public void actionPerformed(ActionEvent e){
              JComboBox cb = (JComboBox)e.getSource();
              if (e.getActionCommand().equals("font")){
                   font = new Font(cb.getSelectedItem().toString(), Font.PLAIN, size);
              }else if (e.getActionCommand().equals("size")){
                   size = ((Integer)cb.getSelectedItem()).intValue();
              }else if (e.getActionCommand().equals("color")){
                   color = (Color)cb.getSelectedItem();
              }else if (e.getActionCommand().equals("bg")){
                   bg = (Color)cb.getSelectedItem();
              repaint();
    }

  • Why does set font not work in report generation toolkit?

    I would like to change font and underline when inserting text into a Microsoft Word document. I have tried using the
    "Set Report Font" vi directly in front of an "Append Report Text" vi in my own application. The inserted text at the bookmark is always in the default text mode
    of the document. Is this a bug?
    I also tried the find and replace vi with the same result. Font will not change.
    I also cannot  find any examples of this usage that work. See example vi file below.
    Save at C:\ or adjust the template location accordingly in the vi.
    Can anyone help me out?
    Thanks,
    Chris
    Attachments:
    ChassisTestAutomatic (6.1).vi ‏39 KB
    TestPlan.dot ‏34 KB

    Dhubbell wrote:
    That's a cool tool Ben!  However, with a bookmark, you know the location on a Word Template, and if you know the location in MS Word, you can then set the fonts you want in Word.
    Do you know how to change the fonts in a string?
    Example, How do you insert this block of text on a SINGLE MS Word bookmark?
    PART NUMBER: 1234567890
    DESCRIPTION:  These lines are formated dynamically, some orders may have 1 PN, and other orders many have 500 PNs.
    I'm formatting my line details and inserting them on a MS Word bookmark.  After the initial bookmark I have no more control of the fonts for the entire string block.  I'd like to dynamically change the fonts in a string and I'd like to use MS Word.  I saw HTML report writing, but, in my particular application, HTML reports will not work.     
    Doug
    I don't have the time to try anything but as a suggestion I would experiment with the range start end properties (e.g. from start =0 to end =
    12 bold is true, from 13 to 23 bold is false, ....) You first insert text without formatting then you use the range start and end to format the text.
    I'm not sure it will work but it's worth a try.
    Ben64
    note: I would create a 2D array of start and end index of your string and auto-index a for loop that contain the range property node.

  • 'Indesign cc' and ePub and 2014 and fonts that work across platforms

    After searching this forums and the web, I am posting the question.
    Does anyone know of a current 2013-2014 REFERENCE which PROVIDES a
    LIST of FONTS that are ACCEPTED by
    IPADS and KINDLES
    that WORK WITHOUT Any PROBLEMS.
    The article below is in contradiction to using OPENTYPE fonts saying they are not reliable unless used at 100%
    Background.
    I am creating an ebook using inDesign CC.
    Spent time using several videos as learning tools.... Terry White....
    Gabriel Power has a two part set of tutorials from 2009 which were a bit helpful but a lot has changed in 5 years.
    He SUGGESTS using OpenType and TrueType fonts.... That PostScript fonts will NOT work.
    Searching '2013 and Ebooks and best fonts '
    I did find several lists of fonts that work for the KindleWhite and the KindleFire.
    The article was not dated.
    I did this search and found:
    2013 and iPad and ebooks and 'which font do I use?'
    http://www.pagetoscreen.net/journal/item/embedding_fonts_in_ebooks
    Saturday, March 23, 2013
    Embedding Fonts in eBooks
    The article above is in contradiction to using OPENTYPE fonts saying they are not reliable unless views at 100%.
    BUT this is all still CONFUSING.
    I would like to uses 6-8 fonts that will DISPLAY AS the font I use in my file.
    These would be fonts that work on both iPads and kindles primarily but on other mobile devices as well.  In this case I am not concerned about smart phone displays.
    Once again...
    Does anyone know of a current 2013-2014 REFERENCE which PROVIDES a
    LIST of FONTS that are ACCEPTED by
    IPADS and KINDLES
    that WORK WITHOUT Any PROBLEMS ? ?
    THANKS for the expert and experienced feedback.
    Message was edited by: loveAndPeace

    Received this message from Kindle:
    Hello from Amazon Kindle Publishing.  Thanks for writing to us.  I'm so sorry to inform you that, currently We do not support Adobe InDesign CC.  Kindle Plugin for Adobe InDesign supports Adobe InDesign versions CS4, CS5, CS5.5 and CS6.  Rest assured I've taken This Issue as feedback and communicated the same to our Appliaction team for consideration as we plan future improvements.  Thanks for your understanding.
    Best regards,
    Kindle Publishing Team
    Thank you.
    Amazon.com

  • How to change fonts in iCal?

    How to change fonts in iCal?  I can't harly read my calendar-tiny print size.  How could I change the font size?

    Your question really got me thinking.   Actually, I don't think you should feel like an idiot at all.  I think it is Apples failure that they made this difficult.  Seriously, who would ever think to press Command and arrow to switch months?  The little arrows next to the word Today are so small and inconspicuous that I remember having this very same question when I started using iCal too. 
    So, here is what I did to make it easier for my wife that uses iCal too. 
    Open System Preferences, Keyboard, Keyboard Shortcuts Tab, and finally Application Shortcuts.
    Click on the Plus symbol under the right hand pane.
    Select iCal from the Application list
    Add two shortcuts:  One named Next and the other named Previous and press your desired Keyboard Shortcut.
    I assigned the left arrow and right arrow for these tasks.
    Now it makes more sence for someone that is not used to Apples idotic way of doing things. ;-)
    I use keyboard shortcuts all over the place.  Actually, sometimes it gets me into trouble when I use someone elses computer and my shortcuts don't work.  I blame their computer for it and forget it was my "tuning".

  • How to change Font size and alignment in Appraisal document - Font settings

    Dear Eperts,
    We are working on 360 Appraisal. Can Any body explain how to change the fornt size and allignment (text wrapping to wndow size) in Appraisal document.
    Thanks and Regards,
    Ajaykumar

    Hello Ajaykumar,
    if I am not completely mistaking the 360° Appraisal uses the Adobe Forms.
    In this case the font can be set in the Adobe Live Cycle Designer by selecting "Palettes" -> "Font".
    Here is a discussion which addresses this question, and also contains a link to how to handle Adobe Forms:
    Adobe Print Form - Change Font Type/Size | SCN
    Best regards,
    Laszlo

  • How to change font size of static text displayed on GUI( Dailog based application) using properties

    In Visual studio 2008 i found in properties/ font option between Behavior and Misc to change font. But in 2012 i am unable to get it.

    Hi,
    Which type of application/project do you work with? Windows forms app? WPF app?
    Which language do you use to develop this app/project?
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to change font size

    Just purchased Deskjet 1010 & don't know how to change font size.

    hellinger
    Welcome to the HP Community Forum.
    In most cases you can adjust the scale of your documents before you print.
    Please take a look at the following:
    Manage Print Output with Print Preview
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it. help help help please - I have latest version of indesign - thanks

    I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it.
    Is it not possible to create a text box, fill it with dynamic (data driven) text, but make the font size either scale up or down automatically, so that the entire text box is filled? This is a feature in PrintShop Mail Pro called COPY FIT. but no such feature in Indesign??
    help help help please - I have latest version of indesign - thanks, DJ

    lol... it seems to work, but I have another huge problem!
    Apparently .CSV files cannot contain page breaks in the data! The data I am trying to merge is a 'letter', with paragraphs, line breaks, etc.,
    But, after data merging, it ignores page breaks and only merges the first paragraph of each letter. (sigh)
    Solution? Hopefully, an EASY solution. lol as we have thousands of records.
    Is there a third party indesign plugin that will allow .xml, or .xls data merge import??
    Thx,
    DJ

  • How to change Font on Apple Cloud calendar

    I'm using a Lenovo Laptop T61.I am running Windows 7 Ultimate.
    I have just installed Apple iCloud on it to sync my contact & calender with my iPhone 5 and my iPad Air. I'm working on other problems with them (like duplicating my calender appts 4-5 times for all years. However, this problem is what I need answers on now.
    How do I change Font on Apple Cloud calendar. It went from a larger font to a smaller one somehow. I can not find how to make it larger on Apple Support FAQ.
    The font is almost unreadable.
    Thanks,
    The Pool Commish

    Do you mean how do you change the display size?
    System preferences - displays - and select the appropriate display size

  • Cannot change font for UTF-8 pages in FF 4.0.1

    No matter whether I change Options > Content > Default font, or go to Options > Content > Advanced and set Sans Serif for Other Languages, nothing changes—for instance, on this forum. Everything's still Times New Roman from the looks of it.
    The Sans Serif font for Other Languages is set to Arial.
    There's no Unicode entry in the list. The Other Languages is the closest I could find.
    I have Options > Content > Advanced > Allow pages to choose their own fonts… unchecked.
    I made similar changes for Western, and that worked—for pages detected as having ISO-8859-1 encoding.
    Is this a bug? Or am I doing something wrong?
    <rant>
    On a more general note, I think that the font setup in Firefox is so over-complicated. I personally want all my pages in a single font, and I don't care if some weird languages are displayed incorrectly with it. I bet that most people do want the same, even them who speak those weird languages. It's just a matter of picking one font that works for the languages you care about.
    Now that might not work perfectly for everybody so there should be an advanced option—an ability to add overrides. It should be similar to how it works now but the list of overrides should be user-customizable and '''empty by default.''' So that we regular people don't bother ourselves with encodings and languages we're never going to use.
    I wonder if I'm the only one who's disappointed with FF's font settings. Couldn't find anything on this topic on the 'net.
    </rant>

    '''Xircal:''' this does not seem to be the case. When I go to Options > Content > Advanced > Other Languages I can see that Proportional is set to Sans Serif, and that Sans-Serif is set to Arial. The following line is also in my about:config:
    font.default.x-unicode user set string sans-serif
    '''cor-el:''' yes this is the address. While on this page, if I go to View > Character Encoding, the active selection is Unicode (UTF-8).
    '''Edit:''' if I manually change this site's encoding to Western (ISO-8859-1) the font changes to that I specified for Western encoding in Advanced font options.

  • Change font size in hp 6520 all in one printer

    I have windows 7   
    change font size in hp 6520 all in one printer

    The font size is changed via your software application.  Increase the size using whatever software you have.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

Maybe you are looking for

  • [SAPNW7.0ABAPTrialSP12] error when installing - please help

    Hello all, I'm a complete noob in SAP. I tried to install SAPNW7.0ABAPTrialSP12 in a separated partition. but I failed.. I have 3 partition, C (windows), E (data), G (SAP). And put all installer in it.. this drive also my sap install folder. there is

  • Background and foreground colors can be interchanged using which command

    hi background and foreground colors can be interchanged using which command

  • SQL Server driver problem

    I am trying to connect to SQL Server 2000. I have JDK1.3.1_02. When I compile my applet I get the error that class sqlserver from the statement "Class.forName(com.microsoft.jdbc.sqlserver.SQLServerDriver);" not found. I have included the path in my c

  • BPM SA bridge timeout

    We have sync RFC calls to an external SAP system and  is done via BPM SA bridge. Some very critical business information is exchanged which takes over 30 mts at times. I was able to set the BPM SA communication timeout to 1000 seconds from 60 seconds

  • Cant install Icloud on pc windows 7

    I have a dell with windows 7 and I am trying to upload Icloud so that I can back up all my music I have downloaded from cds.  During the final phase of installation, I am told that I cannot finish due to a system problem with Microsoft