Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I sometimes use a double click arrangement to increase the row height for the selected record... you double click on it and the row height goes to 200, double click again and it reduces to 20 or so.
Add a OLE Container control to your form, and when you see the Insert Object dialogue, select "Microsoft Flexgrid Control version 6.0 (SP2)"
Local lngWidth, i, x
lngWidth = 2200 && Twips
Select moncurseur
Count To x
With This
.Cols = 2 && Nombre de colonnes incluant la première.
.Rows = 0
.AddItem(Chr(9)+"Nom du client") && Entetes
.Rows = x+1 && Nombre de rangées
.FixedRows = 1
.WordWrap = .T.
.RowHeight(0) = .RowHeight(0)*2
.RowHeight(1) = .RowHeight(1)
.RowHeight(2) = .RowHeight(2)*4.5
.RowHeight(3) = .RowHeight(3)*2
.RowHeight(4) = .RowHeight(4)*.8
.RowHeight(5) = .RowHeight(5)*3.5
.ColWidth(0) = 0 && Ajuster la largeur des colonnes
.ColWidth(1) = lngWidth*1.5
Select moncurseur
i = 1
Scan
.TextMatrix(i, 1) = moncurseur.Name
i = i + 1
If i > x
Exit
Endif
ENDSCAN
Endwith
Where in the properties is the parameter to adjust the height for each row?
Is there a way to adjust row height for text of memo field?