Outlook add form

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

Outlook add form
 
calou_33 calou_33


Guest


Hello,

When i clic on a context menu item in outlook, i want to show a dedicated form (with edits, labels, combo box..) to the user in order to fill it.
How could i do it ? Have you examples?

Thanks for help
Posted 13 Oct, 2017 08:41:47 Top
calou_33 calou_33


Guest


I have do this code (i am a beginner!) in this event adxRibbonContextMenu1Controls1Controls0Click:
Is it correct for you?

form17 := TForm17.Create(self);
try
form17.ShowModal;
finally
form17.free;
end;
Posted 13 Oct, 2017 08:59:07 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi calou_33,

Your code looks correct.
Posted 13 Oct, 2017 09:36:11 Top
calou_33 calou_33


Guest


Thanks. The add in VCL Components seems to be powerful! I continue my tests
Regards
Posted 13 Oct, 2017 12:31:07 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi calou_33,

Thank you for keeping us informed.
Posted 16 Oct, 2017 04:04:13 Top