The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
Adding Picklists to DataGrids
Posted: 26 Sep 08 2:15 PM
|
I am trying to add a Picklist to a datagrid. I have
With grdDatagrid.Columns Set col = .Add(15) col.FieldName = "Column" col.Caption = "Column" col.Width = 100 ...
But what do you need to do to attach the picklist to the column.
i have tried .Picklist = "Pick" and .Picklist.Name = "Pick"
I have not had any luck with either |
|
|
|
Re: Adding Picklists to DataGrids
Posted: 30 Sep 08 12:23 PM
|
Object.PickListName = value
Right out of the actual datagrid object itself. Not documented anywhere AFAIK.
|
|
|
| |
|