News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

help

Started by mabdelouahab, January 03, 2016, 07:05:02 PM

Previous topic - Next topic

mabdelouahab

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 (;{/;})

AssemblyChallenge

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.

mabdelouahab

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:



Such as radasm, I open masm.ini , at "[CodeBlock]" i add "22= ;{ , ;}  ,,,4"

rsala

Hi mabdelouahab,

If I could see some code about what you want to do, I could help you.
EC coder

K_F

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:

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 !
;)
'Sire, Sire!... the peasants are Revolting !!!'
'Yes, they are.. aren't they....'

mabdelouahab

This is a tool : 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
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

and

rsala

I will have a look at the links you posted and see what I can do.
EC coder