Hello
I use UE 10.10c and I'm looking for a function? / macro? / subroutine? for writing increasing numbers to the lines in my file (maybe you remember the old BASIC line numbers?).
Example:
I have the code:
I want to add numbers to the lines: not only displayed - really written in the file; and not the line-numbers, but numbers of my choice
The command should be:
Click to the beginning of the choosen code -> I click to first column of [Command a]
click to the end -> I click to first column of [Command d]
type in the starting value -> I type "512"
type in the step of counting -> I type "2"
The program will start ->
The result should be:
Are there any ideas for a solution?
Best regards
Peter
I use UE 10.10c and I'm looking for a function? / macro? / subroutine? for writing increasing numbers to the lines in my file (maybe you remember the old BASIC line numbers?).
Example:
I have the code:
Code: Select all
[Command a]job 1
[Command b]job 2
[Command c]job 3
[Command d]job 4
[Command e]job 5
The command should be:
Click to the beginning of the choosen code -> I click to first column of [Command a]
click to the end -> I click to first column of [Command d]
type in the starting value -> I type "512"
type in the step of counting -> I type "2"
The program will start ->
The result should be:
Code: Select all
512 [Command a]job 1
514 [Command b]job 2
516 [Command c]job 3
518 [Command d]job 4
[Command e]job 5
Best regards
Peter