I just get these error messages for variables that are defined in the
start of the code, like
Global Power_Factor
Global Turbo_Power
This was no problem in PB400B4...did not have the chance to test B5, Fred was too quick.
I also had some problem with DIM, but found out that it should be
GLOBAL DIM instead, found this tip in the forums...but what has happended to this Global Power_Factor thing now?
Some change in the way purebasic behaves or?
The variables are needed outside and inside procedures...
oakvalley wrote:I just get these error messages for variables that are defined in the
start of the code, like
Global Power_Factor
Global Turbo_Power
This was no problem in PB400B4...did not have the chance to test B5, Fred was too quick.
I also had some problem with DIM, but found out that it should be
GLOBAL DIM instead, found this tip in the forums...but what has happended to this Global Power_Factor thing now?
Some change in the way purebasic behaves or?
The variables are needed outside and inside procedures...
Please help.
You have a line with Power_Factor = value somewhere before the Global Power_Factor.
So the Variable is already declared.
PS, these questions belong in coding questions, not in announcements.