Forms 6i - Highlight a tab page label (BOLD or coloring) in a tabbed canvas

Hi Sir,
I have an urgent requirement wherein I need to highlight a particular tab page header (label) either via
1. Making the tab page label BOLD
Or
2. Coloring that particular tab page.
OR
some other way.
Could anyone please help me on this.
Regards,
Kiran

No version of Oracle Forms allows you change these properties of a tabbed canvas. If you were using Forms 10g or higher, you would be able to use the Oracle Forms Look and Feel Project which is a set of JavaBeans created by Francois Degrelle and enables you the change many of the properties that Forms won't let you change. Unfortunately, you are stuck with what is available in Forms 6i.
Craig...

Similar Messages

  • Tab page label color changes between 9.0.4 and 11.1.2

    In Forms 9.0.4, all of my Tab Page Labels were in a black font. When I migrated to version 11.1.2, they are now in a white font. How can I force the font on the tab page labels to be black?
    I tried setting foreground color on the Tab Page to be black, but that didn't help.
    I also tried setting a visual attribute on the Tab Page to one that had a black foreground color, but that also didn't help.
    Any suggestions will be much appreciated.

    I was able to solve the problem by changing the text color directly in the Layout Editor (with the color pickers at the bottom of the left hand toolbar), rather than using the property palette to set this.
    Edited by: cindyconlin on Mar 21, 2013 10:43 AM

  • Tab Page Label

    Hi,
    Is it possible to change a Tab Page Label dynamically.
    i,e clicking on a tree node, the tab page label should
    change to the name of the selected node.
    Thanks
    Sharath

    As far as I remember, there is also a difference between Forms 6 and 6i. I think Forms 6 isn't able to set the size dynamically, 6i is. So you have to use enough spaces to have the right size for the longest possible dynamic value.
    Regards,
    Torsten

  • Programmatically change tab page label font size

    Hellow Fellow LabVIEW Lovers,
    I thought this subject was easy with LV2009, somehow I cannot find the property for the "tab page label font size", yes, i also looked with the "pages" ref array from the tab ref, also no luck. Could someone point me to the right place? I would really appreciate your help. Thanks.
    Bryan

    Odd,
    The each tab is a page  Class Generic>Page.
    This snippet shows that there are no objects on the page (like the lable)
    However ,Page Propertise do not include lable.font.all elements
    Page Properties
    Dim hasPlayer, playerversion
    hasPlayer = false
    playerversion = 10
    Do While playerversion > 0
    On Error Resume Next
    hasPlayer = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & playerversion)))
    If hasPlayer = true Then Exit Do
    playerversion = playerversion - 1
    Loop
    is_FlashVersion = playerversion
    is_Flash = hasPlayer
    Requires: Base Package
    Inherits from Generic. View the class hierarchy.
    Property
    Description
    Colors
    Gets or sets the foreground and background colors of a tab
    control page. Details
    Colors:BG Color
    Gets or sets the background color of the tab control page. Details
    Colors:FG Color
    Gets or sets the foreground color of the tab control page. Details
    Controls on Page[]
    Returns an array of references to the controls and indicators
    on a page. The order in which you place the objects on the page determines the
    index of the object in the array. For example, if the first object you place on
    the page is a numeric control, the index of the numeric control in the array
    returned by this property is 0. Details
    Decorations on Page[]
    Gets an array of references to all decorations on a tab
    control page. Details
    Description
    Gets or sets the description of a tab control page. Details
    Independent Label
    Makes the tab control page caption independent of the page
    label. Details
    Objects on Page[]
    Gets an array of references to all controls, indicators, and
    decorations on a page. Details
    Page Enabled State
    Gets or sets the state of a tab control page to enabled,
    disabled, or disabled and grayed. Details
    Page Label
    Gets the label of a tab control page. Details
    Page Visible
    Shows or hides individual pages of a tab control. Details
    Tab Caption
    Gets or sets the text of a caption on a tab control page. Details
    Tip Strip
    Gets or sets the tip strip of a tab control page. Details
    Moreover, I can select a tab lable on the FP, change its font and EACH tab lable changes to the SAME font and color. 
    Must be some serious MAGIC in the background similar to how NI made Latching Bools.
    Champions?
    Jeff

  • Setting Tab Page Lable Bold

    I want to change the tab page lable dynamically whenver user select the concerned tab page it should be bold,i tried but it seems to me its not possible due to OS.
    Any body has clue which serve my purspose to just alert the user that you are on this tab page by showing bold tab page lable or get it colored etc.But i dont wana give any text heading at canvas.
    Note : i am using Forms 6i
    Thanx in advance
    Khurram

    See
    SET_TAB_PAGE_PROPERTY
    also see
    SET_CANVAS_PROPERTY
    SET_VIEW_PROPERTY
    HIDE_VIEW
    SHOW_VIEW

  • 11g Forms Tab-Page Navigation

    I am using Forms 11g on Solaris.
    A main navigator form opens another form which has a content canvas, tab-page canvas and (3) stacked canvases.
    The problem I am having is with tab-page navigation.     CTRL+TAB ( next ) and CTRL+SHIFT+TAB ( previous )
    As long as I do not initiate navigation from an item on a stacked canvas, navigation is as expected ( between tab pages only ).
    However, navigating from an item within a stacked canvas causes navigation to the parent form.
    Repeating the tab navigation keys from the parent form returns to the called form.
    Note that both key-combinations simply toggle back and forth.
    I have found no documentation on tab-page navigation so any help / insight is greatly appreciated !
    Mike

    Hi Soofi !
    Changing block order in the called form does not affect the navigation between tab pages.
    Note in my question that the resulting undesired navigation is to and from the calling form ( which only has one block ).
    Navigation between items and blocks works as expected.
    To reiterate -
         The only navigation that fails is when I attempt to CTRL+TAB or CTRL+SHIFT+TAB to another tab page from within an item on a stacked canvas.
         Attempting this navigation results in moving the cursor focus to the calling form.
         Repeating the attempt from the calling form moves back to the called form.
         None of your methods mention navigation between forms .
    Thanks for your interest.

  • Set Tab Page property -  Label property dynamically

    Hi All,
    I have a Tab page canvas.
    My 1st tab canvas Label is "Projects".
    If i entered 2 record means i need to change the Tab page label as "Projects 2".
    IN which trigger , i will write a coding for that?
    If i am in the Tabbed canvas , it is working .If i come to Main canvas the Tab canvas label is clearing.
    Can u tell me suggestion for that.

    You could go with a combination of a Calculated item of type "Summary" and another calculated item of type "Formula":
    Create a calculated item :BLOCK.IT_COUNT of type "summary" which counts one of the NOT NULL-items in your data-block.
    Create a Program Unit liek that:
    FUNCTION FK_CHANGE_COUNT
    RETURN NUMBER IS
    BEGIN
      SET_TAB_PAGE_PROPERTY('YOUR_TAB_PAGE', LABEL, 'The Text' || :BLOCK.IT_COUNT);
      RETURN 1;
    END;Create a second calculated item of type "Formula", in the formula enter FK_CHANGE_COUNT.
    Now, everytime the count of the block changes, the "dummy" function will be called to calculate whatever, and the function sets the Tab-Label to the desired value.

  • Tab pages do not seem to have "scroll" feature in 9i

    I have a couple of forms with a lot of Tab pages, and in the Forms9iDS it appears to have that small, horizontal "scrollbar" (widget with [start][scroll on tab page back][scroll one tab page forward][end] at the upper right corner).
    However, the tab pages (when run in 9i) all show up on the same canvas, but they seem to have been shortened instead, substituting "..." where the tab page label is too long to display.
    Can this be set - I mean can you choose whether it display the little scroll-thingy, or whether it tries to fit everything inside the Tab Canvas at once?
    Sincerely,
    Jesper Vad Kristensen
    Aarhus, Denmark

    Jesper,
    there exist a HTM parameter "dontTruncateTabs" that needs to be set to true. To use this HTML parameter do as follows
    1. open basejini.htm in the forms90/server directory with a text editor
    2. Add the following line to the IE section
    <PARAM NAME="dontTruncateTabs" VALUE="true">
    3. Add the following line to teh Netscape section of the same file
    dontTruncateTabs=true
    Note that if you use other base HTML files then basejini.htm you will have to edit these too.
    Frank

  • Tab pages do not have "scroll" feature in 9i

    I have a couple of forms with a lot of Tab pages, and in the Forms9iDS it appears to have that small, horizontal "scrollbar" (widget with [start][scroll on tab page back][scroll one tab page forward][end] at the upper right corner).
    However, the tab pages when run in 9i all show up on the same canvas, but they seem to have been shortened instead, substituting "..." where the tab page label is too long to display.
    Can this be set - I mean can you choose whether it display the little scroll-thingy, or whether it tries to fit everything inside the Tab Canvas at once?
    Sincerely,
    Jesper Vad Kristensen
    Aarhus, Denmark

    Jesper,
    please see
    vertical scrollbar on only one tab-page
    Frank

  • WHEN-TAB-PAGE-CHANGED  TRIGGER

    Hi all
    Is any way to found examples of
    WHEN-TAB-PAGE-CHANGED trigger
    in forms implementations.
    Any references will be very usefull.
    Thanks a lot,
    Gor

    In the the on-line help Forms' doc there is one :
    In case you cannot find it... here it is:
    Examples /* Use a When-Tab-Page-Changed trigger to dynamically**
    change a tab page's label from lower- to upper-case**
    (to indicate to end users if they already have** navigated to the tab page):*/
    DECLARE
         tp_nm VARCHAR2(30);
         tp_id TAB_PAGE;
         tp_lb VARCHAR2(30);
         BEGIN
              tp_nm := GET_CANVAS_PROPERTY('emp_cvs', topmost_tab_page);
              tp_id := FIND_TAB_PAGE(tp_nm);
              tp_lb := GET_TAB_PAGE_PROPERTY(tp_id, label);
              IF tp_lb LIKE 'Sa%'
                      THEN
                             SET_TAB_PAGE_PROPERTY(tp_id, label, 'SALARY');
              ELSIF tp_lb LIKE 'Va%'
                      THEN
                              SET_TAB_PAGE_PROPERTY(tp_id, label, 'VACATION');
              ELSE
                      null;
              END IF;
    END;Greetings...
    Sim

  • Vertical scroll bar on tab page.

    Hello,
    I have to show vertical scrollbar on my tab canvas.
    I have one Content canvas on which I have 1 tab canvas with 8 tab pages.(sec1,sec2,sec3 ..sec8)
    I have another tab canvas(kind of seb section for the above and each has 3 tab pages) like
    Sec1 will have (sub sectiion tab canvas) which has again 3 tab pages 1.1,1.2,1.3 and soon
    now on the third tab page of the sub section or second tab canvas, I need vertical scroll bar to fit number of fields which are more than the tab canvas size.
    all are from the same data block
    Could you please help me. i tried by creating staked canvas but no luck.
    can you please let me know the procedure to be followed
    Thank you in advance.

    Could you please help me. i tried by creating staked canvas but no luck.What happened when you tried to use a stacked canvas?
    If the items in the area you want to scroll are all in the same datablock you can set the Scrollbar properties of the block to be displayed. This will enable scrolling of the items that are within the specific block. If you items are assembled from more than block, then using a stacked canvas is a better option for enabling scrolling within an area.
    Also, what is your Forms version?
    Craig...

  • FRM-41837 Error raising tab page

    Hi,
    I've got a problem with my form. I have four tab pages but in some cases I need to hide two tabs and save the information of the other tabs , when I try to save the data in my enabled tab pages I'm getting the error: FRM-41837 Error raising tab page
    Can somebody help me please?
    Thanks in advance.

    Hi Sarah,
    Here's the deal, I have four tab pages and I need to hide two tab pages because of one or more conditions, the thing is I need to save tha data in my available tabs, I checked the code and I don't have any go_block or go_item sentence in my triggers that could be affecting but I'm gonna check the code again maybe is something else =(
    Thanks a lot for your comments

  • Navigating to a tab page after a show_window() in on-commit trigger

    I have a multi-tab form. On-commit, the form checks for warnings. When there is one or more warnings it opens a window to list them. With or without warning messages, the data is committed with commit_form.
    Whenever window with warning messages is displayed, the form always returns to the top-most tab. Otherwise tab page is not changed.
    In the on-commit trigger I save the tab page and then call set_canvas_property() after show_window() to restore the tab page. For some reason, the first tab page is always on top even though the the tab page name I saved is correct. I can't use go_block() in the on-commit trigger.
    Are there other ways to restore a tab page on-commit?

    Hi claytonfan
    Are there other ways to restore a tab page on-commit? Try the following code in the WHEN-TAB-PAGE-CHANGED OR On-commit trigger.
       IF GET_CANVAS_PROPERTY('tab_canvas_name', TOPMOST_TAB_PAGE) = 'first_tab_name' THEN
    GO_BLOCK('BLOCK_NAME');
          --write ur code--
       ELSIF GET_CANVAS_PROPERTY('tab_canvas_name', TOPMOST_TAB_PAGE) = 'second_tab_name' THEN
        --write ur code--
       END IF;Hope this helps...
    Regards,
    Amatu Allah

  • Tab page shortcut

    HI ,
    I have problem creating shortcut for tabe page.
    In aplication there are six tab pages, and I need to have
    keyboard shortcut to every tab page.How to create that?
    At example, if user press ALT+R I want certain tab page to be
    toppage , or better would be with F2, but I am not sure if that
    possible because F1-F10 are predifined Forms Developer keys.
    Any hint?
    Thanks in advance.
    Zina
    null

    e.g. you use your oracle terminal and define:
    KEY-F0 = Ctrl-0
    KEY-F1 = Ctrl-1
    KEY-F2 = Ctrl-2
    After that you can use the forms-trigger KEY-F0 to -F9.
    In the trigger you hardcode e.g.
    KEY-F1 : go_item (<Item of first tab>)
    KEY-F2 : go_item (<Item of second tab>)
    That's it
    Gerd

  • Tab page navigation

    Hello,
    I am using Jdeveloper Studio Edition Version 11.1.1.1.0
    I want to navigate between tab pages. In my form there are three tab pages. From the first tab page i want to go to other tab pages conditionally.
    If user enters 2 into a text field and click on a button then cursor will go the 2nd tab page. If user enters 3 into a text field and click on a button then cursor will go the third tab page. Please help me.
    Thanks

    Hi,
    tab pages have a a disclosed attribute in their showDetailItem component
    http://adfui.us.oracle.com/projects/adf.faces/multiproject/adf-richclient-api/tagdoc/af_showDetailItem.html
    If you use EL to reference a managed bean and then return true/false dependent on what the user typed into the field, then after partially refreshing the panelTab component, you should see the switch in the component tab
    Frank

