Giter Club home page Giter Club logo

extremestudio's Introduction

Logo

Project Status: Active – The project has reached a stable, usable state and is being actively developed.

ExtremeStudio is a PAWN editor and is designed to be used in SA-MP development.

Download

You can download the app along with auto-updater from here: https://rebrand.ly/ExtremeStudio

Localization

Crowdin

All localization is done on Crowdin, Kindly register through this link: https://crowdin.com/project/extremestudio/invite

If there is a missing language, Please create an issue asking for it.

Credits

  • Microsoft for .NET ofcourse.
  • ScintillaNET for the wrapper for Scintilla.
  • DockPanelSuite for the tabbing control.
  • sampctl used as the packages manager and to handle the project system.
  • AutoCompleteMenu for the auto-complete menu used along with ScintillaNET using this wrapper by me.
  • DotNetZIP, A class library that add support for handling ZIP files.
  • JSON.NET for the awesome JSON serializer.
  • Ribbon for the awesome ribbon control.
  • JetBrains for supporting ES by providing ReSharper free of charge.
  • Crowdin for providing an open-source license for ES.
  • Advanced Installer for providing a free open-source license for ES.
  • Icon made by Roundicons from Flaticon is licensed by CC 3.0
  • Crayder, designed the logo. ;)
  • Pretty much everything else is by me.

extremestudio's People

Contributors

ahmad45123 avatar dependabot-preview[bot] avatar dependabot-support avatar gitter-badger avatar johnmagdy avatar xisrapilx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

extremestudio's Issues

Application Plans.

Task List Before First 0.1 Release:

  • Enhance syntax highlighting to support more sets with a custom simple regex parser.
  • Add compiling with ability to select custom includes folder.
  • Add Search, Replace, goto and various other IDE fundamentals.
  • Add ES plugins system.
  • Fix a bug in the SAMP includes and plugins systems.
  • Enhance the auto-complete system to show more accurate auto-completes depending on caret
    position. (And also AC paths in #includes and loads of idea.)
  • Add CTRL+Click feature.
  • Revamp the Object Explorer.
  • Revamp the Project Explorer.
  • Add Drag n Drop for opening external files.
  • Add to be able to create project from existing SAMP files.

Yes that's it for the beta version, I do have tons of ideas to add but since I receive millions of requests to release this ASAP, I will just release it and continue supporting and adding features while its live. :)

NOTE: The plugins itself like color-picker, ids browser and such will be created as plugins after the beta release.

Change the way hotkeys are saved.

This will help me make everything in the application change-able as well as make it easier to add more in the future.. Including the editor keys like copy and paste, etc..

Add Italian language

Add Italian localization.
I want to translate it but I don't know how to use crowdin.

Need your discord

Dear ahmed kindly need your discord name and tag or discord server link

Environment variables

I'm trying to make your portable version truly portable by using a batch file to redirect the %appdata% environment variable to it's own folder, and for some reason this won't work. This is probably something that is easy to fix, and can make your app even more awesome
-Matthijs

[Suggestion] Warning and error showing.

Hello, you should put warnings and errors together, because people won't change to see warnings and then other page are errors, they want to see all in one page, that's my suggestion, that would be better :)

Add Localization.

Currently, am focusing on adding localization feature and us currently in work in the localization branch.

Syntax highlighting is reset when using #if defined & #endif

Just look at some screenshots and this part of the code that causes this:
image
image
image

Code:

