|
-
Nov 9th, 2000, 01:13 PM
#1
Thread Starter
Lively Member
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
-
Nov 9th, 2000, 03:38 PM
#2
Hyperactive Member
You can do that with the vsflexgrid (by videosoft).
-
Nov 9th, 2000, 10:10 PM
#3
Thread Starter
Lively Member
vsflexgrid
what is vsflexgrid any how could i get that
-
Nov 10th, 2000, 10:26 AM
#4
Hyperactive Member
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.
-
Nov 10th, 2000, 10:52 AM
#5
Lively Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|