Walkthrough: Collecting Data Using a Windows Form
This walkthrough demonstrates how to open a Windows Form from a document-level customization for Microsoft Office Excel, collect information from the user, and write that information into a worksheet cell.
Although this walkthrough uses a document-level project for Excel specifically, the concepts demonstrated by the walkthrough are applicable to other Visual Studio Tools for Office projects.
Prerequisites
You need the following components to complete this walkthrough:
Visual Studio Tools for Office (an optional component of Visual Studio 2008 Professional and Visual Studio Team System).
Microsoft Office Excel 2003 or Microsoft Office Excel 2007.
Visual Studio Tools for Office is installed by default with the listed versions of Visual Studio. To check whether it is installed, see Installing Visual Studio Tools for Office.
Note
Your computer might show different names or locations for some of the Visual Studio user interface elements in the following instructions. The Visual Studio edition that you have and the settings that you use determine these elements. For more information, see Visual Studio Settings.
Creating a New Project
The first step is to create an Excel Workbook project.
To create a new project
Create an Excel Workbook project with the name WinFormInput, and select Create a new document in the wizard. For more information, see How to: Create Visual Studio Tools for Office Projects.
Visual Studio opens the new Excel workbook in the designer and adds the WinFormInput project to Solution Explorer.
Adding a NamedRange Control to the Worksheet
To add a named range to Sheet1
Select cell A1 on Sheet1.
In the Name box, type formInput.
The Name box is located to the left of the formula bar, just above column A of the worksheet.
Press ENTER.
A NamedRange control is added to cell A1. There is no visible indication on the worksheet, but formInput appears in the Name box (just above the worksheet on the left side) and in the Properties window when cell A1 is selected.
Adding a Windows Form to the Project
Create a Windows Form to prompt the user for information.
To add a Windows Form
Select the project WinFormInput in Solution Explorer.
On the Project menu, click Add Windows Form.
Name the form GetInputString.vb or GetInputString.cs, and then click Add.
The new form opens in the designer.
Select the button, find the property Text in the Properties window, and change the text to OK.
Next, add code to ThisWorkbook.vb or ThisWorkbook.cs to collect the user's information.
Displaying the Windows Form and Collecting Information
Create an instance of the GetInputString Windows Form and display it, and then write the user's information into a cell in the worksheet.
To display the form and collect information
Right-click ThisWorkbook.vb or ThisWorkbook.cs in Solution Explorer, and then click View Code.
In the Open event handler of ThisWorkbook, add the following code to declare a variable for the form GetInputString and then show the form.
Note
In C#, you must add an event handler as shown in the Startup event below. For information about creating event handlers, see How to: Create Event Handlers in Visual Studio Tools for Office.
Private Sub ThisWorkbook_Open() Handles Me.Open Dim inputForm As New GetInputString() inputForm.Show() End Sub
private void ThisWorkbook_Startup(object sender, System.EventArgs e) { this.Open += new Microsoft.Office.Interop.Excel.WorkbookEvents_OpenEventHandler(ThisWorkbook_Open); } private void ThisWorkbook_Open() { GetInputString inputForm = new GetInputString(); inputForm.Show(); }
Create a method called WriteStringToCell that writes text to a named range. This method is called from the form, and the user's input is passed to the NamedRange control, formInput, on cell A1.
Public Sub WriteStringToCell(ByVal formData As String) Globals.Sheet1.formInput.Value2 = formData End Sub
public void WriteStringToCell(string formData) { Globals.Sheet1.formInput.Value2 = formData; }
Next, add code to the form to handle the button's click event.
Sending Information to the Worksheet
To send information to the worksheet
Right-click GetInputString in Solution Explorer, and then click View Designer.
Double-click the button to open the code file with the button's Click event handler added.
Add code to the event handler to take the input from the text box, send it to the function WriteStringToCell, and then close the form.
Globals.ThisWorkbook.WriteStringToCell(Me.TextBox1.Text) Me.Dispose()
Globals.ThisWorkbook.WriteStringToCell(this.textBox1.Text); this.Dispose();
Testing
You can now run the project. The Windows Form appears, and your input appears in the worksheet.
To test your workbook
Press F5 to run your project.
Confirm that the Windows Form appears.
Type Hello World in the text box, and then click OK.
Confirm that Hello World appears in cell A1 of the worksheet.
Next Steps
This walkthrough shows the basics of showing a Windows Form and passing data to a worksheet. Other tasks you may want to perform include:
Use Windows Forms controls on an Excel workbook or a Word document. For more information, see Windows Forms Controls on Office Documents Overview.
Modify the user interface of a Microsoft Office application from a document-level customization or an application-level add-in. For more information, see Office UI Customization.
See Also
Tasks
How to: Interact with Windows Forms
Concepts
Office Solutions Programming Model
Programming Application-Level Add-Ins