Removing TabControl's Selected TabItem's bottom border

Hi,
Please let me know how can i remove the selected tab item's bottom border of my tab control.
I tried with the below code but it did not work.
<Trigger Property="IsSelected" Value="true">
                            <Setter Property="Panel.ZIndex" Value="100"/>
                            <Setter Property="Background" TargetName="Bd" Value="{StaticResource
TabItemSelectedBackground}"/>
                            <Setter Property="BorderThickness" TargetName="Bd" Value="1,3,1,0"
/>
                            <Setter Property="BorderBrush" TargetName="Bd" Value="{StaticResource
TabItem_BorderBrush_Selected}" />
                            <Setter TargetName="Bd" Property="Margin"
                                Value="{StaticResource TabItemMargin_Selected}"/>
                        </Trigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="false"/>
                                <Condition Property="IsMouseOver" Value="true"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="BorderBrush" TargetName="Bd" Value="{StaticResource
TabItemHotBorderBrush}"/>
                        </MultiTrigger>
                        <Trigger Property="TabStripPlacement" Value="Bottom">
                            <Setter Property="BorderThickness" TargetName="Bd" Value="1,0,1,1"/>
                        </Trigger>
                        <Trigger Property="TabStripPlacement" Value="Left">
                            <Setter Property="BorderThickness" TargetName="Bd" Value="1,1,0,1"/>
                        </Trigger>
                        <Trigger Property="TabStripPlacement" Value="Right">
                            <Setter Property="BorderThickness" TargetName="Bd" Value="0,1,1,1"/>
                        </Trigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Top"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-2,-2,-2,-1"/>
                            <Setter Property="Margin" TargetName="Content" Value="0,0,0,1"/>
                        </MultiTrigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Bottom"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-2,-1,-2,-2"/>
                            <Setter Property="Margin" TargetName="Content" Value="0,1,0,0"/>
                        </MultiTrigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Left"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-2,-2,-1,-2"/>
                            <Setter Property="Margin" TargetName="Content" Value="0,0,1,0"/>
                        </MultiTrigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Right"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-1,-2,-2,-2"/>
                            <Setter Property="Margin" TargetName="Content" Value="1,0,0,0"/>
                        </MultiTrigger>
Chetan Rajakumar

Ok, I have used the same TabcontrolStyle
as mentioned in your post and the TabItem
style i have defined as shown below.
<Style x:Key="TabItemFocusVisual">
        <Setter Property="Control.Template">
            <Setter.Value>
                <ControlTemplate>
                    <Rectangle Stroke="Black" StrokeDashArray="1 2" StrokeThickness="1" Margin="3,3,3,1" SnapsToDevicePixels="true"/>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
    <SolidColorBrush x:Key="TabControlNormalBorderBrush" Color="#8C8E94"/>
    <Color x:Key="TabControl_BackgroundColor_Base">#EEF7FF</Color>
    <LinearGradientBrush x:Key="ButtonNormalBackground" EndPoint="0,1" StartPoint="0,0">
        <GradientStop Color="#F3F3F3" Offset="0"/>
        <GradientStop Color="#EBEBEB" Offset="0.5"/>
        <GradientStop Color="#DDDDDD" Offset="0.5"/>
        <GradientStop Color="#CDCDCD" Offset="1"/>
    </LinearGradientBrush>
    <LinearGradientBrush x:Key="TabItemHotBackground" EndPoint="0,1" StartPoint="0,0">
        <GradientStop Color="#EAF6FD" Offset="0.15"/>
        <GradientStop Color="#D9F0FC" Offset=".5"/>
        <GradientStop Color="#BEE6FD" Offset=".5"/>
        <GradientStop Color="#A7D9F5" Offset="1"/>
    </LinearGradientBrush>
    <LinearGradientBrush x:Key="TabItem_BorderBrush_Selected"
                           StartPoint="0,0" EndPoint="0,1">
        <LinearGradientBrush.GradientStops>
            <GradientStop Color="#ef1616" Offset="0.1" />
            <!--<GradientStop Color="{StaticResource TabControl_BackgroundColor_Base}"
                          Offset="0.15"/>-->
            <GradientStop Color="#d2d4d5" Offset="0.1"/>
            <!--<GradientStop Color="{StaticResource TabControl_BackgroundColor_Base}"
                          Offset="1.0"/>-->
        </LinearGradientBrush.GradientStops>
    </LinearGradientBrush>
    <SolidColorBrush x:Key="TabItemSelectedBackground" Color="White"/>
    <SolidColorBrush x:Key="TabItemHotBorderBrush" Color="#3C7FB1"/>
    <SolidColorBrush x:Key="TabItemSelectedBorderBrush" Color="White"/>
    <SolidColorBrush x:Key="TabItemDisabledBackground" Color="#ebeff2"/>
    <!--<SolidColorBrush x:Key="TabItemDisabledBackground" Color="LightGray"/>-->
    <SolidColorBrush x:Key="TabItemDisabledBorderBrush" Color="#d2d4d5"/>
    <SolidColorBrush x:Key="TabItemDisabledForeground" Color="#5f6c7f"/>
    <Thickness x:Key="TabItemMargin_Selected">-2,0,0,0</Thickness>
    <Style x:Key="CustomTabItem" TargetType="{x:Type TabItem}" >
        <Setter Property="FocusVisualStyle" Value="{StaticResource TabItemFocusVisual}"/>
        <Setter Property="Foreground" Value="#5f6c7f"/>
        <Setter Property="FontSize" Value="14"/>
        <Setter Property="FontFamily" Value="Lato"/>
        <Setter Property="Padding" Value="6,1,6,1"/>
        <Setter Property="BorderBrush" Value="{StaticResource TabControlNormalBorderBrush}"/>
        <Setter Property="Background" Value="{StaticResource ButtonNormalBackground}"/>
        <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
        <Setter Property="VerticalAlignment" Value="Center"/>
        <Setter Property="VerticalContentAlignment" Value="Stretch"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type TabItem}">
                    <Grid SnapsToDevicePixels="true">
                        <Border x:Name="Bd" Background="{TemplateBinding Background}" Height="30" Margin="{StaticResource
