Thread overview
Turning Executable into Application?
Jan 26, 2015
Gan
Jan 26, 2015
Laeeth Isharc
Jan 26, 2015
tcak
Jan 26, 2015
Gan
January 26, 2015
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.
January 26, 2015
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.
January 26, 2015
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".
January 26, 2015
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!