Page 1 of 1

Uploaded new Windows version

PostPosted: Wed Oct 06, 2010 10:38 am
by berndnoetscher
Not all bug fixes of the todo list are included. It took a lot of time to fix the variant array issue, so the next release will take some time. Please report any problems with the new features or bug fixes. Thanks in advance.

TabStopWidth is implemented now.
Code: Select all
   Editor0.SetTabChangesFocus(False)
   Editor0.SetTabStopWidth(33)
   


Generic query to run database commands, e.g. having a sqlite database:
Code: Select all
   Dim a As Dictionary = Query.Command("PRAGMA database_list;")
   
   Dim ss As Strings = a.Keys()
   dim i as integer
   For i=0 to ss.length()
     Print( ss.String(i))
     Print( a.String(ss.String(i)))
   Next