Bound
This column property determines whether the control in a column uses the column's ControlSource or can have its own. Based on our tests, this is one property you shouldn't change, even though you can.
Usage |
colColumn.Bound = lBoundToColumn lBoundToColumn = colColumn.Bound |
Example |
* Normally, you'll set this up in the Property Sheet. You might * use the following settings in a grid of Employee. The examples * here are meant to be a guide to setting up the grid in the * Form Designer, not commands to type in. Better yet, just drag * the whole table or the fields you want from the DE. Column1.Bound = .T. Column1.ControlSource = "Employee.Last_Name" Column2.Bound = .T. Column2.ControlSource = "Employee.First_Name" |
See Also |