I do not know how to get certain cells to align left. No matter which ColAlignment I specify, the grid always shows me the text field centered.
Also, I tried having the alignment come before the entering the text and after.
What am I doing wrong? Please help me.
The code is as follows:
Platform: Windows 2000
Language: VB6
Source Code: See snippet above
Input Used: none
Error Codes: none
Also, I tried having the alignment come before the entering the text and after.
What am I doing wrong? Please help me.
The code is as follows:
Code:
grd1.Rows = iRow + 1 grd1.ColAlignment(iCol) = flexAlignLeftTop grd1.TextMatrix(iRow, iCol) = "Total Licenses" grd1.ColWidth(iCol) = grd1.Width * 0.4
Language: VB6
Source Code: See snippet above
Input Used: none
Error Codes: none
Comment