Click here to Skip to main content
15,892,804 members
Articles / Desktop Programming / Windows Forms

.Net Script Editor (C#,Vb.net Mini IDE)

Rate me:
Please Sign up or sign in to vote.
3.93/5 (44 votes)
13 Jul 2008CPOL6 min read 242.6K   29.3K   152  
The source code / article published here is to provide features of MS Script control (Functions like AddObject) and some features of VSA/Visual Studio editor like intellisence, code completion etc
  • test.zip
    • Test
      • Project
        • bin
          • Debug
            • CodeEditor.dll
            • CodeEditor.pdb
            • ScriptControl.dll
            • ScriptControl.pdb
            • SyntaxDocument.dll
            • SyntaxDocument.pdb
            • SyntaxFiles.dll
            • SyntaxFiles.pdb
            • Test.exe
            • Test.pdb
          • Release
            • AIMS.CodeEditor.dll
            • AIMS.Docking.dll
            • AIMS.IDE.exe
            • AIMS.IDE.pdb
            • AIMS.IDE.vshost.exe
            • AIMS.ScriptControl.dll
            • AIMS.Scripting.ScriptRun.dll
            • AIMS.SyntaxDocument.dll
            • AIMS.SyntaxFiles.dll
            • ScriptEngine.dll
            • SyntaxFiles.dll
            • SyntaxFiles.pdb
            • Test.vshost.exe
        • Main.cs
        • Main.Designer.cs
        • Main.resx
        • obj
          • Debug
            • AIMS.IDE.exe
            • AIMS.IDE.pdb
            • Refactor
            • ResolveAssemblyReference.cache
            • TempPE
              • Properties.Resources.Designer.cs.dll
            • Test.csproj.GenerateResource.Cache
            • Test.Main.resources
            • Test.Properties.Resources.resources
          • Release
            • AIMS.IDE.exe
            • AIMS.IDE.pdb
            • Interop.Excel.dll
            • Interop.Microsoft.Office.Core.dll
            • ResolveAssemblyReference.cache
            • TempPE
              • Properties.Resources.Designer.cs.dll
            • Test.csproj.GenerateResource.Cache
            • Test.Main.resources
            • Test.Properties.Resources.resources
          • Test.csproj.FileList.txt
          • Test.csproj.FileListAbsolute.txt
        • Program.cs
        • Properties
        • Test.csproj
        • Test.suo
  • bin.zip
    • Bin
      • AIMS.CodeEditor.dll
      • AIMS.CodeEditor.pdb
      • AIMS.Docking.dll
      • AIMS.Docking.pdb
      • AIMS.IDE.exe
      • AIMS.IDE.pdb
      • AIMS.IDE.vshost.exe
      • AIMS.ScriptControl.dll
      • AIMS.ScriptControl.pdb
      • AIMS.Scripting.ScriptRun.dll
      • AIMS.Scripting.ScriptRun.pdb
      • AIMS.SyntaxDocument.dll
      • AIMS.SyntaxDocument.pdb
      • AIMS.SyntaxFiles.dll
      • AIMS.SyntaxFiles.pdb
      • AIMSScript.dll
      • AIMSScript.pdb
      • Interop.ACTIVESKINLib.dll
      • Interop.stdole.dll
      • ScriptEngine.dll
      • ScriptEngine.pdb
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.42
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace Test.Properties {
    
    
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")]
    internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
        
        private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
        
        public static Settings Default {
            get {
                return defaultInstance;
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions