Can anyone tell me .when in let property why we put parameter
of property always value type .why not return type should
be reference type.Additional can anyone explain me datasource
class of vb6.How should i use this data source class using ADO 2.6
Means using recordset object in a datasource class.any help would
be highly appreciated.
public Property Set XSupplier(ByVal vData As Supplier) if it object type then why not reference type ?
Set m_Sup = vData
txtSupplierName.Text = m_Sup.SupName
TxtSupid.Text = m_Sup.Supid
TxtContactPerSon.Text = m_Sup.ContactPerson
TxtOfficeaddress.Text = m_Sup.OfficeAddress
TxtFaxNo.Text = m_Sup.FaxNo
End Property