in EPB (french editor)
http://michel.dobro.free.fr/download.php?view.25
a line like:
If OpenWindow(0, 100, 200, 195, 260, "PureBasic Window", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget)
Can be written like this :
If OpenWindow(0,_
100,_
200,_
195,_
260,_
"PureBasic Window",_
#PB_Window_SystemMenu_
| #PB_Window_MinimizeGadget_
| #PB_Window_MaximizeGadget)
so it is possible to do
and more things like:
Using the command "
_declare" in the beginning of listing
Automatically Write your statement of procedures
use:
You put your procedure at the end of listing
Then on top of it, you write _declare
EPB will then write all the statements for you!
and more ....
the commands:
_catchsound
_catchsprite
_catchimage
As soon as you use these commands (in the beginning of listing)
A openfilerequester ask you to choose which files to include
(multiselection possible)
EPB and generate the code lines for the inclusion of these files has the location of controls,
If DataSection exists, it will be populated (insertion of new data)
Otherwise it will be created before being filled
amazing is not it?
but ... it is in French

and still in development phase
