Call exe file when save form

A

Alexander Wolff

I would like to call a .exe file when the user saves a form.
How can I do that?

thanks in advance,
Alexander
 
T

TerryR

The easiest way is to create a from .net infopath toolkit, and hook into
the save event, and then call System.Process to spawn your external exe.

Infopath may complain about security, so you might need to get the form
full trust.
 
A

Alexander Wolff

thanks, i'll try this.
TerryR said:
The easiest way is to create a from .net infopath toolkit, and hook into
the save event, and then call System.Process to spawn your external exe.

Infopath may complain about security, so you might need to get the form
full trust.
 
Top