Results 1 to 6 of 6

Thread: thinBasic Beta 1.9.10.0

  1. #1
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    thinBasic Beta 1.9.10.0

    thinBasic Beta 1.9.10.0

    Download from: http://www.thinbasic.biz/projects/th...c_1.9.10.0.zip



    Quick and dirty fix over thinBasic 1.9.9.0 due to DIALOG UNIT ... TO PIXEL ... (and the other way round) bug.
    Refer to beta thinBasic 1.9.9.0 for changes introduced over previous versions.
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  2. #2
    thinBasic MVPs
    Join Date
    Oct 2012
    Location
    Germany
    Age
    54
    Posts
    1,525
    Rep Power
    170
    thanks.

    What would I do without you?

    ...give up on coding probably
    I think there are missing some Forum-sections as beta-testing and support

  3. #3
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10
    oops,

    forgot to say in this version you can do things like that:

    DIM MyString Like "String"
    DIM MyLong Like "LONG"
    DIM MyExt Like "E" & "X" & "T"
    
    Also inside TYPEs
    TYPE MyType
      MyString Like "String"
      MyLong Like "LONG"
      MyExt Like "E" & "X" & "T"
    END TYPE
    
    The rule is:
    DIM VarName Like [StringExpression]
    
    where [StringExpression] is any string expression returning a base type supported by thinBasic.
    For the moment nothing other than base numeric and string types.
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  4. #4
    thinBasic MVPs
    Join Date
    Oct 2012
    Location
    Germany
    Age
    54
    Posts
    1,525
    Rep Power
    170
    Wow! I love you!

    Edit: Just saw after posting the limitations... and detected that instant assignement not works (yet) in all ways

    String a = "Long"
    Dim b Like a = 123  ' not working, b is 0 now
    
    Dim c Like a Value 123 ' works!, c is 123
    
    Last edited by ReneMiner; 20-10-2013 at 13:18.
    I think there are missing some Forum-sections as beta-testing and support

  5. #5
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10
    Dim b Like a = 123

    will not work because (A = 123) is a valid string expression and it has precedence over variable declaration.
    So = for initial assignment will not be supported by Like construct.
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  6. #6
    thinBasic MVPs
    Join Date
    Oct 2012
    Location
    Germany
    Age
    54
    Posts
    1,525
    Rep Power
    170
    Help-File: The description to Dialogs WS_ExStyle-Equates is messed up somehowImage2.jpg(check image)

    Style %WS_EX_LTRREADING is listed twice with different effects-description, (marked) - probably should the first of these be %WS_EX_RTLREADING - then it would make sense...
    I think there are missing some Forum-sections as beta-testing and support

Similar Threads

  1. Beta testing thinBasic Beta 1.9.7.0
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 29
    Last Post: 21-02-2015, 01:37
  2. Beta testing thinBasic Beta 1.9.6.0
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 15
    Last Post: 09-05-2013, 04:22
  3. thinBasic beta 1.7.10.1
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 11
    Last Post: 08-02-2010, 07:09
  4. thinBasic beta 1.7.10.0
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 147
    Last Post: 02-02-2010, 01:25
  5. thinBasic beta 1.7.9.0
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 3
    Last Post: 25-08-2009, 13:58

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •