---
title: "How can make shortcut keys in my windows form?"  
description: "How can make shortcut keys in my windows form?"  
author: "Anonymous User"  
published: 2013-10-07  
updated: 2013-10-08  
canonical: https://www.mindstick.com/forum/1645/how-can-make-shortcut-keys-in-my-windows-form  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# How can make shortcut keys in my windows form?

I need to make a shortcut key for open a new [form](https://www.mindstick.com/forum/6/multi-form-mfc-application) in my [application](https://www.mindstick.com/articles/12824/calculator-application-in-android) how I can do that task.

## Replies

### Reply by Manoj Bhatt

1. Create a demo project with 2 windows form

2. Then you can add the below code in your form1_keyDown event

```
if
(e.Control && e.KeyCode == Keys.N){     Form2
f2 = new Form2();     f2.Show();}
```

e.Control : This mean hold the control key

e.KeyCode == Keys.N: This mean press the N key form your keyboard


---

Original Source: https://www.mindstick.com/forum/1645/how-can-make-shortcut-keys-in-my-windows-form

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
