Re: how show window form, from wwf code activity tool.
aah.... as far as I know... you don't. Not from the WF side at any rate. They are WorkFlows... not applications in the traditional sense. Now, what the WF can do is set a state, or set a flag of some kind (probably in a database) that then tells the client system that is communicating with it, to display a form.. but the WF itself isn't supposed to. At least that was the case when I used WF... our workflow never communicated directly with the user... it was sitting off on a server somewhere. When ever we needed something from the user, the WF would then persist the data to the database, then go into a wait state. Once the suer was done, the app would send a message (via WCF) back to the workflow. The WF would then wake up, retrieve the data from the database and continue processing.