Outer table frame without grid lines

Howdy,
I have a form that is printing a variable size table that can span more than one page.  I am attempting to create an outer frame around the table without grid lines in the middle.
There is a framed pattern, the one in the upper left hand corner of the patterns, that appears to fit my scenario.  However, when I use this pattern, the outer frame appears, but there are also grid lines.
Is it possible to create an outerfram around a table without grid lines between the cells?

Hello Ernest,
Goto Table Painter Settings, there you have tabs like Grid, Main Grid and so on...
By default, it would have selected the Display check box in Grid tab. Remove that check and goto Main Grid tab, and check the Display check box.
I guess your problem is solved.
Regards,
Prem

Similar Messages

  • Remove table border and grid lines

    all,
    i have and adf faces table on my page and I would like to get rid of the table border and grid lines. i tried using the inline style properties of the table and columns in the table (border-style:none;), and the GridVisible = false property of the columns, but the lines still appear.
    any suggestions?
    paul

    Hi,
    We can design frames in so many ways so check all those one by one
    Check the output options tab in all your window, table & text nodes.there check whether Box & Shading is check or not if it is check remove it.
    sometimes for vertical lines we create seperate windows with low width like 0.01 cm & in its output options check 'box and shading' frame & this window postions are as you required & you can adjust the line in the preview option of box & shading in the output options.
    & in the table node table tab check the select pattren here patterns are again two types with frame & without frame.
    Let me know your exact requirment & your trails if its not working.
    Thanks,
    Phani.
    Edited by: phani kumar on Aug 26, 2008 1:56 PM

  • Showing Grid without column headers and Grid lines

    Hi all
    does anyone knows how can set a grid object to display without grid lines and without column headers?
    appreciate the help
    Yoav

    Hi Yechiel,
    When you work with the grid you just have to drag it into your srf and bind it with some table by specifying the table name in its properties.
    When the form launches the columns of the grid  will be created automatically as per the number of columns in the table.The caption of the column in the grid will be the same as that of the name of the column in the table.The only condition for this is that the table should contain some records, if the table is empty no grid lines and the column header will be displayed .
    I hope this meet your requirements.
    Below I am sending you the code segments with the help of which you can control the grid progamatically...
    //Declaring the grid object
    Grid oGrid;
    //Initializing the grid object
    oGrid=(SAPbouiCOM.Grid)oForm.Items.Item("MBS_Grid").Specific;
    //Adding a new data table to the form
    oSboApplication.Forms.ActiveForm.DataSources.DataTables.Add("MBS_DataTable");
    //Assigning the data table to the grid
    oGrid.DataTable = oSboApplication.Forms.ActiveForm.DataSources.DataTables.Item( "MBS_DataTable" );
    // This statement will clear the grid
    oGrid.DataTable.Rows.Clear();
    // In this way you can set the column properties
    oGrid.Columns.Item(0).Editable=false;
    oGrid.Columns.Item(1).Editable=false;
    oGrid.Columns.Item(2).Editable=false;
    oGrid.Columns.Item(3).Editable=false;
    oGrid.Columns.Item(4).Editable=false;
    oGrid.Columns.Item(5).Editable=false;
    // In this way you can set the column width
    oGrid.Columns.Item( 0 ).Width = 50;
    oGrid.Columns.Item( 1 ).Width = 60;
    oGrid.Columns.Item( 2 ).Width = 130;
    //This is the way you can set a user defined caption on the column header.
    query="select U_CTX_MOVCODE as 'Movie Code',U_CTX_MOVNAME as 'Movie Name',U_CTX_SHELF as 'Shelf Number',U_CTX_SPACE as 'Space Number',U_CTX_CARDCODE as 'Customer Code',U_CTX_RENTED as 'Rent Status' from [@CTX_VSTORE] order by Code";
    Regards,
    Prashant

  • Moving data into internal table without header line

    Hello experts.
    i have two internal tables . itab1 without headerline and itab2 with headerline. itab1 has 10 fields and itab2 has 2 fields.
    BEGIN OF itab,
            lifnr LIKE lfa1-lifnr,
            ktokk LIKE lfa1-ktokk,
            name1 LIKE lfa1-name1,
            sortl LIKE lfa1-sortl,
            pstlz LIKE lfa1-pstlz,
            ort01 LIKE lfa1-ort01,
            land1 LIKE lfa1-land1,
           j_1ipanno LIKE j_1imovend,
    end of itab.
    DATA: itab1 TYPE STANDARD TABLE OF itab.
    data: begin of itab2 occurs 0,                             
          lifnr like j_1imovend-lifnr,
          j_1ipanno like j_1imovend-j_1ipanno,
      end of itab2.
    now i want to move the data from itab2-j_1ipanno into itab1-j_1ipanno. so pls tell me how to do that. lifnr in both the tables are the same.
    thanks for all the replies.

    Hi Shiva,
    In with out header line,
    You declare header line & body separately like
    data: IT_MARA type standard table of MARA,
    WA_MARA like line of IT_MARA.
    Advantages:
    1. Clear differentiation of header line over body
    2. It is must in the ABAP Objects to have separate header line & body
    3. Use ful in Nested Internal tables
    Disadvantages:
    1. Long syntax
    for example: Loop at IT_MARA into WA_MARA.
    In with header line
    Data ITAB like MARA occurs 0 with header line.
    Advantages:
    1. Simple to use & declare over without header line.
    Also,
    With Header line:
    codedata : itab like <dbtable> occurs 0 with header line.
    Data: begin of itab occurs 0,
    f1 type f1,
    f2 type f2,
    end of itab.[/code]
    Without Header line.
    codeTypes: begin of ty_tab,
    f1 type f1,
    f2 type f2,
    end of ty_tab.
    Data: itab type table of ty_tab, " Internal Table
    wa type ty_tab. " Work Area[/code]
    at any point of time use internal table without header line,it will be good performance as well OO ABAP will allow only internal table without header line.
    Just use one simple example :
    create one simple program with header line,use get run time field.
    create one simple program without header line,use get run time field.
    see the results ,here time will be micro seconds,so take 1000 records to internal table and do calculate the time.
    While adding or retrieving records to / from internal table we have to keep the record temporarily.
    The area where this record is kept is called as work area for the internal table. The area must have the same structure as that of internal table. An internal table consists of a body and an optional header line.
    Header line is a implicit work area for the internal table. It depends on how the internal table is declared that the itab will have the header line or not.
    e.g.
    data: begin of itab occurs 10,
    ab type c,
    cd type i,
    end of itab. " this table will have the header line.
    data: wa_itab like itab. " explicit work area for itab
    data: itab1 like itab occurs 10. " table is without header line.
    The header line is a field string with the same structure as a row of the body, but it can only hold a single row.
    It is a buffer used to hold each record before it is added or each record as it is retrieved from the internal table. It is the default work area for the internal table.
    kindly reward if found helpful.
    cheers,
    Hema.

  • How can I eliminate grid lines of selected cells when printing, in iOS numbers

    How can I eliminate grid lines of selected cells when printing, using iOS numbers

    Hi Cmlgfx,
    Thanks for visiting Apple Support Communities.
    You can style a table to remove grid lines and only show an "outline" around the table itself.
    See this article for help with table styles:
    Numbers for iOS (iPad): Place and style tables
    http://support.apple.com/kb/PH3365
    To show or hide the table name, table border, and grid lines, alternate row colors, or adjust fonts, tap Table Options at the bottom of the Table window (you may need to scroll up in the window to see it), and then set your preferences using the options in the Table Options window. (When you’re done, tap at the top of the window to see other options.)
    All the best,
    Jeremy

  • How to print a report without row numbers or grid lines?

    Is there a way to print a Discoverer report without row numbers or grid lines?
    Thank you.
    Blake

    Hi Blake
    You're not doing anything wrong.
    The settings made when you use Tools | Options | Sheet are global settings that are only applied to new workbooks and worksheets going forwards. These have no impact on existing worksheets or even the one you currently have open. This is because Discoverer does not know whether your original worksheets were setup in a certain way deliberately as opposed to inheriting the global settings as they were at that time. What this also means, reading between the lines, is that these settings must then be stored within the worksheet itself, and this is exactly what happens.
    Thus, to edit an existing worksheet's settings you need to open the worksheet, right-click in the sheet and from the popup select either Format Table or Format Crosstab depending upon the type of worksheet you are working with. After making any necessary changes you will need to save or re-save the workbook in order for those settings to be remembered for the next time.
    Best wishes
    Michael

  • How Can I Print without the shadowed grid lines showing up?

    Does anyone know how to print out a page where your bordered cells show up and the background shadowed grid or cells don't print?

    You can take control of your grids and outlines by using the Tables Inspector > Cell Borders.
    What you described sounds like grid lines set to "Thin" and the color set to a shade of gray. You may also choose None or a number of other patterns, colors and thicknesses. Do some experimenting. The range of cells you have selected will be affected by your choices.
    Regards,
    Jerry

  • I have a Mac mini Snow Leopard. In Numbers the grid lines are so faint that they are barely visible. Please could someone help me sort out this problem.

    I have a Mac mini Snow Leopard. In Numbers the grid lines are so faint that they are barely visible. Pleease could someone help me sort out this problem?

    The User Manual has this:
    Formatting Table Cell Borders
    You can change the line thickness and color of table cell borders. Or you can hide the border of any cell.
    To format table cell borders:
    1 Select the cell border segments you want to format.
    2 Use the controls in the format bar or in the Table inspector.
    Click to choose a stroke color.
    Click to choose a stroke style.
    Click to choose a line thickness.
    Stroke pop-up menu:  Lets you choose a stroke style. Choose None to hide borders.
    Line thickness:  Controls the thickness of the stroke.
    Color well:  Lets you choose a stroke color.
    When you click the color well in the format bar, a color matrix appears. Select a color by clicking it in the matrix, or click Show Colors to open the Colors window for additional color options.
    When you click the color well in the Table inspector, the Colors window opens.
    User Guide: http://manuals.info.apple.com/en_US/Numbers09_UserGuide.pdf

  • How can I make the GRID lines more bold within a table in the new Pages?  (Not the outline of a table)

    I can't find where to darken GRID lines on a table in the new Pages.  I can make the outline more bold, but not the grid lines within the table.  Is there a way to do this?  The default grid lines are far too faint.

    Yeah, the Help is missing a little.
    If you select the block of cells that you want to change, then in the Format inspector:
    Select the Cell tab
    Expand the Border section
    Set a line type
    Set a line width
    Choose a line color
    Choose one of the nine options for which borders get the new settings

  • Hi Sir! I have some questions regarding word report generation please.1.How can i add border to a word page?.2.How can i add grid lines to a table generated in word report?.3.How can i add border to a table of word report?.Thanks Imran Pakistan

    Hi !
    Sir I have some questions regarding word report generation using(C language in labwindows) Please.
    1.How can i add border to a word page?.
    2.How can i add border and grid lines to a table generated in word report(Not the " cvi table control" inserted from gui,i am asking about the table generated in word report)?
    3.How can i fill a cell of word report table withe the data type other than "character"?.
    And sir one question about use of timer in cvi labwindows please.
    Sir i'm trying to set minimum delay interval of timer control to 1millisecond(0.001s),as i set ,timer don't cares of the interval that is set by me it responds only to the default minimum time interval which is i think 10milliseconds(i'am using windows xp service pack3 version 2002).
    Regards
    Imran
    Pakistan
    Solved!
    Go to Solution.

    Hello sir!
    Sir i'm using daq6251.But Sir before implimenting it to my final application now i'm just trying to achieve 1millisecond time interval for timer in a vary simple programe i mean at this time no hardware (daq device) is  involved i,m just trying to achieve minimum time interval of 1millisecond.
    Sir i read form "help" of labwindows how this time interval can be set,i'm trying for,as described in help notes but i could'nt.I'm attaching a screen shot sir for you it may helpful for you to explain me.
    And sir also waiting for your kind reply regarding word report generation.
    Thanks.
    Imran.
    Attachments:
    screen_shot_rigistry.docx ‏65 KB

  • Spry table, vertical grid lines

    How do you format a table so the vertical grid lines show up.
    I have the roll over effect working for rows in the table, but the
    tables are large enough that is can be difficult to follow columns
    straight down. I would like black vertical line to appear between
    columns.
    thanks.

    If I understand you right, you wish to have spreadsheet type
    columns. In that case this is not a Spry question but an HTML and
    CSS question.
    In CSS the format would look something like:
    #mytable th {
    text-align: left;
    padding: 3px;
    font-weight: bold;
    border:1px solid #AAA;
    background-color: #EFEFEF;
    In the above example I am formatting a heading cell.
    In IE, if the cell is empty there will be no border, thus it
    is best to populate the cell with a space as in '   '.
    I hope this helps.

  • 1/3 grid lines in cropping frame

    After playing around with the Pirate ship, I have gotten the 1/3 grid lines on all the time when a crop grid is showing. They used to show up only when I was adjusting the crop. How do I make them go back to the way it was?

    While in the develop module, go to "View", "Crop Grid Overlay" and check "Auto Overlay" and "None"

  • Are dashed grid lines possible without bitmap background?

    Hi,
    I am trying to get dashed grid lines onto my graph.  Having searched around, I suspect that I can only achieve this by setting the background as a bitmap that has the dashed lines on.  Is this correct?
    I think that this was addressed in the .NET version, which now has this functionality, but not in the (legacy) VC++ version.  I just wanted to confirm that this was the case.
    Solved!
    Go to Solution.

    Hi Richard,
    After installing the legacy support version to one of our machines I can confirm that the feature you're looking for does not seem not available for VC++. Unfortunately as this is legacy support it is unlikely the feature will be added in the future.
    I hope this answers your question
    Kind regards,
    Matt H
    Applications Engineer
    National Instruments UK

  • LAF Package Table Frame Issues

    I have successfully implemented Francois' LAF package (Thanks very much, Fancois!) and
    am adapting the functionality to make our forms look more web-like, but I am having a few
    problems.
    First, I am having a problem where the table frames (header and body frames) are either
    vertically off or are vertically stretched. In the case where they are vertically off, I have a
    single table block with 14 rows and a vertical scrollbar. The frame is about an inch
    higher than it should be to line up with the table. In the case where the frames are
    stretched, I have 2 different database blocks on the same canvas with a vertical scrollbar
    controlling both and a horizontal scrollbar controlling one.
    Second, and this seems to be pretty basic (I should probably know how to do this after
    almost 10 years of Forms work). We use text items with no bevel to display the version
    of the software, user ID, database host, and login time on each canvas. These items
    have a gray background and they stand out like sore thumbs on the fancy new
    gradient-enriched canvas. I'd love to find a way where I could just show the text without
    having a background color so it would behave like boilerplate text.
    Any help is appreciated. Thanks!

    Francois,
    We have the same issues. I pointed them out in mt previous post related to Display Items. They don't have an implementation class ... That will be an issue.
    The only way to fix it is to turn them into TextItem.
    We also have an issue with Gradient Color ---> experience some flickering effect.
    First we see the default color and then the Gradient Color. This is only on when loading the form, it's fine when we switch the canvases already inside the form.
    The third issue is with Tabs. When the Gradient Color applied we see some default coloring around tabs.
    I feel that in conflict with the default Oracle's code at init() event. I do agree with you that this is the Open Source Project. But Oracle's Code is not an open source.
    Please advise.
    Thanks,
    Michael

  • JTable Grid Lines

    How can I make the Grid Lines (Vertical and Horizontal) of the JTable extend to the bottom even without data? Any suggestion is highly appreciated. Thank you.

    Well, you can add some custom painting yourself. Here is a simple example that might get you started:
    import java.awt.*;
    import javax.swing.*;
    public class TableLines extends JFrame
         JTable table;
         public TableLines()
              table = new JTable(10, 5)
                   public void paintComponent(Graphics g)
                        super.paintComponent(g);
                        g.setColor( Color.RED );
                        int y = getRowHeight(0) - 1;
                        g.drawLine(0, y, getSize().width, y);
              table.setPreferredScrollableViewportSize(table.getPreferredSize());
              JScrollPane scrollPane = new JScrollPane( table );
              getContentPane().add( scrollPane );
         public static void main(String[] args)
              TableLines frame = new TableLines();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

Maybe you are looking for

  • Colored Cells in Excel sheet

    hi we have a excel sheet with values which we created based on a tutorial spreadsheet. We tried the exactly the same steps provided in the PDF but it did not work. however when we used the original file we got the same output that was shown in the PD

  • Reg:pojo datacontrol not functioning wehn exposed as proxy for webservice.

    Hi , I have a class which sets the request and header part and for this data control is created and hence works fine when worked by dragging to page. Sample : Class1{ function setheader (){  ....  } function setrequest() { .... } function invokeservi

  • Profit Center on Sales Order

    Hello Experts, We have a profit center substitution rule already that says if sales org = 'ABC' then substitute the profit center on sales order with '123' Now we have a new requirement and according to that we should use a different profit center if

  • Mngd Switch as Unmngd Switch

    Trying to find out if a managed switch, such as the SLM2048T can be configured as an unmanaged switch.  Our schools have laptop carts and we want to put switches in the carts so that the laptops will be plugged into the network when not in use and so

  • HT4972 How can I update my iPad ...

    I tried to go to settings then general, then software update...but in my general I don't have a button that says software update ,..so then how do I update my iPad??