Results 1 to 2 of 2

Thread: FlexGrid Help

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 1999
    Posts
    11
    Is it possible to have the rightmost part of a string show in cells by default? I have long strings in the FlexGrid control, but it always defaults to showing the leftmost part of the string.

    i.e.:

    "http://www.carbon6.com/"

    shows "http://" when I want it so show "n6.com/"

    Thanks in advance.

  2. #2
    Lively Member
    Join Date
    Jun 1999
    Location
    East Anglia, England
    Posts
    73
    Hello,
    Here is a little snippit of code which should help you a little.

    Code:
    Private Sub Form_Load()
        With MSFlexGrid1
            .Col = 1
            .Row = 1
            .Text = "Well this is a masterfull piece of code"
            .CellAlignment = flexAlignRightCenter
        End With
    End Sub

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