Opens a DataView.
[Visual Basic] Protected Sub Open() [C#] protected void Open(); [C++] protected: void Open(); [JScript] protected function Open();
The method allows you to manually open the DataView in derived classes. Use the corresponding Close method to close the DataView.
The following example checks the IsOpen property before invoking the Open method.
[Visual Basic]
Private Sub OpenDataView(ByRef dv As DataView) If dv.IsOpen Then Exit Sub dv.Open End Sub