flat assembler
Message board for the users of flat assembler.

Index > IDE Development > New version of Easy Code 2 (June 14, 2024)

Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9
Author
Thread Post new topic Reply to topic
Roman



Joined: 21 Apr 2012
Posts: 1820
Roman 08 Jul 2022, 14:49
video show feature your ide.
its important.

Simple question.
Why i need use easy code ide, when i have fasm editor or visual code editor ?
in video must explaen about possibilities easy code ide.
Post 08 Jul 2022, 14:49
View user's profile Send private message Reply with quote
Roman



Joined: 21 Apr 2012
Posts: 1820
Roman 08 Jul 2022, 18:41
Did support two windows text edition in easy code ide ?
Post 08 Jul 2022, 18:41
View user's profile Send private message Reply with quote
EasyCode



Joined: 26 Jul 2015
Posts: 157
EasyCode 10 Jul 2022, 09:49
Hi all,

A new version of Easy Code 2 has just been released (2.02.0.0042). Download it at:

http://www.easycode.cat/English/Download.htm (English version)
http://www.easycode.cat/Download.htm (Catalan version)
http://www.easycode.cat/Spanish/Download.htm (Spanish version)

Please follow the instructions in the Setup-Portable-Edition.txt file.


Bug Fixes:
=======

1. Fixed a bug that caused Fasm 64-bit projects to fail to be built when they had the option "This project will run in Unicode mode" checked (in the "Project Properties").

2. Fixed an issue that could occur in Windows 11 when the installed physical memory is greater than 4GB.


Added Features:
===========

1. The 'About' box now shows the amount of physical memory installed.

2. New 'hid.inc' and 'hid.lib' files for all supported assemblers.


Deprecated Features:
===============

None


- Please read and follow the directions within the AsmC.txt, Fasm.txt, Masm.txt, SolAsm and UAsm.txt files located in the 'EasyCode' folder -



Enjoy Easy Code!
Post 10 Jul 2022, 09:49
View user's profile Send private message Reply with quote
Roman



Joined: 21 Apr 2012
Posts: 1820
Roman 15 Jul 2022, 11:58
what about resources for dialog box or menu window ?
format compatable with fasm ?
i mean fasm compile resources from ide easy code ?
Post 15 Jul 2022, 11:58
View user's profile Send private message Reply with quote
Roman



Joined: 21 Apr 2012
Posts: 1820
Roman 18 Jul 2022, 17:38
I found in file *.ecw this:
Code:
Begin Button = Button2
    BackColor         = 0x8000000F
    Border            = 0
    Cancel            = 0
    ClientEdge        = 0
    ClipSiblings      = 1
    CursorIcon        = [None]
    CursorShape       = 0
    Default           = 0
    DragAndDrop       = 0
    DrawFocus         = 1
    Enabled           = 1
    ExStyle           = 0x00000000
    Font              = Segoe UI,10,400,0,0,0
    ForeColor         = 0x80000012
    Height            = 26
    ImageType         = -1
    Layout            = 2
    Left              = 121
    MouseLeave        = 0
    MultiLine         = 0
    OwnerDraw         = 0
    NormalStyle       = 0x54000300
    Picture           = [None]
    PicturePosition   = 0
    RightToLeft       = 0
    StaticEdge        = 0
    TabOrder          = 1
    TabStop           = 1
    Text              = Button1
    ToolTipText       = 
    Top               = 29
    Visible           = 1
    Width             = 80
  End
    

Could you might do this format ?
Code:
  Button2.IDE        = 110
  Button2.BackColor         = 0x8000000F
  Button2.Border            = 0
  Button2.Cancel            = 0
  Button2.ClientEdge        = 0
  Button2.ClipSiblings      = 1
  Button2.CursorIcon        = 0
  Button2.CursorShape       = 0
  Button2.Default           = 0
  Button2.DragAndDrop       = 0
  Button2.DrawFocus         = 1
  Button2.Enabled           = 1
  Button2.ExStyle           = 0x00000000
  Button2.Font              EQU "Segoe UI",10,400,0,0,0
  Button2.ForeColor         = 0x80000012
  Button2.Height            = 26
  Button2.ImageType         = -1
  Button2.Layout            = 2
  Button2.Left              = 121
  Button2.MouseLeave        = 0
  Button2.MultiLine         = 0
  Button2.OwnerDraw         = 0
  Button2.NormalStyle       = 0x54000300
  Button2.Picture           = 0
  Button2.PicturePosition   = 0
  Button2.RightToLeft       = 0
  Button2.StaticEdge        = 0
  Button2.TabOrder          = 1
  Button2.TabStop           = 1
  Button2.Text              EQU "Button1"
  Button2.ToolTipText       = 
  Button2.Top               = 29
  Button2.Visible           = 1
  Button2.Width             = 80
;End
    


