[GIS] Adding popup message box before tool execution with ArcPy and ArcMap

arcgis-10.0arcmaparcpypython-2.6

I want to add a box message to pop up before execution of a button tool. When I click a button which will do geoprocessing, I want a box to appear on view before processing with message that I am about to do xxx processing.

How do I do it?

Best Answer

See Python Message Box Without huge library dependency at Stack Overflow.

Note that doing any sort of user interface in a geoprocessing tool is kind of a no-no and may annoy your end users.

Related Question