Can I show different fonts and colors text on 1 multi-line text fields?

I want to format different messages on 1 mutli-line field with different fonts and colors for the heading lines. Can I do that in Forms 6i ?

You must use in trigger Post-query the sentence:
Example:
DECLARE
cur_itm VARCHAR2(80);
cur_block VARCHAR2(80) := :System.Cursor_Block;
BEGIN
cur_itm := Get_Block_Property( cur_block, FIRST_ITEM );
WHILE ( cur_itm IS NOT NULL ) LOOP
cur_itm := cur_block||'.'||cur_itm;
Set_Item_Instance_Property( cur_itm, CURRENT_RECORD,
VISUAL_ATTRIBUTE,'My_Favorite_Named_Attribute');
cur_itm := Get_Item_Property( cur_itm, NEXTITEM );
END LOOP;
END;

Similar Messages

  • How can I change the font and color of an email signature?

    How can i change the font and color of an email signature?

    Mail > Preferences > Signature
    Highlight the Signature.
    Click Format in the menu bar and select " Show Fonts".
    Select the Font.
    Highlight the Text.
    Click Format in the menu bar and select " Show Colors".
    Select the color.
    Mail > Preferences > Composing > Message Format:  Rich Text
    Best.

  • Unable to send mail with different fonts and colors

    Hi All,
    here is the explanation for my problem:
    I am sending mail using javamail. when i send the text with different font and color its not received in the same way. it is simply sending as plain text.
    Please help me on this issue.
    Thanks
    NG

    Hello,
    I am trying to develop an email application. It consists on sending email from [email protected] to [email protected]
    How can I do this in java ?
    I am using this software but it works only with gmail !!
             * Send Email to the webmaster
             String  d_email = "[email protected]",
                     d_host = "smtp.gmail.com",
                     d_port  = "465",
                     m_to = "[email protected]",
                     m_subject = "Email from user";
             Properties props = new Properties();
             props.put("mail.smtp.user", d_email);
             props.put("mail.smtp.host", d_host);
             props.put("mail.smtp.port", d_port);
             props.put("mail.smtp.starttls.enable","true");
             props.put("mail.smtp.auth", "true");
             props.put("mail.smtp.debug", "true");
             props.put("mail.smtp.socketFactory.port", d_port);
             props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
             props.put("mail.smtp.socketFactory.fallback", "false");
             SecurityManager security = System.getSecurityManager();
             try
                Authenticator auth = new SMTPAuthenticator();
                Session session = Session.getInstance(props, auth);
                //session.setDebug(true);
                MimeMessage msg = new MimeMessage(session);
                msg.setText("This is a message from: "+UserEmail+"\n "+UserMessage);
                msg.setSubject(m_subject);
                msg.setFrom(new InternetAddress(d_email));
                msg.setSentDate(new Date());
                msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
                Transport.send(msg);
             catch (Exception ex)
                ex.printStackTrace();
                out.println("Messaging ERROR: " + ex);
                out.println(stack2string(ex));
                    if(ex.getMessage().compareTo("")!=0)
                        check = "Message NOT SENT " + ex.getMessage();
        private class SMTPAuthenticator extends javax.mail.Authenticator
            public PasswordAuthentication getPasswordAuthentication()
                return
    new PasswordAuthentication("[email protected]", "pwd");
        }please advice

  • How can i change the font and color in mail 5?

    how can i change the font and color in mail 5?

    Mail -> Preferences -> Fonts & Colors
    If you want to change the font and color in a message you're composing, you can right-click on the message and use the Font/Show Fonts command to bring up the Font panel (among other ways).
    Regards.

  • I would like to print links as regular text i.e. not underlined or in a different font and color.

    I have created a page with my resumé, using Dreamweaver CS4 on my iMac (running OS X 10.6.6).  You can see the page here: http://www.peterforkes.com/Resume.html
    It looks great when it is on the screen, but when I print it I would like the links to not be underlined and also to be displayed in the same font (and color) of the text surrounding it (a link is largely useless on a piece of paper, if it it not showing the URL).
    So, I created a stylesheet called "print.css" and have this in it:
    a:link {
    text-decoration: none;
    In my html document (Resume.html)  I have this code, at the top:
    <link href="_css/Resume.css" rel="stylesheet" type="text/css" media="screen" />
    <link href="_css/Print.css" rel="stylesheet" type="text/css" media="print" />
    Now, things such as the graphics in my document do not print out (this is how I want it) but links seesm to be doing unexpected things for me.  As I mentioned, when I print the page I would like them to:
    a) not print with an underline (which I would expect the code snippet shown above to do).
    b) I would like the link color to be the same as the surrounding text (I have links in several places, such as in <h2>, <h3> and <p>).
    c) I would like the link to have the same font and text size as the surrounding text.
    Any help is always appreciated.
    Peter A. Forkes

    You've solved it for a:link but you may print the page with the <a> tag in link or visited state so you need to cover both.
    In http://www.peterforkes.com/_css/Print.css
    change
    a:link {
    text-decoration: none;
    to
    a:link, a:visited {
    color: #333;
    text-decoration: none;

  • Printing all text in a multi-line text field??  Can it be done?

    I was wondering if there is a way to print out a multi-line field and have all text entered print as well.  Currently, anytime someone enters more information in a multi-line text field on our form than is set to show without scrolling, when a PDF is created for printing from the results page, only the text that fits within the specified size prints.  You can scroll within the PDF and read it all, but I can't seem to figure out how to get all of the text to show and have that field resize accordingly on the printed copy.
    Is there a way?  Thanks.

    Is there an easy way to determine the character count that is visible in a given multi-line text field when designing the form, so if I want to allow 500 characters, the text box I create is large enough for 500 characters?  Obviously I can just do a trial and error process using a cut and paste of 500 characters and testing it, but is there an easier way?

  • How to determine the length of a line of text in a multi line text control

    I am working on a simple widget to compare two snippets of text.  The string controls are side by side with a colum of square bools in between
    the two string controls.
    The Bools line up with the lines of text in each string control.  The Bools are used as a quick indicator that at that line point there is a difference
    between the two string controls.
     There is a slider that allows the user to scroll up and down,  the slider scrolls both string controls simutaneously.
    As the string controls are scrolled I will be comparing the left and right lines of text and reflecting the match status in the Bool Colum.
    The reason I need to know the length of the line of text is so each line can be compared against one another.  It is not as simple as counting the
    col width of the string control and parsing the text because if there is a line return the text will word wrap before before it extends all the way accross the string control, which will cause parsing discrepencies.
    Any suggestions on obtaining the multi line string control text character length would be much appreciated.
    Best Regards
    Tim C. 
    1:30 Seconds ARRRGHHH!!!! I want my popcorn NOW! Isn't there anything faster than a microwave!

    Front panel of widget....
    1:30 Seconds ARRRGHHH!!!! I want my popcorn NOW! Isn't there anything faster than a microwave!
    Attachments:
    One.vi ‏27 KB

  • Recently my iPhone 5 started rebooting to a messed up screen that would flash and show different bars and colors. I would either have to wait a bit to restart it and fix it. But now, it got to the point where I can't even get past the Apple splash screen

    My iphone 5 was working fine until it recently started to reboot to a messed up splash screen that would flash and have bars across it. When this happened, I couldn't do anything and had to restart it. I was able to start up the phone sometimes, until just recently. Everytime I started up the phone, it would load up the splash screen and then become distorted, flashy, and sometimes colorful and I could not use my phone. To try and fix this, I put it into recovery mode to do a factory restore, but iTunes can't even restore my phone. I even tried DFU mode.. Any help would be greatly appreciated!

    Check this support document for SIM issues http://support.apple.com/kb/TS4148. No one here is Apple, we are users like you. We can only recommend you try Apple again, unless you are close to an Apple store and can make an appointment to go in there.

  • Interactive PDF, Printing all text from within multi line scrolling field

    I have an A4 form created in Indesign CS4 and made interactive in acrobat 9 pro on Mac with several fields and have a question.
    I have a requirement for a number of the form fields to scroll in order to capture lengthy content if need be, my client also wants the ability to print the content in full from the fields if they so wish. However if the content is lengthy say filling more than the field area shows on screen how would this be printable?
    So :
    A form is set up to show 3 lines of text and employs a scrollable field solution to accommodate infinite text entry
    The user writes 6 lines of text (only 3 show on screen though due to the forced form field area)
    They want to print a record for hard copy or distribution showing all 6 lines
    I have just purchased the CS6 version with Acrobat X, but would like to solve this in with my previous version if possible, have only just installed CS6 and due to learning curve need to retain it in Acrobat 9 pro if possible.
    Thanks
    Matt HM

    Sure, you could do that fairly easily with just a bit JavaScript. It would have to be done by someone with Acrobat who receives the filled-in form. The text from the fields could be extracted and placed in a text file attachment that you create with JavaScript, and then extract the file attachment.
    For the general methods you'd use, see:
    createDataObject: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.450.html
    exportDataObject: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.463.html
    Another less flexible approach is to extract to a tab delimited text file: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.460.html
    For this, you can specify just the fields you want to include, so you don't have to bother with all of the fields in the form being included.

  • Unable highllight the text in the multi-line text item in forms11g

    Hi,
    I using forms11g and I have a foirm which have a multilline field which are not hinghlighting the text when the cursor come there but it works fine in forms6i.
    Any solution on this will highly appriciated.

    I using forms11g and I have a foirm which have a multilline field which are not hinghlighting the text when the cursor come there but it works fine in forms6i.Check your Forms 6i form. I'll bet you have a Current Record Visual Attribute property assigned and you missed assigning this in Forms 11g. If it is assigned, double-check the Visual Attribute (VA) group exists and/or make sure all the VA attributes are valid for Forms 11g.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Display multi-line text

    I'm only using AWT. I need a component that's basically an uneditable Textarea (preferably no caret), where each line of text can be a different font and color. I was thinking to just extend a Canvas to draw the text on, and just add that component to a ScrollPane to get the scrollbar. Would this be the way to go? If not, can anyone suggest a better way?
    I'd also think this would be a FAQ, but I can't find anything on it. If someone knows of a component out there that already exists, please let me know where I can check it out.
    Thanks!
    -James

    You could make a TextArea which is disabled by calling setEnabled(false) (this is a component method). I think that that would be the easiest, however if color lines and changing fonts are what you are after you will need to go with something more elabrate. If you were using Swing you could just throw some HTML into the TextArea, but since you aren't I don't think there's an easy way using components.
    The other way to go is to draw directly onto a Panel or Canvas using the drawString method. The problem I see with this is that drawString will not respect \n (newlines) so you will need to write your own code to implement multiple lines. Also, if you go this way I would take a look at the FontMetrics class which can help you with the dimensions of each line.
    I hope this helps,
    Alex

  • 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.

  • Customize font and color in mail....

    When I write an email, well actually when I write anything... I use a lot of parenthesis.  It's part of my writing style.  I have Lion (will eventually get Mt. Lion) and in the mail program when I've written my emails I go back and make all the text in the parenthesis a smaller font and a gray color.  Is there a way to set up a keystroke or something so I can do this more easily?
    Thanks for any help.
    Susan

    Mail -> Preferences -> Fonts & Colors
    If you want to change the font and color in a message you're composing, you can right-click on the message and use the Font/Show Fonts command to bring up the Font panel (among other ways).
    Regards.

  • Mail: fonts AND colors

    I want to change the font for my mail Message Font. Using Mail > Preferences > Fonts and Color, I can do that.
    HOWeVER, how do I change the default color of the font I write my message in to something besides BLACK?? I know how to select the text of the message and then change the color. I want the default color to be something of my choosing for all of my outgoing messages.
    Chims

    Tom Gewecke wrote:
    It is for local display. If there were font/color preferences that were intended to apply to all outgoing messages I think they would be located in Preferences > Composing.
    Thanks for the replies.... I still think that the 'preferences' menu location for the font colour option is totally counter intuitive though.. I asked some of the Mac-heads in the office to show me how to change the default font and they all went for that option expecting it to work.. It really threw me as it's the 1st time I've come across something on a Mac that's harder to figure out than a PC!
    I managed to get my Mum's email fonts sorted out with a new stationery item now though, so all's well that ends well as they say

  • 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

Maybe you are looking for