Spread Windows Forms 12.0 Product Documentation
DataMember Property (IDataSourceSupport)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > IDataSourceSupport Interface : DataMember Property
Gets or sets the data member (table name).
Syntax
'Declaration
 
Property DataMember As String
'Usage
 
Dim instance As IDataSourceSupport
Dim value As String
 
instance.DataMember = value
 
value = instance.DataMember
string DataMember {get; set;}

Property Value

String containing the name of the data member
Example
This example specifies the data member.
FarPoint.Win.Spread.Model.IDataSourceSupport dss;
string conStr = "Provider=Microsoft.JET.OLEDB.4.0;data source= " + Application.StartupPath + "\\Patients2000.mdb";
string sqlStr = "SELECT * FROM Patients";
string sqlStr1 = "SELECT * FROM Appointment";
System.Data.OleDb.OleDbConnection conn  = new System.Data.OleDb.OleDbConnection(conStr);
DataSet ds = new DataSet();
System.Data.OleDb.OleDbDataAdapter daCust = new System.Data.OleDb.OleDbDataAdapter(sqlStr, conn);
daCust.Fill(ds, "Patients");
System.Data.OleDb.OleDbDataAdapter daOrder = new System.Data.OleDb.OleDbDataAdapter(sqlStr1, conn);
daOrder.Fill(ds, "Appointment");
dss = (FarPoint.Win.Spread.Model.IDataSourceSupport)fpSpread1.ActiveSheet.Models.Data;
dss.DataSource = ds;
dss.DataMember = "Appointment";
fpSpread1.ActiveSheet.Models.Data = (FarPoint.Win.Spread.Model.ISheetDataModel)dss;
Dim dss As FarPoint.Win.Spread.Model.IDataSourceSupport
Dim conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source= " & Application.StartupPath & "\Patients2000.mdb"
Dim sqlStr As String = "SELECT * FROM Patients"
Dim sqlStr1 As String = "SELECT * FROM Appointment"
Dim conn As New System.Data.OleDb.OleDbConnection(conStr)
Dim ds As DataSet = New DataSet()
Dim daCust As New System.Data.OleDb.OleDbDataAdapter(sqlStr, conn)
daCust.Fill(ds, "Patients")
Dim daOrder As New System.Data.OleDb.OleDbDataAdapter(sqlStr1, conn)
daOrder.Fill(ds, "Appointment")
dss = FpSpread1.ActiveSheet.Models.Data
dss.DataSource = ds
dss.DataMember = "Appointment"
FpSpread1.ActiveSheet.Models.Data = dss
See Also

Reference

IDataSourceSupport Interface
IDataSourceSupport Members