Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clarion 7 embed in column 1 1

Status
Not open for further replies.

pablo1970

Programmer
Nov 3, 2010
1
UY
Hi all, in clarion 6.3 ther´s a check box in global embeds so you can embed code in column 1, where is that option in c7?.

Thanks in advance.
 
Hi!

There is NO option for that.

The only way to do that is to go into the embeditor by pressing FILLED or SOURCE and align it to Column 1.

Regards
 
Shankar thank´s for your answer but I cant find that options in global embeds I try to open the clw in the solution explorer and edit there but when I recompile idents again the embed.

Sorry about my english and thanks again.

Pablo.
 
Hi ShankarJ, digging in sv forum I found this answer that works fine.

If you use the "After global Includes" embed, you can write your own MAP structure, which basically merges with other MAP structures and allow column 1 code.
MAP
MODULE ! if applicable
Label PROCEDURE ! etc.
END
END

Reggards, Pablo
 
Hi Pablo,

You did not tell me why you needed the Column 1 code and I assumed it was for DATA which requires it to be on Column 1. Even though you can have your own MAP structure, there is an embed called "Inside the GLOBAL MAP" which will put in inside the main MAP structure. Also. procedure DO NOT need to be on Column 1 i.e. instead of ::

Code:
    MODULE(...)
MyProc    PROCEDURE(STRING MyParam)
    END

you could write it as ::

Code:
    MODULE(...)
      MyProc(STRING MyParam)
    END

EVERYTHING in a MAP is a Procedure anyway.

Regards
 
Shankar thanks again (every day learning something new)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top