How to open a TForm from an Excel Task Pane?

Add-in Express™ Support Service
That's what is more important than anything else

How to open a TForm from an Excel Task Pane?
 
Michael Hovdan


Guest


When I try to open a TForm from an Excel Task Pane using:

Unit1.Form1.Show;

I get an "Access violation at address 0231D....".

How should this be done?
Posted 26 Jun, 2010 12:45:40 Top
Andrei Smolin


Add-in Express team


Posts: 18821
Joined: 2006-05-11
Hi Michael,

  Form1 := TForm1.Create(nil);
  Form1.Show;



Andrei Smolin
Add-in Express Team Leader
Posted 28 Jun, 2010 03:47:12 Top