Version 1.6.0.9

<< Click to Display Table of Contents >>

Navigation:  What's new > 2008 - version history >

Version 1.6.0.9

Release date: 2008.06.09

 

Date

Area/Module

What

Description

Thanks to:

2008.06.09

Core

Improved

EXIT FOR improved. Now multiple EXIT can be indicated using a number.

Example:

For Counter1 = 1 To MaxCount1

  For Counter2 = 1 To MaxCount2

    '...

    Exit(2) '---Will exit from 2 nested FOR level

    '...

  Next

Next

Psch

2008.06.06

Core

Improved

DOEVENTS improved. Now it gives some more time to CPU.

Usage of DOEVENTS in big loops (like windows message pump or message handling in WHILE/WEND) permits a sensible reduction of CPU usage.


2008.06.05

TBGL

Improved

See specific TBGL help



thinAir

Improved

Improved Find dialog handling and Code browser



Core

Fix

Commented lines mixed with line continuation char ("_") not recognized by parsing engine. Now commented lines can be mixed with multi line code. Example of code previously not working fine:

USES "console"

Dim Counter As Long VALUE 1000

Console_writeline _

format$(Counter, "000") & " " & _

'format$(Counter, '00000') & ' ' & _

USING$("\ \  ", "ABCD") & _

'using$('\ \  ', 'DEFGH') & _

"a.b.c.d"

console_WAITKEY

Abraxas

2008.06.04

Core

Add

ARRAY SHUFFLE ... added for numeric arrays


2008.05.27

UI

Improved

COMBOBOX ADD ... improved. Multiple strings can be added in one go passing a string array



UI

Improved

LISTBOX ADD ... improved. Multiple strings can be added in one go passing a string array



FILE

Fix

File module was incompatible with Win9x OSs due to usage of missing API

GSAG3


Core

Add

Rotate$ function added

Psch

2008.05.24

UI

Improved

COMBOBOX ADD ... improved. Multiple strings can be added with string delimited and USING clause.



UI

Improved

LISTBOX ADD ... improved. Multiple strings can be added with string delimited and USING clause.



UI

Improved

COMBOBOX ADD ... improved. Multiple strings can be added in one go.



UI

Improved

LISTBOX ADD ... improved. Multiple strings can be added in one go.


2008.05.21

Core

Add

WITH / END WITH statement added