The MASM Forum

Projects => Easy Code IDE 32/64-bit => Topic started by: mabdelouahab on January 03, 2016, 07:05:02 PM

Title: help
Post by: mabdelouahab on January 03, 2016, 07:05:02 PM
Good morning

How do I include a file into a folder
INCLUDE .\INCs\MyInclud.inc
Quotefatal error A1000:cannot open file : .\INCs\MyInclud.inc
Secondly How to make a group to code Like(.if/.endif;Proc /endp) I wante to make (;{/;})
Title: Re: help
Post by: AssemblyChallenge on January 04, 2016, 07:35:47 AM
Hi and happy new year  :biggrin:

If you are posting here, I assume you are using Ramon Sala's EasyCode.

In that case you don't need to include the file(s) in your source code, instead, use the panel (Explorer) at the right side of EasyCode (Modules & Includes).

I couldn't understand your second question regarding code grouping.

Regards.
Title: Re: help
Post by: mabdelouahab on January 04, 2016, 09:25:21 AM
hi AssemblyChallenge

I make a utility to Generate code asm,and I am working to make this tool works with all Ide
But this statement generates an error when I using EasyCode

INCLUDE .\INCs\MyInclud.inc
Secondly How to make a group(Code Block)Like:

(http://gdurl.com/Wz9S)

Such as radasm, I open masm.ini , at "[CodeBlock]" i add "22= ;{ , ;}  ,,,4"
Title: Re: help
Post by: rsala on January 06, 2016, 06:31:26 AM
Hi mabdelouahab,

If I could see some code about what you want to do, I could help you.
Title: Re: help
Post by: K_F on January 13, 2016, 08:41:12 AM
Quote from: mabdelouahab on January 04, 2016, 09:25:21 AM
I make a utility to Generate code asm,and I am working to make this tool works with all Ide
But this statement generates an error when I using EasyCode

INCLUDE .\INCs\MyInclud.inc
AFAIK Include Files are in ......path\EasyCode\Include
You might want to put your include files here !!

Quote
Secondly How to make a group(Code Block)Like:
(http://gdurl.com/Wz9S)
Such as radasm, I open masm.ini , at "[CodeBlock]" i add "22= ;{ , ;}  ,,,4"
This lot is about macros.. read up on creating macros - it's really simple once you get the hang of it !
;)
Title: Re: help
Post by: mabdelouahab on January 15, 2016, 06:30:57 AM
This is a tool : http://masm32.com/board/index.php?topic=5028.0 (http://masm32.com/board/index.php?topic=5028.0)
Facilitate access to objects COM and .Net assembly
You'll notice the example listed to deal with .Net System.Windows.Forms.Inc, http://masm32.com/board/index.php?topic=5028.msg54023#msg54023 (http://masm32.com/board/index.php?topic=5028.msg54023#msg54023)
Contains 1034 phrases:
" INCLUDE .\System.Windows.Forms\...??..INC"
1034 file in the folder \System.Windows.Forms\
When tested  the example with EasyCode result:
Quotefatal error A1000:cannot open file : .\System.Windows.Forms\ ...
You can also note that every file I collect as Block: Constructors,Methods,Property,Field,... ; I want to get Expand/Collaps
(http://gdurl.com/4OcB)
and
(http://gdurl.com/ZBT2)
Title: Re: help
Post by: rsala on January 21, 2016, 05:21:44 AM
I will have a look at the links you posted and see what I can do.