ExecuteAsync and GPMessageClass

2663
0
12-14-2011 10:21 AM
thomasenns1
New Contributor
I'm trying to relay information back to the user while a custom tool is being executed.  In my tool Execute method, I have multiple messages...

gpMessage = new GPMessageClass();
gpMessage.Description = "Executing Grid Calculation";
gpMessage.Type = esriGPMessageType.esriGPMessageTypeInformative;
message.Add(gpMessage);

They get added AFTER the process is complete.  Not useful.  Is this a limitation of asynchronous custom tools?
0 Kudos
0 Replies