www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Turning Executable into Application?

reply "Gan" <avisaria me.com> writes:
With Xamarin Studio I create a D project and run it. It runs an 
Executable Unix file through the terminal. How can I turn that 
into an Application that doesn't open the Terminal?

Thanks.
Jan 25 2015
next sibling parent "Laeeth Isharc" <laeethnospam nospamlaeeth.com> writes:
On Monday, 26 January 2015 at 03:36:32 UTC, Gan wrote:
 With Xamarin Studio I create a D project and run it. It runs an 
 Executable Unix file through the terminal. How can I turn that 
 into an Application that doesn't open the Terminal?

 Thanks.
Have you tried running your executable from the command line? I suspect Xamarin is just opening a terminal for you as a convenience.
Jan 25 2015
prev sibling parent reply "tcak" <tcak gmail.com> writes:
On Monday, 26 January 2015 at 03:36:32 UTC, Gan wrote:
 With Xamarin Studio I create a D project and run it. It runs an 
 Executable Unix file through the terminal. How can I turn that 
 into an Application that doesn't open the Terminal?

 Thanks.
I use MonoDevelop. I haven't tried that but in Project Options (Not Solution Options), there is a checkbox saying "Run on External Console". Uncheck that one maybe. As far as I understand, you want to make a GUI program by saying "application".
Jan 25 2015
parent "Gan" <avisaria me.com> writes:
On Monday, 26 January 2015 at 06:37:34 UTC, tcak wrote:
 On Monday, 26 January 2015 at 03:36:32 UTC, Gan wrote:
 With Xamarin Studio I create a D project and run it. It runs 
 an Executable Unix file through the terminal. How can I turn 
 that into an Application that doesn't open the Terminal?

 Thanks.
I use MonoDevelop. I haven't tried that but in Project Options (Not Solution Options), there is a checkbox saying "Run on External Console". Uncheck that one maybe. As far as I understand, you want to make a GUI program by saying "application".
That's it! Thank you!
Jan 25 2015