I want to use an ActiveX.
In VB6, I use these ways to set properties:
1. oGrid1.Cols = 27
2. oGrid1.Font.Name = "Arial"
3. oGrid1.Column(2).Width = 20
4. oGrid1.Cell(0,1).Text = "Item Code"
In FWH, I know oGrid1:SetProp( "Cols", 27) to set property, but do not know how to assign others (2 to 4).
Thanks.