Results 1 to 5 of 5

Thread: MSFlexGrid

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2000
    Posts
    77

    Unhappy

    i use in my program MSFlexGrid but the text inside the flexgrid is width then cell so how could i make cell exact width as text inside. Help me

  2. #2
    Hyperactive Member
    Join Date
    Nov 2000
    Location
    Mexico City
    Posts
    306

    Thumbs down

    You can do that with the vsflexgrid (by videosoft).

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Oct 2000
    Posts
    77

    Unhappy vsflexgrid

    what is vsflexgrid any how could i get that

  4. #4
    Hyperactive Member
    Join Date
    Nov 2000
    Location
    Mexico City
    Posts
    306

    Smile

    One bad notice: it isn´t free.
    You can download a trial version. The company is VideoSoft.
    The licenced version costs about $300. It is my favourite grid.
    If things were easy, users might be programmers.

  5. #5
    Lively Member
    Join Date
    Aug 2000
    Location
    Texas
    Posts
    88
    You may do it in this way:
    Code:
    Dim MaxWidth As Integer
    
    If Len(Your_Text)  > MaxWidth Then
         MaxWidth = Len(Your_Text)
    End If
    
    MSFlexGrid.ColWidth(Your_Column) = MaxWidth
    MSFlexGrid.TextMatrix(Your_Row,Your_Col) = Your_Text
    This is just an idea. You may have to modify it for working..

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