Results 1 to 14 of 14
  1. #1
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243

    Make only 2 or 3 words in memo field italics

    Converted the text field from plain to rich text. The text tool bar continues to be grayed out, which prevents being able to select just a few words out of the entire paragraph that need to be italicized.

    For example, only the text highlighted in this field needs to be in italics.


    Click image for larger version. 

Name:	italics.jpg 
Views:	10 
Size:	102.1 KB 
ID:	12529

  2. #2
    AlexHedley's Avatar
    AlexHedley is offline Competent Performer
    Windows 7 64bit Access 2010 32bit
    Join Date
    Apr 2013
    Location
    England
    Posts
    180

    Make only 2 or 3 words in memo field italics

    Did you convert the Field to Rich Text in the corresponding Table?

  3. #3
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243
    Quote Originally Posted by AlexHedley View Post
    Did you convert the Field to Rich Text in the corresponding Table?
    The sequence was thus:
    1. changed properties in memo table field from plain to rich text;
    2. Went back to the form [graphic in first post] -- it would not let me change highlighted field to italics [font tools grayed out];
    3. Tried changing memo field in form field property -- that resulted in ALL text being italicized.
    GOAL: allow for only selected text to be italicized.

  4. #4
    AlexHedley's Avatar
    AlexHedley is offline Competent Performer
    Windows 7 64bit Access 2010 32bit
    Join Date
    Apr 2013
    Location
    England
    Posts
    180

    Make only 2 or 3 words in memo field italics

    So when you highlight some text, wait a second, a little formatting pop up doesn't appear above just the text you've selected?

  5. #5
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243
    Unfortunately, no -- no text box appears just above the text that's been selected. I even tried closing out the entire database, then reopening. Still no text box tool bar above selected text in memo field.

  6. #6
    AlexHedley's Avatar
    AlexHedley is offline Competent Performer
    Windows 7 64bit Access 2010 32bit
    Join Date
    Apr 2013
    Location
    England
    Posts
    180
    And if you highlight the text and press Ctrl+I (italics) or Ctrl+B (Bold) it converts the whole thing on not just the selected letters?

    The Formatting box:
    Click image for larger version. 

Name:	Rich Text.jpg 
Views:	16 
Size:	91.0 KB 
ID:	12532
    Last edited by AlexHedley; 05-29-2013 at 11:41 AM. Reason: Added an image

  7. #7
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243
    Quote Originally Posted by AlexHedley View Post
    And if you highlight the text and press Ctrl+I (italics) or Ctrl+B (Bold) it converts the whole thing on not just the selected letters?

    The Formatting box:
    Click image for larger version. 

Name:	Rich Text.jpg 
Views:	16 
Size:	91.0 KB 
ID:	12532
    Unfortunately -- nothing at all happens, in either the table or the form.

  8. #8
    rzw0wr is offline I will always be a newbie
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2013
    Location
    Indiana
    Posts
    479
    I just read this the other day.
    When you change to Text rich you can use HTML code to format.

    In front of whatever text you want to format put <i> and after the text put /<i>.

    http://www.w3schools.com/html/html_formatting.asp

    Dale

  9. #9
    AlexHedley's Avatar
    AlexHedley is offline Competent Performer
    Windows 7 64bit Access 2010 32bit
    Join Date
    Apr 2013
    Location
    England
    Posts
    180
    @dale
    If you don't format the form textbox as Rich Text but you have already added formatting to it the HTML encoding will show as this is what is stored in the underlying Field.

    @snowboarder234
    If you create a brand new Table with a Memo Field, set it to Rich Text then build a Form from that does the same happen?
    The picture I posted was one I created just 5mins ago and it all worked.

  10. #10
    rzw0wr is offline I will always be a newbie
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2013
    Location
    Indiana
    Posts
    479
    YES, I understand that.
    IF you change the field to Text rich you CAN then use HTML and the HTML code will not appear.

    When you change to Text rich you can use HTML code to format.
    Did I read something wrong here?

  11. #11
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243
    Quote Originally Posted by AlexHedley View Post
    @dale
    If you don't format the form textbox as Rich Text but you have already added formatting to it the HTML encoding will show as this is what is stored in the underlying Field.

    @snowboarder234
    If you create a brand new Table with a Memo Field, set it to Rich Text then build a Form from that does the same happen?
    The picture I posted was one I created just 5mins ago and it all worked.
    Alex -- it did work when I created a new table!!! Thank you for pointing me in the right direction. The bad news is I need to apply the italic capability to an already existing table (and thus, the form) that now holds 250 records.

    Update: I got it to work at the table level -- but it isn't reflected in the form. The form displays the html code for italics, but does not produce the italicized text. For example, this is what displays on the form: (<em>Didelphis virginiana</em>). We're back to square 1 again with the text bar not showing up in form view.

  12. #12
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243
    http://www.techrepublic.com/blog/mso...-and-2010/4795 -- they make it look so easy..... if only it worked....

  13. #13
    AlexHedley's Avatar
    AlexHedley is offline Competent Performer
    Windows 7 64bit Access 2010 32bit
    Join Date
    Apr 2013
    Location
    England
    Posts
    180

    Make only 2 or 3 words in memo field italics

    That sounds like the control on the form isn't set as Rich Text.

    Try removing the control.
    Click on 'Add Existing Fields' and drag it back onto the Form.
    It should inherit the Rich Text Property from the Table level and then work.
    (Once you have it on the Form check the properties anyway.)

  14. #14
    snowboarder234's Avatar
    snowboarder234 is offline Competent Performer
    Windows XP Access 2010 32bit
    Join Date
    Sep 2011
    Posts
    243
    Quote Originally Posted by AlexHedley View Post
    That sounds like the control on the form isn't set as Rich Text.

    Try removing the control.
    Click on 'Add Existing Fields' and drag it back onto the Form.
    It should inherit the Rich Text Property from the Table level and then work.
    (Once you have it on the Form check the properties anyway.)
    YESSSSSSSSSSSSSS!!!!!!!! That resolved the issue. Thank you so much. Italicizing text may seem like a small matter -- but in an academic environment where scientific terms MUST be italicized, it's huge. Thanks again.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Word Automation VBA: Make few words in range bold
    By besuchanko in forum Programming
    Replies: 1
    Last Post: 04-01-2013, 10:12 PM
  2. Replies: 1
    Last Post: 10-10-2012, 12:25 PM
  3. Replies: 5
    Last Post: 06-19-2012, 10:46 AM
  4. Selecting a few words from a field to display
    By bryant03 in forum Queries
    Replies: 1
    Last Post: 06-07-2012, 08:55 AM
  5. Frequency of Words in Memo Fields
    By Angrybox in forum Queries
    Replies: 1
    Last Post: 05-07-2012, 03:54 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums