Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. problem in setting datasource of a usercontrol

problem in setting datasource of a usercontrol

Scheduled Pinned Locked Moved C#
csharphelp
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    saneng
    wrote on last edited by
    #1

    hi i m newbie to C#.net , i have to create a usercontrol with a gridview in it i have to set its datasource to the dataset used in its parent form to do this i am setting properties at the usercontrol like this : [System.ComponentModel.ComplexBindingProperties("DataSource","DataMember")] public partial class UserControl1 : UserControl { public object DataSource { get { return dgvSearch.DataSource; } set { dgvSearch.DataSource = value; } } public string DataMember { get{ return dgvSearch.DataMember ;} set { dgvSearch.DataMember = value; } } public UserControl1() { InitializeComponent() ; } and from parent form i am setting the datasources for my parent control BindingSource datasource; DataSet data=new C21_SecurityDataSet() ; DataTable dt = data.Tables.Add(); userControl11.DataSource = datasource = new BindingSource (data, "users"); usercontrol11.dataMember="users" but no data displayed at my user control plz help me out thanks

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups