Click here to Skip to main content
15,921,716 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
can you say how to get the values of radiobutton and checkbox values from one form to another form??i need the codings of tat question
Posted

This is the popular question about form collaboration. The most robust solution is implementation of an appropriate interface in form class and passing the interface reference instead of reference to a "whole instance" of a Form. Please see my past solution for more detail: How to copy all the items between listboxes in two forms[^].

Please also see other solutions in this discussion. If the application is simple enough, the solution could be as simple as declaring of some internal property in one form and passing a reference to the instance of one form to the instance of another form. For more complex projects, such violation of strictly encapsulated style and loose coupling could add up the the accidental complexity of the code and invite mistakes, so the well-encapsulated solution would be preferable.

Please see also:
http://en.wikipedia.org/wiki/Accidental_complexity[^],
http://en.wikipedia.org/wiki/Loose_coupling[^].

—SA
 
Share this answer
 
you can use following methods as per choice:
1. Passing parameters in Constructor
2. Create a function in first form and an instance in Second Form
 
Share this answer
 
Hi dear,
MasterFrm is the main form. Here declare one global function [CallingFunction] And
ChieldFrm is the sub form. Here calling the global function use.



C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace FusionCharts
{
    public partial class MasterFrm : Form
    {
        public MasterFrm()
        {
            InitializeComponent();
        }

        public bool CallingFunction()
        {
            bool C;
            C = checkBox1.Checked;
            return C;
        }
    }
}


---------------------------------------------------------

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace FusionCharts
{
    public partial class ChiledFrm : Form
    {
        public ChiledFrm()
        {
            InitializeComponent();
        }

        private void ChiledFrm_Load(object sender, EventArgs e)
        {         
            MasterFrm Master = new MasterFrm();
            checkBox1.Checked = Master.CallingFunction();
        }
    }
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900