Zitat:
ich hatte eigentlich die Hoffnung schon aufgegeben.
zu letzt stirbt die Hoffnung
wichtigste Frage zuerst: Hast du das 5.0.8er-Patch eingespielt (von der Borland-Seite)??
Scripting Syntax auf die Kürze (ist PascalScript und nicht ObjectPascal
)
Delphi-Quellcode:
If statement
if condition then
statement(s);
elseif condition then
statement(s);
else
statement(s);
end;
For loop
for index := start to finish do
statement(s);
end;
for index := start downto finish do
statement(s);
end;
While loop
while condition do
statement(s);
end;
Repeat loop
repeat
statement(s);
until condition;
With statement
with object do
statement(s);
end;
Break, Continue and Exit function similar to Delphi.
Variables may be declared similar to Delphi. The following types are supported:
Boolean, Shortint (-128 to 127), Byte (0 to 255), SmallInt (-32768 to 32767), Word (0 to 65535), Integer (32 bit
signed integer), Single (4 byte float), Double (8 byte float), Extended, Currency, Char and String.
auf der nevrona.com/Rave findest bei Tips&Tricks einige RaveLanguage-Tips und bespiele;
-> für Scripting empfehle ich aber Rave 5.1 oder höher, hier hat Nevrona sehr viel an der Stabilität gearbeitet.
Zitat:
Rave ist sonst (ohne OnBeforePrint-Events usw...) ziemlich nutzlos für mich
warum
? was hast du vor ? kennst du DataMirrorSections, GlobalPages etc.etc. ? oftmals sind die anderen Wege besser als Scripting
thomas, TeamNevrona