graphical flowcharts

Gildardo

Member
Hi there,
The version 5 of the Programming Editor is easy to use and all, nevertheless I find problems with the generation of programs via graphical flowcharts.
Is there any other software of Programming Editor option?
 

Rickharris

Senior Member
You can 9and many would say should) write your programmes directly as the commands.

Example:

<code><pre><font size=2 face='Courier'>

Start:
High 1
pause 50
low 1

For B1=1 to 100
High 2
pause 100
low 2
next B1

goto start

</font></pre></code>

This gives you maximum flexibility, access to all programming commands and a great deal of satisfaction.

There are small programming examples with every command in the PDF file to help you get started.

Once you understand what the commands do you will soon be confident in writing your own programmes.
 
Top