ZigZig 109 Posted July 25, 2014 Share Posted July 25, 2014 Hi, I'm trying to set to FALSE the property "StandAloneServer" of UniServer Module. it automatically switches to TRUE. Any idea? Thanks Details: UniGui v0.95.0.1046 Link to post Share on other sites
Administrators Farshad Mohajeri 1802 Posted July 25, 2014 Administrators Share Posted July 25, 2014 Hi, I'm trying to set to FALSE the property "StandAloneServer" of UniServer Module. it automatically switches to TRUE. Any idea? Thanks Details: UniGui v0.95.0.1046 StandaloneSAndISAPIModule.png VCL mode has gone long time ago... Link to post Share on other sites
ZigZig 109 Posted July 25, 2014 Author Share Posted July 25, 2014 Hi Farshad, Yes I know that VCL mode has gone long time ago... , and my goal is not to use VCL. I would like just to switch between StandAlone Server and ISAPI Module if it's possible? I have a prototype running locally, when I run it, it is automatically deployed, I would like to deploy it manually (on a remote server). Do I have to mention the type 'ISAPI Module' during the creation of the project? Thanks Link to post Share on other sites
Administrators Farshad Mohajeri 1802 Posted July 25, 2014 Administrators Share Posted July 25, 2014 Well, the whole purpose of StandAloneServer property is to switch between VCL and standalone mode. //{$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module' {$ifndef UNIGUI_VCL} library {$else} program {$endif} Open DPR file, comment out the first line and then close / re-open the project. Compile project and this will produce a DLL file. 2 Link to post Share on other sites
ZigZig 109 Posted July 28, 2014 Author Share Posted July 28, 2014 Well, the whole purpose of StandAloneServer property is to switch between VCL and standalone mode. //{$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module' {$ifndef UNIGUI_VCL} library {$else} program {$endif} Open DPR file, comment out the first line and then close / re-open the project. Compile project and this will produce a DLL file. Thank you. Link to post Share on other sites
Recommended Posts