Maybe you are looking for

  • How to use the Bluetooth module natively in Parallels Desktop

    link to the instructions on how to enable bluetooth natively in parallels: http://www.mattiouz.com/blog/2007/04/13/how-to-use-the-built-in-mac-bluetooth-in -windows-under-parallels/ link to the .exe that installs the apple driver for the bluetooth mo

  • Is it possible to watch music videos on a nano?

    I bought a music video on itunes and when I updated my ipod the music video didn't transfer onto the ipod. Can a nano play music videos? dell   Windows XP  

  • MDMP unicode conversion - Vocabulary maintenace

    Hello,           W have upgraded 4.5B MDMP system to ECC4 EHP4 and now we are in process of unicode conversion. please advice on as specified below. In SPUMG Scan process, we have completed the following scans: a) Tables without language Info b) Tabl

  • Brand new to Mac world...

    All my apps are Windows apps, if I install Win7 with Parallels on my new MacBook Pro, would I be able from Photoshop on the Windows side be able to access an image file that is saved on the Mac side, like for instance, open>MacOS>IPhoto>image.jpg, or

  • Resize group of objects

    Hi, i had several objects that i group. when i try to resize the "new" objects group, it already has: W : 16384 px H : 16384 px so the maximum possible even if on the screen it is only 200 px width by 50 px height. where is the problem ? moreover how