Page 11 of 14 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 137

Thread: thinBasic 1.10.7.x

  1. #101
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10
    Quote Originally Posted by primo View Post
    the themes idea is great. i have tested all. since i have a bad eyes vision, changing from theme to other will relief the eyes.
    Great. I will remove thinAir options regarding colors/fonts/... and will develop a theme editor
    So far you have to copy a theme into another xml file and manually edit it.
    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. #102
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10
    Quote Originally Posted by axelmoe View Post
    no problem.
    But my message is also incomplete, all involved Module (_file, _ftp, _console, _ini) are listed in teh event lock. When I do a manuall scan with this files no problems are reported.

    KR

    Axel
    I have update .10.5 at https://www.thinbasic.biz/projects/t...c_1.10.5.0.zip
    Nothing special, just changed the way needed modules are extracted from bundled exe and saved to disk.
    Hopefully this new way will let the "adaptive behave detection" of the AV engine think it is a little less risky, bu not sure.
    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

  3. #103
    Hi Eros,

    I've tested it but I received the same messages for the bundled application

    KR

    Axel

  4. #104
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10
    OK thanks.
    It was a try.

    I have to think of a new method to "extract" DLLs from a bundled exe.
    I was looking at some McAfee docs about Adaptive Protection: https://kc.mcafee.com/corporate/inde...&id=KB88482#SP
    Do not know if I will have something in the short period. I have to study well how this Adaptive Protection works and understand what behave is blocked by McAfee.

    In the meantime if you have some parameters you can change in you AV system ...
    Let me know if you discover something.
    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

  5. #105
    i want to display a Russian characters with msgbox but i get a gibberish chars. then i have tried msgboxW and it works
    string a
    a = "девочки"
    'a = "girls"
    msgboxW 0, a ' works
    msgboxW 0, Mid$(a,1,1) ' does not work
    msgbox 0, a ' does not work
    msgbox 0, Mid$(a,1,1)
    
    my window is XP/english

    how i get the first character of the "девочки"

    notes: the new IDE is excellent since it seems capable to display any language
    Last edited by primo; 22-06-2018 at 16:28.

  6. #106
    how i get the first character of the "девочки"
    This seems to work, displaying the characters of "девочки" one by one:
    string a, c
    long i
    a = "девочки"
    for i=0 to 6
    c = Peek$(STRPTR(a)+(i*2),2)
    msgboxW 0, c ' works
    next
    
    i: is the position of the character. i expect the one char = 2 bytes. but this is may be more for some languages.

  7. #107
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10
    I have to develop many string functions specific for wide strings.
    Maybe a new string type too: wide string type.
    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

  8. #108
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732
    Eros does excellent job on the development of 1.10.5.0, just have a look at the brutal amount of new features in What's new section of help file!
    Should you need some adjustment of vim Zenburn theme, let me know, as I am preparing this one.


    Petr
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  9. #109
    Thanks Petr
    i switch themes too much, since nowadays i have a bad vision, i have tested the
    vim Zenburn theme it seems good for the eyes, sometimes i need lighter background for a few minutes, i also make the fonts big such as 13
    you and Eros have made big things with the IDE, also Zoom+/- is handy.
    this one may be good but not all the time:
    theme.PNG
    <editor>
    			<style name = "default">
    				<item name = "color.background">100,100,100</item>
    				<item name = "color.foreground">0,205,255</item>
    				<item name = "font.size">14</item>
    			</style>
    
    			<style name = "comments">
    				<item name = "color.foreground">227,159,127</item>
    			</style>
    
    			<style name = "keywords">
    				<item name = "color.foreground">240,223,15</item>
    				<item name = "font.bold">true</item>
    				<item name = "font.weight">300</item>
    			</style>
    

  10. #110
    Member
    Join Date
    Aug 2015
    Location
    Keralam, India
    Posts
    121
    Rep Power
    21
    Quote Originally Posted by Petr Schreiber View Post
    Eros does excellent job on the development of 1.10.5.0, just have a look at the brutal amount of new features in What's new section of help file!
    Petr
    Hi Petr,
    I cant find any download link for version 1.10.5.

Page 11 of 14 FirstFirst ... 910111213 ... LastLast

Members who have read this thread: 3

Posting Permissions

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