Results 1 to 2 of 2

Thread: Merge columns in a row (flexgrid)

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Apr 2004
    Location
    Philadelphia, PA
    Posts
    120

    Merge columns in a row (flexgrid)

    How would i merge the columns in a specified row in my flexgrid?

    Aparently this doesn't work...
    VB Code:
    1. 'merge
    2.                 .Row = COUNT
    3.                 .MergeCells = MSFlexGridLib.MergeCellsSettings.flexMergeRestrictColumns
    4.                 .set_MergeCol(0, True)
    5.                 .set_MergeCol(1, True)
    6.                 .set_MergeCol(2, True)

    Any ideas?

    Thanks in advance!

  2. #2
    Junior Member
    Join Date
    Aug 2007
    Posts
    16

    Re: Merge columns in a row (flexgrid)

    With MSFlexGrid1
    .MergeCol(0) = True 'First Column in grid
    .MergeCol(1) = True 'Second Column in grid
    .MergeRow(0) = True 'First Row in Grid
    .MergeRow(1) = True 'Second Row in Grid
    End With

    This is for the Hierarchical Flexgrid...

    HtH
    Greetz,
    FreeHansje

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width