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


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
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

IDataSourceSupport Interface
IDataSourceSupport Members

 

 


Copyright © GrapeCity, inc. All rights reserved.