Last edited by Roman on 18 Jul 2022, 17:50; edited 2 times in total
Post 18 Jul 2022, 17:38
View user's profile Send private message Reply with quote
Roman



Joined: 21 Apr 2012
Posts: 1820
Roman 18 Jul 2022, 17:44
I write macro ResGUI Button2,"button',Top,Left,Width,Height,Text,IDE
This create window "button',Button2.Top,Button2.Left,Button2.Width,Button2.Height,Button2.Text,Button2.IDE

And i simple do iclude 'res.ecw' in my program.
Post 18 Jul 2022, 17:44
View user's profile Send private message Reply with quote
EasyCode



Joined: 26 Jul 2015
Posts: 157
EasyCode 22 Nov 2022, 11:10
Hi all,

A new version of Easy Code 2 has just been released (2.02.0.0043). Download it at:

http://www.easycode.cat/English/Download.htm (English version)
http://www.easycode.cat/Download.htm (Catalan version)
http://www.easycode.cat/Spanish/Download.htm (Spanish version)

Please follow the instructions in the Setup-Portable-Edition.txt file.


Bug Fixes:
=======

No bug detected.


Added Features:
===========

1. A new method, 'GetRegistryValueWow64', allows you to get a 64-bit registry value from a 32-bit application, or a 32-bit registry value from a 64-bit application, when the application is running on 64-bit Windows systems. Please see the 'GetRegistryValueWow64' method in the Easy Code help file.

2. A new option in the Tools menu ('Network Info') allows you to get information about your network connection (IP address, location, latitude, time zone, etc.).


Deprecated Features:
===============

None


- Please read and follow the directions within the AsmC.txt, Fasm.txt, Masm.txt, SolAsm and UAsm.txt files located in the 'EasyCode' folder -



Enjoy Easy Code!
Post 22 Nov 2022, 11:10
View user's profile Send private message Reply with quote
EasyCode



Joined: 26 Jul 2015
Posts: 157
EasyCode 04 Jul 2023, 10:18
Hi all,

A new version of Easy Code 2 has just been released (2.02.0.0044). Download it at:

http://www.easycode.cat/English/Download.htm (English version)
http://www.easycode.cat/Download.htm (Catalan version)
http://www.easycode.cat/Spanish/Download.htm (Spanish version)

Please follow the instructions in the Setup-Portable-Edition.txt file.


Bug Fixes:
=======

1. Sometimes the menu bar was not displayed correctly in Windows 11, since it appeared with an excessively large height.


Added Features:
===========

None


Deprecated Features:
===============

None


- Please read and follow the directions within the AsmC.txt, Fasm.txt, Masm.txt, SolAsm and UAsm.txt files located in the 'EasyCode' folder -



Enjoy Easy Code!
Post 04 Jul 2023, 10:18
View user's profile Send private message Reply with quote
EasyCode



Joined: 26 Jul 2015
Posts: 157
EasyCode 05 Nov 2023, 10:54
Hi all,

A new version of Easy Code 2 has just been released (2.02.0.0045). Download it at:

http://www.easycode.cat/English/Download.htm (English version)
http://www.easycode.cat/Download.htm (Catalan version)
http://www.easycode.cat/Spanish/Download.htm (Spanish version)

Please follow the instructions in the Setup-Portable-Edition.txt file.


Bug Fixes:
=======

1. The file being debugged could not be found when its path contained spaces.


Added Features:
===========

None


Deprecated Features:
===============

None


- Please read and follow the directions within the AsmC.txt, Fasm.txt, Masm.txt, SolAsm and UAsm.txt files located in the 'EasyCode' folder -



Enjoy Easy Code!
Post 05 Nov 2023, 10:54
View user's profile Send private message Reply with quote
EasyCode



Joined: 26 Jul 2015
Posts: 157
EasyCode 14 Jun 2024, 12:30
Hi all,

A new version of Easy Code 2 has just been released (2.02.0.0046). Download it at:

http://www.easycode.cat/English/Download.htm (English version)
http://www.easycode.cat/Download.htm (Catalan version)
http://www.easycode.cat/Spanish/Download.htm (Spanish version)

Please follow the instructions in the Setup-Portable-Edition.txt file.


Bug Fixes:
=======

1. Some examples for the AsmC and PoAsm compilers were wrong and in their place were those for the SolAsm compiler.

2. When error messages were very long (particularly from the "ml64.exe" compiler), Easy Code could crash.


Added Features:
===========

1. The output window shows the time Easy Code takes to buid the project.


Deprecated Features:
===============

None


- Please read and follow the directions within the AsmC.txt, Fasm.txt, Masm.txt, SolAsm and UAsm.txt files located in the 'EasyCode' folder -



Enjoy Easy Code!
Post 14 Jun 2024, 12:30
View user's profile Send private message Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9

< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2024, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.