EasyCompile.NET

Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
15 posts Page 1 of 2
Contributors
User avatar
DeveloperJacob
VIP - Donator
VIP - Donator
Posts: 87
Joined: Sun May 27, 2012 12:40 pm

EasyCompile.NET
DeveloperJacob
Last 2 weeks I was working on a program called EasyCompile.NET.
It's a simple code editor with a C# Compiler in it.

Latest Version: Beta

Requirements:
  • - Windows Vista / 7
    - .NET Framework 4.0
Features:
  • - Simple text editor functions (Undo, Cut, Copy, etc)
    - Code editor options (Highlight current line, show line numbers, etc)
    - Encoding (ASCII, Unicode, etc)
    - Syntax highlighting (12 Different Languages and Plain Text)
    - Compile C# Code to .exe.
That were the main functions. This is the Beta version and in the next version I want to make more compilers like a vb.net compiler and a Java compiler. And I think a HTML Compiler isn't so hard. I also want to make it a tabbed editor and with an kind of Solution Explorer. But first i'm going to make the compilers for the most languages EasyCompile.NET now supports.

Things I want finished before official release:
  • - Tabbed code editor.

    - Solution Explorer.

    - Errorbox and Output.

    - Java Compiler.

    - VB.NET Compiler. cooll; Done

    - Launch html code in custom webbrowser. cooll; Done



Screenshots:

Full:

Image

Edit Menu:

Image

Compiler:

Image





Feel free to Donate: hehaho;

[offsitelink=,2,333638377c32,zlrvspefianqvlw][/offsitelink]

Source:

Coming Soon!

Installer:
You do not have the required permissions to view the files attached to this post.
Last edited by DeveloperJacob on Wed Aug 01, 2012 9:23 am, edited 3 times in total.
Image
User avatar
comathi
Coding God
Coding God
Posts: 1242
Joined: Fri Mar 26, 2010 1:59 pm

Re: EasyCompile.NET
comathi
That looks great. I can't right now, but I assure you I'll definetely be trying this :)

As for your next versions of the program, it would be of no use for you to make an HTML compiler. HTML code (in a .html, .htm, .xhtml, etc.) document is already compiled by the Web Browser. Pre-compiling it would be useless.
User avatar
DeveloperJacob
VIP - Donator
VIP - Donator
Posts: 87
Joined: Sun May 27, 2012 12:40 pm

Re: EasyCompile.NET
DeveloperJacob
comathi wrote:
As for your next versions of the program, it would be of no use for you to make an HTML compiler. HTML code (in a .html, .htm, .xhtml, etc.) document is already compiled by the Web Browser. Pre-compiling it would be useless.
You're right but I mean that you can launch your code in Firefox or Chrome for example.
Image
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: EasyCompile.NET
Shim
looks great :D :D
Find my programs on Softpedia
Vikhedgehog
VIP - Donator
VIP - Donator
Posts: 812
Joined: Fri Nov 05, 2010 6:24 pm

Re: EasyCompile.NET
Vikhedgehog
Cool, it reminds me of my old compiler :)
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: EasyCompile.NET
Codex
DeveloperJacob wrote:
comathi wrote:
As for your next versions of the program, it would be of no use for you to make an HTML compiler. HTML code (in a .html, .htm, .xhtml, etc.) document is already compiled by the Web Browser. Pre-compiling it would be useless.
You're right but I mean that you can launch your code in Firefox or Chrome for example.
Launching/previewing HTML code in a browser outside your project is as easy as creating an HTML file and using process.start (for default browser, use arguments for other browsers).
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
User avatar
DeveloperJacob
VIP - Donator
VIP - Donator
Posts: 87
Joined: Sun May 27, 2012 12:40 pm

Re: EasyCompile.NET
DeveloperJacob
Codex wrote:
You're right but I mean that you can launch your code in Firefox or Chrome for example.
Launching/previewing HTML code in a browser outside your project is as easy as creating an HTML file and using process.start (for default browser, use arguments for other browsers).[/quote]

Thanks cooll; it works I used this code:
Code: Select all
            string filename
               = string.Format(@"{0}\{1}",
                    System.IO.Path.GetTempPath(),
                    "testhtm.htm");
               File.WriteAllText(filename, textEditorControl1.Text);
            Process.Start(filename);
Image
User avatar
DeveloperJacob
VIP - Donator
VIP - Donator
Posts: 87
Joined: Sun May 27, 2012 12:40 pm

Re: EasyCompile.NET
DeveloperJacob
I need help with the Java Compiler. I can debug java this way:

http://www.codeproject.com/Articles/494 ... ava-Editor

But I need to compile it. Is there any way to do it?

I thought about saving it as a .java file and then convert it to an .exe but I don't know how to convert it into an .exe.
Image
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Re: EasyCompile.NET
MrAksel
You can't compile Java files to a windows executable. Java programs have the .jar extension.
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
User avatar
DeveloperJacob
VIP - Donator
VIP - Donator
Posts: 87
Joined: Sun May 27, 2012 12:40 pm

Re: EasyCompile.NET
DeveloperJacob
MrAksel wrote:
You can't compile Java files to a windows executable. Java programs have the .jar extension.
Yes you're right. But how do I convert a .jar to .exe?
Image
15 posts Page 1 of 2
Return to “Full Software”