---
title: "How to pass value from one Windows Form to another Windows Form in C#"  
description: "How to pass value from one Windows Form to another Windows Form in C#"  
author: "Anonymous User"  
published: 2010-12-21  
updated: 2011-01-21  
canonical: https://www.mindstick.com/forum/133/how-to-pass-value-from-one-windows-form-to-another-windows-form-in-c-sharp  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# How to pass value from one Windows Form to another Windows Form in C#

Hello Everyone, here I have a [problem](https://yourviews.mindstick.com/view/81399/tackling-the-problem-of-unemployment-during-corona-pandemic) in passing [value from one](https://www.mindstick.com/forum/1/problem-in-passing-value-from-one-page-to-other-page-in-asp-dot-net) [windows](https://www.mindstick.com/articles/311752/how-to-install-and-use-the-google-wifi-software-on-a-windows-or-mac-computer) [form](https://www.mindstick.com/forum/6/multi-form-mfc-application) to another windows form.\
If possible provide me any [helpful](https://yourviews.mindstick.com/view/81752/oximeter-for-covid-patients-is-helpful-tool) [link](https://www.mindstick.com/articles/23633/link-builder) or code.\
Thanks ![How to pass value from one Windows Form to another Windows Form in C#](https://www.mindstick.com/app_images/htmleditor.icons/eusa_clap.gif)\

## Replies

### Reply by Anonymous User

make a parametrize constructor in second form and pass values to that constructor as following example shows...\
\

```
class Form1 : Form{        public void btn_click(object sender,EventArgs e)        {                Form2 fr=new Form2("Awadhendra",21,"Allahabad");                fr.Show();        }}class Form2 : Form{        private string name,city;        private int age;        public Form2(string name,int age,string city)        {                InitilizeComponent();                this.name=name;                this.age=age;                this.city=city;        }}
```

### Reply by Uttam Misra

Check this link..\
http://www.mindstick.com/Articles/a79d91e1-fed0-4adf-b6d0-604506154cad/?HOW%20TO%20PASS%20VALUE%20FROM%20ONE%20FORM%20TO%20ANOTHER%20FORM\
\
Cheers!! ![How to pass value from one Windows Form to another Windows Form in C#](https://www.mindstick.com/app_images/htmleditor.icons/msp_thumbup.gif)\


---

Original Source: https://www.mindstick.com/forum/133/how-to-pass-value-from-one-windows-form-to-another-windows-form-in-c-sharp

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
