Hi Mike,The reason you can butt the parenthasis together is because of the way the properties work. It is the same concept as that of chaining together a bunch of dots, like this:
Me.TextBox1.Text
The first dot tells the "Me" variable that we are accessing one of its properties. The second dot tells the TextBox that we are accessing one of its properties.
Now, there are special properties called "indexers." An indexer is a "default" property that allows you to leave off the property name because it is understood. So, When you execute the GetDataSourceRowByKeyValue(Me.cboDivisions.EditValue) method, it returns an instance to a DataRowView. If you were to put a dot at the end of those parenthasis, you would be telling the DataRowView that you want to access it's properties. So, you could do this: Me.cboDivisions.Properties.GetDataSourceRowByKeyValue(Me.cboDivisions.EditValue).Row which would return the DataRow wrapped by the DataRowView. So, we combine this with the indexer property of the DataRowView item, which accepts a column name and returns the value within the field. So, since the property is the indexer (its the "Item" propery), you can leave off the .PropetyName because it's understood. So, the parenthasis are butted together because the ".Item" is understood, and therefore, left off.
Me.cboDivisions.Properties.GetDataSourceRowByKeyValue(Me.cboDivisions.EditValue)("LocationID").ToString()
Me.cboDivisions.Properties.GetDataSourceRowByKeyValue(Me.cboDivisions.EditValue).Item("LocationID").ToString()