I'm building an excel add in using c#, and i want the user to select a range. I have the inputbox set up and it's receiving the range fine when entered as a text. The problem is that excel is unresponsive when the inputbox is open, the user can't go over to excel and just select the range with the mouse, after i stop the debugging i get a message that the "File Now Available".
This is the part of the code
Excel.Range str = excelApp.InputBox("Select table range", "", _
Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, 8);
MessageBox.Show("range = " + this.range.get_Address());