-
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.
-
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