Search found 4 matches
- Tue Feb 02, 2010 7:45 pm
- Forum: Coding Questions
- Topic: ASM Changes in PB 4.40?
- Replies: 4
- Views: 1246
Re: ASM Changes in PB 4.40?
sry what? i dont know assembler sry
- Tue Feb 02, 2010 7:19 pm
- Forum: Coding Questions
- Topic: ASM Changes in PB 4.40?
- Replies: 4
- Views: 1246
ASM Changes in PB 4.40?
hello,
i have a problem with this eval algo. It works with pb4.3 but not in
pb4.4. The problem is on AllocateMemory... HoldSize is 0 ive marked it at
the beginning
Procedure.s DS_XS_Evaluate(Expression.s)
If FindString(Expression.s,"'",0)>0
ProcedureReturn DS_XS_Concatenate(Expression.s)
EndIf ...
i have a problem with this eval algo. It works with pb4.3 but not in
pb4.4. The problem is on AllocateMemory... HoldSize is 0 ive marked it at
the beginning
Procedure.s DS_XS_Evaluate(Expression.s)
If FindString(Expression.s,"'",0)>0
ProcedureReturn DS_XS_Concatenate(Expression.s)
EndIf ...
- Fri Jan 08, 2010 12:49 pm
- Forum: Announcement
- Topic: DracScript 1.06 Released! LGPL Scripting Language
- Replies: 107
- Views: 59191
Dracscript1
Hello,
I have a problem with DracScript, i think the problem is in the eval algo.. when i run
DracScript with 4.30 it works but on 4.40 the following code..
var = 3
var = var*3
MsgBox('', var)
..shows '3*3' as result... so it only handle it as string... it adds *3 to 3
When i run it on 4.40 i ...
I have a problem with DracScript, i think the problem is in the eval algo.. when i run
DracScript with 4.30 it works but on 4.40 the following code..
var = 3
var = var*3
MsgBox('', var)
..shows '3*3' as result... so it only handle it as string... it adds *3 to 3
When i run it on 4.40 i ...
- Thu Jan 07, 2010 10:54 am
- Forum: Announcement
- Topic: DracScript 1.06 Released! LGPL Scripting Language
- Replies: 107
- Views: 59191
Re: DracScript 1.06 Released! LGPL Scripting Language
Does someone know how to work this on pb 4.40?? It works with 4.3 but on 4.40 no
operations of variables and terms will be done.
I cant find any bug... and the debugger tells me nothing.
When i write
var = 9
var = var*9
i get the result '9*9'
it wont be evaluated
EDIT: It works when i write ...
operations of variables and terms will be done.
I cant find any bug... and the debugger tells me nothing.
When i write
var = 9
var = var*9
i get the result '9*9'
it wont be evaluated
EDIT: It works when i write ...