#if defined CreateDynamicPickup
	#if defined STREAMER_ENABLE_TAGS
		stock STREAMER_TAG_PICKUP acc_CreateDynamicPickup(ac_modelid, ac_type, Float:ac_x, Float:ac_y, Float:ac_z, ac_worldid = -1, ac_interiorid = -1, ac_playerid = -1, Float:ac_streamdistance = 200.0, STREAMER_TAG_AREA ac_areaid = STREAMER_TAG_AREA -1, ac_priority = 0)
		{
			new STREAMER_TAG_PICKUP ac_pickupid = CreateDynamicPickup(ac_modelid, ac_type, ac_x, ac_y, ac_z, ac_worldid, ac_interiorid, ac_playerid, ac_streamdistance, ac_areaid, ac_priority);
	#else
		stock acc_CreateDynamicPickup(ac_modelid, ac_type, Float:ac_x, Float:ac_y, Float:ac_z, ac_worldid = -1, ac_interiorid = -1, ac_playerid = -1, Float:ac_streamdistance = 200.0, ac_areaid = -1, ac_priority = 0)
		{
			new ac_pickupid = CreateDynamicPickup(ac_modelid, ac_type, ac_x, ac_y, ac_z, ac_worldid, ac_interiorid, ac_playerid, ac_streamdistance, ac_areaid, ac_priority);
	#endif
		if(_:ac_pickupid > 0)
		{
			#if defined FILTERSCRIPT
				CallRemoteFunction("ac_CreateDynamicPickup", "iii", ac_pickupid, ac_modelid, ac_type);
			#else
				ac_CreateDynamicPickup(ac_pickupid, ac_modelid, ac_type);
			#endif
		}
		return ac_pickupid;
	}

	#if defined _ALS_CreateDynamicPickup
		#undef CreateDynamicPickup
	#else
		#define _ALS_CreateDynamicPickup
	#endif
	#define CreateDynamicPickup acc_CreateDynamicPickup
#endif

#if defined CreateDynamicPickupEx
	#if defined STREAMER_ENABLE_TAGS
		stock STREAMER_TAG_PICKUP acc_CreateDynamicPickupEx(ac_modelid, ac_type, Float:ac_x, Float:ac_y, Float:ac_z, Float:ac_streamdistance = 200.0, ac_worlds[] = { -1 }, ac_interiors[] = { -1 }, ac_players[] = { -1 }, STREAMER_TAG_AREA ac_areas[] = { STREAMER_TAG_AREA -1 }, ac_priority = 0, ac_maxworlds = sizeof ac_worlds, ac_maxinteriors = sizeof ac_interiors, ac_maxplayers = sizeof ac_players, ac_maxareas = sizeof ac_areas)
		{
			new STREAMER_TAG_PICKUP ac_pickupid = CreateDynamicPickupEx(ac_modelid, ac_type, ac_x, ac_y, ac_z, ac_streamdistance, ac_worlds, ac_interiors, ac_players, ac_areas, ac_priority, ac_maxworlds, ac_maxinteriors, ac_maxplayers, ac_maxareas);
	#else
			stock acc_CreateDynamicPickupEx(ac_modelid, ac_type, Float:ac_x, Float:ac_y, Float:ac_z, Float:ac_streamdistance = 200.0, ac_worlds[] = { -1 }, ac_interiors[] = { -1 }, ac_players[] = { -1 }, ac_areas[] = { -1 }, ac_priority = 0, ac_maxworlds = sizeof ac_worlds, ac_maxinteriors = sizeof ac_interiors, ac_maxplayers = sizeof ac_players, ac_maxareas = sizeof ac_areas)
		{
			new ac_pickupid = CreateDynamicPickupEx(ac_modelid, ac_type, ac_x, ac_y, ac_z, ac_streamdistance, ac_worlds, ac_interiors, ac_players, ac_areas, ac_priority, ac_maxworlds, ac_maxinteriors, ac_maxplayers, ac_maxareas);
	#endif
		if(_:ac_pickupid > 0)
		{
			#if defined FILTERSCRIPT
				CallRemoteFunction("ac_CreateDynamicPickup", "iii", ac_pickupid, ac_modelid, ac_type);
			#else
				ac_CreateDynamicPickup(ac_pickupid, ac_modelid, ac_type);
			#endif
		}
		return ac_pickupid;
	}

	#if defined _ALS_CreateDynamicPickupEx
		#undef CreateDynamicPickupEx
	#else
		#define _ALS_CreateDynamicPickupEx
	#endif
	#define CreateDynamicPickupEx acc_CreateDynamicPickupEx
#endif

[Suggestion] Invert project folder check

Hello, I want to make a suggestion:
Here on these lines you are checking if the folders exists and if not create them.
But as you're calling the 'IsValidSAMPFolder' function in 'IsValidExtremeProject' before checking for the file 'extremeStudio.config' and the folder 'configs', the folders 'gamemodes', 'pawno', 'pawno/include' and 'plugins' are always created, even if an error appears.

So my suggestion is:
Only call 'IsValidSAMPFolder' after checking for the file 'extremeStudio.config' and the folder 'configs', this way it will not create the folders if it is not a ExtremeStudio project.

Suggestions&Bug Reports

Hello @Ahmad45123, so iam facing some problems with ExtremeStudio's Hotkeys(Next Search Result Button, Previous Search Result Button) aren't working even i had changed them to Next = F3|None and Previous = F4|None. I tried too changing the default ExtremeStudio's Hotkeys from My ExtremeStudio Folder/config/hotkeys.json but nothing gets solved... and the 'Installed Plugins' Button's Icon is missing or corrupted. #25 and when i was editting my Project's Pawn File i recieved the following ERRORS:
capture
Logs:

See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
   at System.ThrowHelper.ThrowArgumentOutOfRangeException()
   at System.Collections.Generic.List`1.get_Item(Int32 index)
   at ExtremeStudio.EditorDock.ReColorize(CodeParts parts, Int32 startPos, Int32 endPos)
   at ExtremeStudio.EditorDock.Editor_UpdateStyle(Object sender, UpdateUIEventArgs e)
   at System.EventHandler`1.Invoke(Object sender, TEventArgs e)
   at ScintillaNET.Scintilla.OnUpdateUI(UpdateUIEventArgs e)
   at ScintillaNET.Scintilla.WmReflectNotify(Message& m)
   at ScintillaNET.Scintilla.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
ExtremeStudio
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ExtremeStudio.exe
----------------------------------------
Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 12.0.51209.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
System.Windows.Forms.Ribbon35
    Assembly Version: 3.5.8.0
    Win32 Version: 3.5.8.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/System.Windows.Forms.Ribbon35.DLL
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
WeifenLuo.WinFormsUI.Docking
    Assembly Version: 2.11.0.0
    Win32 Version: 2.11.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/WeifenLuo.WinFormsUI.Docking.DLL
----------------------------------------
ExtremeCore
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ExtremeCore.DLL
----------------------------------------
Newtonsoft.Json
    Assembly Version: 9.0.0.0
    Win32 Version: 9.0.1.19813
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/Newtonsoft.Json.DLL
----------------------------------------
DotNetZip
    Assembly Version: 1.10.1.0
    Win32 Version: 1.10.1
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/DotNetZip.DLL
----------------------------------------
HotkeyControl
    Assembly Version: 1.0.2410.23277
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/HotkeyControl.DLL
----------------------------------------
System.Numerics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
System.Runtime.Serialization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
----------------------------------------
System.Xml.Linq
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Web
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.102.0
    Win32 Version: 1.0.102.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/System.Data.SQLite.DLL
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
ScintillaNET
    Assembly Version: 3.5.10.0
    Win32 Version: 3.5.10.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ScintillaNET.DLL
----------------------------------------
AutocompleteMenu-ScintillaNET
    Assembly Version: 1.3.4.0
    Win32 Version: 1.3.4.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/AutocompleteMenu-ScintillaNET.DLL
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
WeifenLuo.WinFormsUI.Docking.ThemeVS2012Light
    Assembly Version: 2.11.0.0
    Win32 Version: 2.11.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/WeifenLuo.WinFormsUI.Docking.ThemeVS2012Light.DLL
----------------------------------------
System.ComponentModel.Composition
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ComponentModel.Composition/v4.0_4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
----------------------------------------
System.Design
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Design/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Design.dll
----------------------------------------
ExtremeParser
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ExtremeParser.DLL
----------------------------------------
ThemeColorPicker
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ThemeColorPicker.DLL
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Suggestions:

  • Add Highlighting Feature for 'default', 'bool' statements.
  • Add Search History smilliar to Notepad++.
  • Add Undo/Redo Buttons.
  • Check for existing Plugins/Includes at the Project resources before executing&showing the Plugins/Includes Manager Dialog.
  • Launch ExtremeStudio Directly without showing that 'Create Project/Load Project' Dialog when i do the following 'right click -> Open with -> ExtremeStudio' on any Pawn file to Edit/Compile it, smilliar to Original Pawno.
  • Add an Timer to check whether iam doing Right click on a folder/file or not and check if the folder contains an Pawn file or the File is a Pawn file and if the result came true Add an Context Menu Item with the following Text 'Open With Extreme Studio' or 'Create ExtremeStudio Project' (if it's an Folder).
  • Add Dark Theme.
  • Add an feature which allow us to switch between Themes(Dark, Light) with Preview before Submitting the new Changes.
  • Add a feature which allow us to save last Viewed Line in each Pawn file in our Project smilliar to Notepad++ so that we mightn't forget where we was Working before.
  • Add a feature which allow us to shedule a timer which makes a Backup to the Project's resources which runs (Daily/Weekly/Monthly/Custom) with a Customizable Backup Location. with a priority of (Simple/Verbose).

Error

1.- When i select a function from the object explorer or i scroll, some times this window appear and i need restart extremestudio. (I think its the scrollbar)

See the end of this message for details on invoking  
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
   at ScintillaWrapper.<.ctor>b__1_0(Object sender, UpdateUIEventArgs args)
   at System.EventHandler`1.Invoke(Object sender, TEventArgs e)
   at ScintillaNET.Scintilla.OnUpdateUI(UpdateUIEventArgs e)
   at ScintillaNET.Scintilla.WmReflectNotify(Message& m)
   at ScintillaNET.Scintilla.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
ExtremeStudio
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/ExtremeStudio.exe
----------------------------------------
Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
ExtremeCore
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/ExtremeCore.DLL
----------------------------------------
System.Windows.Forms.Ribbon35
    Assembly Version: 3.5.8.0
    Win32 Version: 3.5.8.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/System.Windows.Forms.Ribbon35.DLL
----------------------------------------
Newtonsoft.Json
    Assembly Version: 8.0.0.0
    Win32 Version: 8.0.3.19514
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/Newtonsoft.Json.DLL
----------------------------------------
WeifenLuo.WinFormsUI.Docking
    Assembly Version: 2.9.0.0
    Win32 Version: 2.9.0.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/WeifenLuo.WinFormsUI.Docking.DLL
----------------------------------------
Ionic.Zip
    Assembly Version: 1.9.9.0
    Win32 Version: 1.9.9
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/Ionic.Zip.DLL
----------------------------------------
System.Numerics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
System.Runtime.Serialization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
----------------------------------------
System.Xml.Linq
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Web
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.101.0
    Win32 Version: 1.0.101.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/System.Data.SQLite.DLL
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
ScintillaNET
    Assembly Version: 3.5.6.0
    Win32 Version: 3.5.6.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/ScintillaNET.DLL
----------------------------------------
AutocompleteMenu-ScintillaNET
    Assembly Version: 1.3.4.0
    Win32 Version: 1.3.4.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/AutocompleteMenu-ScintillaNET.DLL
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
ThemeVS2012Light
    Assembly Version: 2.9.0.0
    Win32 Version: 2.9.0.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/ThemeVS2012Light.DLL
----------------------------------------
ExtremeParser
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/Gonz%C3%A1lez/AppData/Local/Apps/2.0/LA666H2J.Y66/703WBKCZ.57Q/extr..tion_0000000000000000_0001.0000_5df0a81931a00ba2/ExtremeParser.DLL
----------------------------------------
System.ComponentModel.Composition
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ComponentModel.Composition/v4.0_4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
----------------------------------------
ColorPicker
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/USERS/GONZ%C3%81LEZ/APPDATA/LOCAL/TEMP/ESPLUGINS/COLORPICKER.DLL
----------------------------------------
System.Design
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1055.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Design/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Design.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Сode bookmark

Add bookmarks to mark code sections.

It will be very convenient, go over the bookmarks, because the code is very long, there are no classes.

Sorry for the bad english.

Exemple(notepad++):
image

New version

I can not compile the project.
image

Build properties button:
image

Instelled plugins icon:
image

Custom color for tags

Add a new syntax color for type tags (like Float: bool: Text: Menu: and any user-defined tag) (I use custom tags a lot, i think it would be useful to anybody to see them coloured different)

[BUG] App crashes on file deletion outside ES

The App crashes when you delete a file from project-scope in windows explorer.

To reproduce the error:

  • Open any project in ES
  • Create a file anywhere
  • Delete this file from Windows explorer
  • Refocus ES window

Error:
image

Save opened files to get back to it later

Add a feature which allow us to save last Viewed Line in each Pawn file in our Project smilliar to Notepad++ so that we mightn't forget where we was Working before.

The request was aborted: Could not create SSL/TLS secure channel.

Hello Dude, so iam Facing some issues with the Plugins Manager while i was trying to install 'Color Picker'.

Debug Logs:

   at System.Net.WebClient.DownloadFile(Uri address, String fileName)
   at System.Net.WebClient.DownloadFile(String address, String fileName)
   at ExtremeStudio.EsPluginsForm.installBtn_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
ExtremeStudio
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ExtremeStudio.exe
----------------------------------------
Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 12.0.51209.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
System.Windows.Forms.Ribbon35
    Assembly Version: 3.5.8.0
    Win32 Version: 3.5.8.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/System.Windows.Forms.Ribbon35.DLL
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
WeifenLuo.WinFormsUI.Docking
    Assembly Version: 2.11.0.0
    Win32 Version: 2.11.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/WeifenLuo.WinFormsUI.Docking.DLL
----------------------------------------
ExtremeCore
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ExtremeCore.DLL
----------------------------------------
Newtonsoft.Json
    Assembly Version: 9.0.0.0
    Win32 Version: 9.0.1.19813
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/Newtonsoft.Json.DLL
----------------------------------------
DotNetZip
    Assembly Version: 1.10.1.0
    Win32 Version: 1.10.1
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/DotNetZip.DLL
----------------------------------------
HotkeyControl
    Assembly Version: 1.0.2410.23277
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/HotkeyControl.DLL
----------------------------------------
System.Web
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
System.Numerics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
System.Runtime.Serialization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
----------------------------------------
System.Xml.Linq
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.102.0
    Win32 Version: 1.0.102.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/System.Data.SQLite.DLL
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
ScintillaNET
    Assembly Version: 3.5.10.0
    Win32 Version: 3.5.10.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ScintillaNET.DLL
----------------------------------------
AutocompleteMenu-ScintillaNET
    Assembly Version: 1.3.4.0
    Win32 Version: 1.3.4.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/AutocompleteMenu-ScintillaNET.DLL
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
WeifenLuo.WinFormsUI.Docking.ThemeVS2012Light
    Assembly Version: 2.11.0.0
    Win32 Version: 2.11.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/WeifenLuo.WinFormsUI.Docking.ThemeVS2012Light.DLL
----------------------------------------
ExtremeParser
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Users/BrownTurbo%20Gaming/AppData/Local/Apps/2.0/PXN2ZDYZ.9V1/1R4TNCCA.PJW/extr..tion_0000000000000000_0001.0000_6e09036f2e7a192b/ExtremeParser.DLL
----------------------------------------
System.ComponentModel.Composition
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ComponentModel.Composition/v4.0_4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
----------------------------------------
System.Design
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34209 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Design/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Design.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

capture

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.