TabItemMargin_Selected}" BorderBrush="{TemplateBinding BorderBrush}"  BorderThickness="1,1,1,0" Padding="{TemplateBinding Padding}">
                            <ContentPresenter x:Name="Content" HorizontalAlignment="{Binding HorizontalContentAlignment,
RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" VerticalAlignment="{Binding VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
ContentSource="Header" RecognizesAccessKey="True"/>
                        </Border>
                    </Grid>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="true">
                            <Setter Property="Background" TargetName="Bd" Value="{StaticResource
TabItemHotBackground}"/>
                        </Trigger>
                        <Trigger Property="IsSelected" Value="true">
                            <Setter Property="Panel.ZIndex" Value="100"/>
                            <Setter Property="Background" TargetName="Bd" Value="{StaticResource
TabItemSelectedBackground}"/>
                            <Setter Property="BorderThickness" TargetName="Bd" Value="1,3,1,0"
/>
                            <Setter Property="BorderBrush" TargetName="Bd" Value="{StaticResource
TabItem_BorderBrush_Selected}" />
                            <Setter TargetName="Bd" Property="Margin"
                                Value="{StaticResource TabItemMargin_Selected}"/>
                        </Trigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="false"/>
                                <Condition Property="IsMouseOver" Value="true"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="BorderBrush" TargetName="Bd" Value="{StaticResource
TabItemHotBorderBrush}"/>
                        </MultiTrigger>
                        <Trigger Property="TabStripPlacement" Value="Bottom">
                            <Setter Property="BorderThickness" TargetName="Bd" Value="1,0,1,1"/>
                        </Trigger>
                        <Trigger Property="TabStripPlacement" Value="Left">
                            <Setter Property="BorderThickness" TargetName="Bd" Value="1,1,0,1"/>
                        </Trigger>
                        <Trigger Property="TabStripPlacement" Value="Right">
                            <Setter Property="BorderThickness" TargetName="Bd" Value="0,1,1,1"/>
                        </Trigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Top"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-2,-2,-2,-1"/>
                            <Setter Property="Margin" TargetName="Content" Value="0,0,0,1"/>
                        </MultiTrigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Bottom"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-2,-1,-2,-2"/>
                            <Setter Property="Margin" TargetName="Content" Value="0,1,0,0"/>
                        </MultiTrigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Left"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-2,-2,-1,-2"/>
                            <Setter Property="Margin" TargetName="Content" Value="0,0,1,0"/>
                        </MultiTrigger>
                        <MultiTrigger>
                            <MultiTrigger.Conditions>
                                <Condition Property="IsSelected" Value="true"/>
                                <Condition Property="TabStripPlacement" Value="Right"/>
                            </MultiTrigger.Conditions>
                            <Setter Property="Margin" Value="-1,-2,-2,-2"/>
                            <Setter Property="Margin" TargetName="Content" Value="1,0,0,0"/>
                        </MultiTrigger>
                        <Trigger Property="IsEnabled" Value="false">
                            <Setter Property="Background" TargetName="Bd" Value="{StaticResource
