Search results for query: *

  1. C

    Passing data from UserControls to WinForm

    Can you show me an example of a code with thesame multiple static usercontrol instances you compiled yourself? Thanks and God bless
  2. C

    Passing data from UserControls to WinForm

    namespace abc { public partial class lamp : Form { public lamp () { InitializeComponent(); } Public string Data { get { return label1.Text; } Set { label1.Text = value; } } } }
  3. C

    Passing data from UserControls to WinForm

    namespace abc { public partial class usercontrol1 : Usercontrol { private static usercontrol1 _instance; public static usercontrol1 { get { If (_instance == null) _instance = new usercontrol1 (); return _instance; } } public delegate void...
  4. C

    Passing data from UserControls to WinForm

    This didn't answer my question. Let me This didn't answer my question. Let me be more clear to you. I have a static usercontrol form on c# window form which includes textbox's and a send button. I tried passing data from this static usercontrol to form3 on c# window form but it fails to...
  5. C

    Passing data from UserControls to WinForm

    I need answers urgently
  6. C

    Passing data from UserControls to WinForm

    I need answer urgently
  7. C

    Passing data from UserControls to WinForm

    using system.Windows.Foerms; namespace Form { public partial class dep1 : Usercontrol public static dep1 instance; public dep1() { InitializeComponent(); instance = this; } private void btn_Click(object sender, EventArgs e) { Form2.instance.name.Text = textbox1.Text; } }...
  8. C

    Passing data from UserControls to WinForm

    I need your assistance on how to pass values from usercontrol textbox to display on label, on form2 c# window form. Thanks
Back
Top Bottom