Murray Brown
asked on
VB.net Excel Add-in Show Form so can still click on sheet
Hi
I open a Windows form in my Excel Add-in using the following code
Form_Joins.ShowDialog()
When the form is open I can't click on a cell. What do I alter the code to, to make this
possible?
I know in Excel VBA that you set modal to false
I open a Windows form in my Excel Add-in using the following code
Form_Joins.ShowDialog()
When the form is open I can't click on a cell. What do I alter the code to, to make this
possible?
I know in Excel VBA that you set modal to false
What happens with
Form_Joins.Show()
Form_Joins.Show()
ASKER
If I use that the form comes up but when I click on Excel it dissapears behind.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks for the help
http://msdn.microsoft.com/en-us/library/aa984358(v=vs.71).aspx