Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (79 - 81 of 3866)

Ticket Resolution Summary Owner Reporter
#907 No Bug Local and Global varaibleas has no different wellic72@…
Description

See sources:

File: main.au3

#include "file1.au3" 
#include "file2.au3" 

consoleWrite(x)    ; Error compilation? The x duplicate. Why? 
f()                ; Where from а from file1 or file2

File: file1.au3

Local x = 0        ;It is realy Local variable, isn't ? :)
 
Func f() 
 x = 1 
 ConsoleWrite(x) 
endfunc 

File: file2.au3

Local x = 100      ;I would like really Local variable for program  
 
Func f()    
;  analogously make for Local function Local Func f() 
 x = 200 
 ConsoleWrite(x) 
endfunc

If you replace Local to Global result doesn't change. Why?

#326 Rejected Autoit with Windows Mobile webmaster@…
Description

Hello,

Is it possible that you can write applications with Autoit for your Windows Mobile 5/6?

Kind regards, Melroy van den Berg

#835 Rejected Recursion depth macro weaponx
Description

Would it be possible to have a macro that contains the current depth of a recursive function?

Note: See TracQuery for help on using queries.