You want to show special characters in the title of the tab page.

Hello
I use oracle 10g forms developer and I created the x bar chart.
I want to give the page title tab of the histogram of x as
_
x table

is this possible or any available pjc?

Pls help me.

Barro

Published by: Balaji.M on November 15, 2008 15:54

Of course, you can:

set_tab_page_property('cvtab.pg1', LABEL, 'one' || CHR(10) || 'two');

François

Tags: Oracle Development

Similar Questions

  • where are the special characters in the new Pages?

    where are the special characters in the new Pages?

    Menubar pages: Edit: Emoji & symbols, or control-command + space combination. Same situation in other Apple applications. In addition, available as a menu item from the menu entry in the menu bar to the right, Finder.

  • Show special characters & set presentation options

    Hello

    I'm new in InDesign scripting and I need help.

    I'm trying to set the display options custom during the execution of Peter Kahrels script "BatchConvert.

    What I want to do:

    • set the "Normal" display mode
    • showing page 1
    • adjust the page to the window
    • display special characters
    • Save the file

    I failed with the use of "menuActions".

    When you use "menuActions" I can show/hide special characters, but I can't control the State.

    Maybe can someone tell me a solution?

    Thank you.

    Anything you want can be script directly, without the use of menuActions, although these things are not always simple:

    var doc = app.activeDocument;

    doc.layoutWindows [0] .screenMode = ScreenModeOptions.previewOff;

    doc.layoutWindows [0] .activePage = doc.pages [0];

    app.layoutWindows [0] return (ZoomOptions.FIT_PAGE);

    doc.textPreferences.showInvisibles = true;

    doc. Close (SaveOptions.yes);

    If you run this script in the batch converter, there is no need to save your documents in the script that you call: just click 'save the closing documents. And you zip documents so that you have a safe copy of them.

    Peter

  • How to remove special characters from the string using translate() without typing all special characters?

    Hi all

    I am trying to remove special characters without the help of regular expressions.

    translate (the column name or string,'!@#$ & * (* () _) * "" :} {?}) >? /, «, » ')

    I want to eliminate this manual process to give all special characters using a chr() or ascii() function.

    Please show me the way.

    Thanks in advance

    Similar to the solution of Michael...

    SQL > ed
    A written file afiedt.buf

    1 with t as (select "[it comes of the #] [more amazing!") Test @# "$* & $%) assuming chain cost $ 5 000' double Str)
    2, i like (select level 1 c from dual connect by level<=>
    3 less
    4 Select + 32 (level-1) double connect by level<=>
    5 less
    6 select + 58 (level-1) double connect by level<=>
    7 less
    8 select + 91 (level-1) double connect by level<=>
    9 less
    10. Select 123 + (level-1) from dual connect by level<=>
    11 less
    12. Select 255 double
    13            )
    14, ts as (select level r, substr (str, level 1) c
    15 t
    16 connect by level<=>
    17             )
    18, tf as (select row_number() (order for r) r
    19                    ,ts.c
    20 TS
    21 I join on (i.c = ascii (ts.c))
    22             )
    23 select replace (sys_connect_by_path(c,'!'),'! ') Str
    24 TF
    25 where connect_by_isleaf = 1
    26 connect r = prior r + 1
    27 * start with r = 1
    SQL > /.

    STR
    -----------------------------------------------------------------------------------------------------------------------
    Thisisthemostamazingtest¸astringcosting5000

    Or something as horrible as this...

    SQL > ed
    A written file afiedt.buf

    1 with t as (select "[it comes of the #] [more amazing!") Test @# "$* & $%) assuming chain cost $ 5 000' double Str)
    2, I like (select replace (sys_connect_by_path (chr (c), 'A'), 'A') as tr)
    3 of)
    4 select c, rownum r
    5 (select 32 + (level-1) as the double connection by level c<=>
    6                         union
    7 select + 58 (level-1) double connect by level<=>
    8                         union
    9 select + 91 (level-1) double connect by level<=>
    10 the union
    11. Select 123 + (level-1) from dual connect by level<=>
    12 union
    13. Select 255 double
    14 tri 1
    15                        )
    16                  )
    17 where connect_by_isleaf = 1
    18 log r = prior r + 1
    19 start with r = 1
    20            )
    21 select translate (str, 'A' |) TR, 'A') as str
    22 * t, I
    SQL > /.

    STR
    --------------------------------------------------------------------
    Thisisthemostamazingtest¸astringcosting5000

  • Create these special characters in the name of the file as test.? docx or test? PDF in the OS window

    Hello

    Is there a possible way to create these special characters in the name of the file as test.? docx or test? PDF to test the goal?

    I do programming to detect this type of special characters in the file name. This modified script will this type of invalid char file appropriate name, so I need to have the sample to check if my script works.

    I have OSX or Linux. Is there no workaround solution I created in the window itself?

    or can someone create for me so I can go and download instead?

    Thank you and best regards,
    back4more

    Hi Backformore,

    Thanks for posting your question in the Microsoft answers Forum. For any question concerning the development of programs, visit the MSDN hereforums.

  • Chips and other special characters in the App World descriptions

    How is one makes chips and other special characters in the description of the app in the supplier portal?  I see various descriptions app with chips so I know it's possible.  I tried Googling the answer, but to no avail.  Can someone point me to the documentation for it?

    Thank you

    Lester

    I think it's just the Unicode text, so if you include these characters when you submit the form, they will display.

    Your question is perhaps more on how to insert these characters into the HTML form. To do this, because I need it rarely, I didn't copy and paste of a website where I can find the required text. For example, Google for 'unicode ball' and you can find one of them on one of the first findings of the research, such as the Wikipedia article.

    Some people probably have their systems set up to type Unicode directly from their keyboard, but I never got to determine the modern way to do this (and the last time I checked, years, Unicode in operating systems support was still largely missing).

  • How to get special characters in the oracle column only

    Hi all

    with spec_tab

    as

    (

    Select ',' col1 of double

    Union

    Select ',' col1 of double

    Union

    Select 'something' double

    )

    Select col1

    of spec_tab

    How to get special characters in the oracle column only

    You mean like this?

    -------------

    WITH spec_tab
         AS (SELECT ',,,,' col1 FROM DUAL
             UNION
             SELECT ',' col1 FROM DUAL
             UNION
             SELECT 'some thing' FROM DUAL)
    SELECT col1
      FROM spec_tab
      where translate('~'||col1,'~0123456789abcdefghijklmnopqrstuvwxyz ','~')<>'~'
    

    Output:

    -----

    COL1

    ,

    ,,,,

    See you soon,.

    Manik.

  • I have Adobe Acrobat Pro XI.  I went to special characters from the Edit menu and choose some emoji as Favorites, but I can't understand how to insert in the document.  How can I insert special characters into a document?

    How can I insert emoji or other special characters in a document using Adobe Acrobat Pro XI?  I went to special characters from the Edit menu and may not understand how to insert the special character in the document.

    He's not that kind of editor. You can use the characters in a font. If you can select a font with the emoji, which fits into the case, and then enter the characters, it can work.

    This suggests that you try to do TOO MUCH with a PDF file. It is a common thing, but the message should be: everything simply because you can edit a PDF file, does not mean that it is the most effective way for you to do your job.

  • Hello. Can he the word pdf conversion to retain the original character of the special characters of the algorithm? the formulas have special mathematical symbols. Conversion them kept?

    Hello. Can he the word pdf conversion to retain the original character of the special characters of the algorithm? the formulas have special mathematical symbols. Conversion them kept?

    The equations are a problem. If the equation is text, you can be lucky if you have the fonts on your system. Most of the time I have try, the fonts in the equation are garbage. Expect to have to retype the equations and some special characters. Much also depends on the existence of the fonts on your system. Just in my experience, the equations are almost impossible to convert.

  • When installing FF7, I clicked Yes to the "do you want to send info back to the developers on the use of memory etc." and now I want to no longer send information as his gel my browser then how do I disable that?

    Question
    When installing FF7, I clicked Yes to the "do you want to send info back to the developers on the use of memory etc." and now I want to no longer send information as his gel my browser then how do I disable that?

    See:

    • Firefox > Preferences > advanced > general: system default: 'send performance data '.
  • How can I select the files in a folder with the help of a list with the files you want and after that rename only the files using another list with desired new names?

    How can I select the files in a folder with the help of a list with the files you want and after that rename only the files using another list with desired new names?

    I have only:
    D: / images (where are necessary + not need files)
    -a list with only the necessary files
    -a list with new names for the files needed
    Thank you.

    Hi Pustiu,

    Thanks for posting in the Microsoft Community.

    You want to know how to select the files in a folder using a list with the files you want and after that rename only the files using another list with desired new names.

    I would have you post your query in the TechNet forums because it caters to an audience of it professionals.

    Your query will be better addressed there.

    Check out the link-

    http://social.technet.Microsoft.com/forums/en-us/w7itprogeneral/threads

    We know if you need help. We will be happy to help you. We, at tender Microsoft to excellence.

    Thank you.

  • Special characters in the classic report

    Hello

    I'm unable to display special characters in the classic report.

    "For example""" is coming as ' '.

    Is there a way to fix this?

    It seems that use characterset "WE8ISO8859P15" is causing this issue, which is a single-byte character set and so unable to encode these characters.

    Please correct me if I'm wrong.

  • You want to update MAC OS to the latest version. Adobe CS5 creation will take place the last MAC OS?

    You want to update MAC OS to the latest version. Will be adobe Creative Suite CS5 running the latest MAC OS?

    MANY problems with the old software and operating systems... The El Capitan and Windows 10 Mac

    Not supported by Adobe, so if you have problems and are not able to help other users here, you will get an update to this older version of Adobe

    Java https://helpx.adobe.com/dreamweaver/kb/dreamweaver-java-se-6-runtime.html may be required

  • "The server has encountered an error" when you want to send a message with the form.

    Hello

    "The server has encountered an error" when you want to send a message with the form.

    With the businesscatalyst site, the message is well received by the recipient as the site FTP host, the previous message is displayed.

    What code do I add and where?

    In advance, thank you.

    Please, answer in french!

    Hello ScratchMaster,

    Please see the link below, I'm sure that you will find it useful.

    https://forums.Adobe.com/docs/doc-3581

    Kind regards

    Vivek

  • You want to update video driver in the Photoshop cs4 software.   Already have the driver, just need to get into the software

    You want to update video driver in the Photoshop cs4 software.   Already have the driver, just need to get into the software

    The driver will not in Photoshop. It is installed with your operating system. There should be an installer as part of the file you have received. When the driver proper. You must choose between Mac or Windows and your system is 32-bit or 64-bit. Some systems can only provide an update of the driver during his sense of system update that it is included in the same update. Others may use a update of the system will allow a user to install the driver manually, but can be difficult to prevent the user from making things worse.

Maybe you are looking for