RE: what is diff between std exe project and activex e...
This is not a proper answer....
Standard Exe is the exe which is run by itself It integrate all the control.
Using Activex exe project you can create COM object which can be used in any application. This is reuseble object. It in inprocess object means it will run in own process space.
RE: what is diff between std exe project and activex e...
Basically exe are implemented as out of process servers and they run on seperate space as that of the client so the comunication bet the component and client is done thru the marsahlling process across the boudaries which makes EXE slow.while Actvex project are implemented as inprocess servers and they run on the same place as that of the client thats why they are faster as compare to EXE. But the disadvantage of using actvex project if the error occor in the code it hault the programme.