TabItemDisabledBackground}"/>
                            <Setter Property="BorderBrush" TargetName="Bd" Value="{StaticResource
TabItemDisabledBorderBrush}"/>
                            <!--<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>-->
                            <Setter Property="Foreground" Value="{StaticResource TabItemDisabledForeground}"/>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
And I am using those 2 styles as shown below,
<TabControl x:Name="ShowFullTextTabControl" Grid.Row="1" SelectionChanged="ShowFullTextTabControl_SelectionChanged" Background="White" Margin="21,12,24,0" Style="{DynamicResource TabControlStyle1}"
/>
<TabItem  x:Name="PrecedentTab" Header="Precedent" Cursor="Hand" Style="{DynamicResource CustomTabItem}" Width="95">
Please let me know where i am doing wrong. Thanks in advance.
Chetan Rajakumar

Similar Messages

  • Report generation: Using only bottom border cell in Excel

    I'm trying to write a report to Excel. for each 2 rows I want the cells to have a bottom border.
    With the VI " Excel set Cell Color and Border VI" I have 2 options, using inside border and outside border.
    Outside border seems to be the top and bottom border. However , I can only put them both on and off, I can't use them seperatly.
    Is there a way of telling this VI that I only want to have a bottom border?
    Idealy I would like to select a cellstyle like one can do in Excel:

    Hello kev91,
    Can you give me some more information about the software versions you're using?
    Is this LabVIEW 2012?
    Which version of Excel are you using?
    Can you share an example of how the final Excel-file should look like?
    It would also be useful to see what you already have written in LabVIEW so that we can just change/modify that code.
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

  • HP Deskjet Ink Advantage 2060 All-in-One Printer Bottom Border Printing problem

    i have some problem...can anyone help me to solve this..when i want to print full border page (actually my paper size A4) bottom border didnt print out. i had some changes setting but it not solve the problem...anyone can help me??? pleaseee!!!

    Hi @fatin7899 
    Did you choose A4 in the paper size selection in the program you are printing from?  What program are you using to print from, and have you maybe tried a different program?
    Are you able to print this project onto a different size page successfully?
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Impact of selecting "Removing Query from Selection List" in 2 channels.

    HI All ,
    I have customized a query in one channel (My Agreements and Contract Documents query in Master Agreements List channel) and have removed the standard query from the channel by checking the  "Remove Query from Selection List" and introduced my custom query in that query group .
    But  it resulted in break in chain for  "Master Agreements" link in "Contracts To Do List" channel as the link was pointing to standard  "My Agreements and Contract Documents" query and is displaying "The query can not be executed. Contact your system administrator" when ever I click on that.
    Any pointers on how to overcome above scenario wud be gr8!
    Regards,
    Uday

    Hi Uday,
    In order for To Do List channel to work, the query definition should be in the Master Agreement List query group. Do you still want the standard query in the To Do List? If so, you would have to leave it on the Query Group as To Do list is pointing to it. May be change the display name of the query so you can differentiate between the 2 queries. The other option is change the To Do channel to point to the custom query.
    Regards,
    Vikram

  • JComboBox - Bottom border is not visible for the first time

    JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    This happens because the list when dropped down goes out of the frame.
    If have the increased the size of the Frame then i am able to see it,but i dont want to do this.
    I am using jdk1.3.1_02.
    Any Help would be great.
    Please find the code below.
    Thanks,
    Sridhar.
    //file: Lister.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Lister {
        public static void main(String[] args) {
            JFrame frame = new JFrame("Lister v1.0");
            // create a combo box
            String [] items = { "uno", "due", "tre", "quattro", "cinque",
            "sei", "sette", "otto", "nove", "deici",
            "undici", "dodici" };
            JComboBox comboBox = new JComboBox(items);
            comboBox.setEditable(true);
            // put the controls the content pane
            Container c = frame.getContentPane( );
            JPanel comboPanel = new JPanel( );
            comboPanel.add(comboBox);
            c.add(comboPanel, BorderLayout.NORTH);
            c.setBackground(Color.white);
            comboBox.setBackground(Color.white);
            comboPanel.setBackground(Color.white);
            frame.setBackground(Color.white);
            frame.setResizable(false);
            frame.setSize(200, 200);
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            frame.setVisible(true);
    }

    Hello,
    try this:JPanel comboPanel = new JPanel(new BorderLayout());Regards,
    Tim

  • Drop down list(JComboBox) - Bottom border is not visible for the first time

    Drop down list(Combo-box) JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    I am using jdk1.3.1_02.
    Did any one face this issue.
    Please let me know.
    Thanks,
    Sridhar.

    I must be a little confused regarding your question.
    You can simply change your code frame.setSize(200, 200); to frame.setSize(400, 400);When you say you are unable to see the border are you specifically talking about the border of the frame or the border of the combo box?
    Lance

  • How do I remove the white space from the bottom and side of my document?

    How do I remove the white space from the bottom and side of my document? (I'm not talking about printing, just viewing it on the screen.) There are about 6 inches of white space at the bottom and at the right hand side. I don't like this. On a blank new spreadsheet it's triple that amount of white space.

    The infinite canvas convention doesn't make a lot of sense for Numbers. When I'm viewing a spreadsheet and mistakenly scroll into white, empty space I think, "this is ridiculous - all of my content is fits on one screen. there's nothing over there."
    A (relatively) infinite canvas is logical for Microsft Excel because it's one big table. There are 256(?) columns by default and hundreds of rows on a sheet - there are cells outside what a user is looking at to see. However, when viewing a Numbers spreadsheet with a single 10 column 10 row table that fits on the screen, there's nothing else on it to scroll to.
    Numbers should distinguish between viewing a spreadsheet and editing one. When I'm just viewing, when there's no content outside the window it shouldn't scroll there. This window behavior is beyond annoying for Numbers on my iPad and iPhone.
    (Adding user-defined canvas size setting to my view mode / edit mode thinking would probably be the most complete solution to this now that I think about it.)
    Until now the way scrolling worked in Numbers has defied logic. Actually it still does lol. That said, thank you Yellowbox for providing a clear explanation. Much appreciated.

  • Show bottom border in First page and top border in next page for rectangle in SSRS

    Hi,
    I have rectangle  inside that Text box and tablix are there, where the text data spans to multi pages (2 or 3 Pages) , so the Bottom border in first Page will go off and in other pages both bottom and top border will be not visible, and where the text
    data ends in that page we can able to see the closed rectangle bottom border. .“OmitBorderOnPageBreak”
    property is set to false only.
    Kindly send me if any expressions is there and how to set it, Kindly do the need.

    Hi Anand,
    According to your description, you have a rectangle in your report, and there are tablix inside this rectangle. Now the issue is that there is no border on the bottom of first page and there is no border on the top of new pages when the tablix break to multiple
    pages, right? If I have anything misunderstand, please point it out.
    I have tested it on my local environment, and got the same results as yours. It seems this is default setting of Reporting Services. If there is border on the bottom of first page and there is border on the top of new pages, then this rectangle became
    multiple rectangles. 
    The workaround for this issue is that add page header and page footer for your report, and add a line to them respectively. Then run this report, it looks like there is border on the bottom of first page and there is border on the top of new pages.
    Thank you for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • How do I remove the spotlight effect on the bottom of my screen? I am running OS 7 on a Macbook. I have already tried the Shift Control Eject.

    How do I remove the spotlight effect on the bottom of my screen? I have already tried the Shift+Control+Eject.

    Could you please post a screen shot - not sure what you mean by spotlight effect.

  • CSS Display table with the bottom border alone

    Hi all,
    I am very poor in CSS, I badly in need of a style.
    I want the table with the bottom border alone
    i tried like
    <table frame="below" cellpadding="2px" cellspacing="0" style="overflow:scroll;empty-cells:show;border:1px solid #285577;" width="350px">';
    but frame="below" is not working with IE-7
    Please could any give me a solution.
    thanks in advance
    bye
    Srikavi

    Srikavi,
    I do not know what kind of table you exactly need but
    &lt;table style="border-bottom: 1px solid #285577;">
    should do the work.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • ActiveX- Excel- Adding top and bottom border

    Hi,
    I'm trying to add a border to a range of cells in excel by the mean of activeX. I need to add only the top border and the bottom one.
    I have tried using the selection property contained in Globals. I have also tried creating a style in the current excel Workbook but I do not know how to make it work.
    I can only create a border arround all the range using AroundBorder.
    Thanks by forehand
    Attachments:
    Open_New_WorkSheet.vi ‏44 KB
    Set_cell_border.vi ‏52 KB

    You do not need to use the style or the selection property to apply the borders to specific edges of the range. Just use the Item Method to specify which one you want to modify.
    Method Worksheet->Range
    Property Range->Borders
    Method Borders->Item(xlEdgeTop)
    Property Border->Weight = xlThin
    Attached is you VI modified as described.
    Michael Munroe
    Certified LabVIEW Developer
    www.abcdef.biz
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector
    Attachments:
    Set_cell_border_abcdef.vi ‏51 KB

  • Removing 1x and 2x buttons at bottom of screen

    Yesterday I accidentally touched something on my iPad mini, and now all of a sudden I have 1x and 2x zoom buttons at the bottom of the screen. Also, I now have a border around some of my games. For example, Pocket Frogs now has a grey border, which wasn't there before the 1x and 2x zoom buttons appeared. How can I get rid of these buttons and the border?
    It's an iPad mini.
    Thank you!

    Those are iPhone apps that you downloaded to your iPad. They will work on the iPad, but the resolution isn't as high if you tap on the 2X which doubles the native size and resolution of the app. If you tap on the 1X, that returns the app to it's native iPhone size.
    You cannot remove the 1X and the 2X since they serve a function that I described above.

  • How do I remove a small line at the bottom of the page?

    Hello!
    I'm formatting some work for a client and I can't seem to find out how to remove this line at the bottom of the screen. It's on every page. It's not a line that was drawn in because I can't click to remove it. Has anyone seen this before?
    Thanks,
    KHILL

    Post a screen shot so we know what you are talking about.
    Does it print, or is it just on the screen?
    Jerry

  • Remove Black Bars from Top and Bottom

    Here's my situation:
    I shot my footage FULL FRAME (not anamorphic) but while shooting my footage I had markers on my LCD for a 2.35 Aspect Ratio.
    Now that my footage is edited I dropped the FCP matte filter for 2.35
    For those of you out there I know I did not use a anamorphic lens and I know I did not shoot it on 16:9 format. But is there a way to crop out the Black bars?
    Again like the previous post I would like to remove the black bars and have my QUICKTIME MOV. play like the ones on APPLE's Trailer site: http://www.apple.com/trailers/
    Can anyone out there explain how to do this? Other then just drop this and change the size...WHAT DOES THAT MEAN? If you can provide more step by step information that would be great!

    1. Create a New Sequence in FCP (Command-N)
    2. Bring up your Sequence Settings (Comman-Zero) and alter them...
    2a. so that your Frame Size is (approx) 720x306
    2b. set Aspect Ratio to Custom.
    3. Drop in your widescreen-filtered footage (they'll be shrunk, so...)
    4. Select your clip (or all clips) (Command-A)
    5. Remove Attributes (Option-Command-V) and select 'Basic Motion' then click OK.
    6. Your movie should now (pretty much) fill the 2.35:1 sequence.
    You'll probably need to tweak the frame size slightly (It's been a while since I've done this so my number(s) might be off).
    Also, when you (ultimately) Export Via QuickTime Conversion (for the web?), be sure to take into account that the web uses Square Pixels - so resize your QT movie (in the Save Dialog, under Options) to be 640x306. (Again, my exact numbers might be off)
    Good luck.

  • How to remove spaces at selection screen coming from logical database

    Hi Experties,
    When we hide some selection from the logical database.  The spaces still occupied and this make our selection screen looks awkward.
    How to remove the spaces left by hidden selection ?
    Regards
    Nislina

    Hi,
    I came across your un-answered question while searching for a solution on the similer problem. Though I couldn't fine a solution on SDN, but figured out one myself. Thought its a good idea to share it.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group4 = '003'.
          screen-active = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Here screen-group4 contains the sequence number of the select-options field starting from 000 onwards.
    You may like to assign points and close the question.
    Kind Regards,
    Khalid Mustafa

Maybe you are looking for

  • I am looking for a app for my iMac pro

    I have a car,,i would like to take pic of car,then be able to change the color to see what it will look like.2 tone,3tone color changes,,any ideals????? Im at a lost with this,,,,,ive looked in the app store till im blue in the face,,can some body he

  • Error synchronizing Notes 8.x calendar with N70

    When I synchronize Notes 8.0.1 calendar and N70 with PC Suite I get error message as follows: "xyz.NSF The ID file is locked by another process. Try again later." Windows XP Pro Service Pack 2 Version of PC Suite installed 7.0.9.2 Connection method -

  • Standard CSR performance report

    Does Oracle Service comes with any standard reports to measure performance of CSRs and ticket related report (such as aging, priority...)?

  • Test environment on Linux BOXI R3.1

    Hi all, i m planing to create a test environment for BOXIR 3.1 on VMWARE (Leptop). i will be thankfull for any best practice tips for this installation .. Thanks

  • SetMedia problem with MediaPlayback - external MP3s

    I'm using the MediaPlayback component to play an external MP3 file, and it's working fine, EXCEPT that when it first loads it plays the first part of the clip for a split second, then stops and re-plays it -- regardless of the autoPlay settings that