Hello all,
I was hoping you could help me. I'm trying to make an Excel Add-in with some special features.
I really want to use ExcelDNA since it is awesome! Especially for writing UDFs. However, I also want to create a stand-alone program (a System.Windows.Forms : Form) that handles the bulk of the interaction with the user. One of the key features is the ability to use custom hotkeys with a hook (using the CAPSLOCK button in combination with other keys). What do you think is the best way to do this?
The options I've tested/tried/considered:
1. A pure XLL file. I don't like this because I feel like it becomes cumbersome to have the UI I want.
2. A pure Windows Form file. It doesn't seem like I can effectively use the XLL with this method?
3. Maybe I should use a combination Window Form (.exe file) with an XLL file and then when I deploy the program I can use an installer to install the XLL and then the EXE can use the formulas in the XLL? If this sounds promising, any installer recommendations?
I appreciate you help!