Page 50 of 50 FirstFirst ... 4047484950
Results 1,961 to 1,978 of 1978

Thread: TwinBasic

  1. #1961
    Hyperactive Member
    Join Date
    Jul 2022
    Location
    Buford, Ga USA
    Posts
    491

    Re: TwinBasic

    The file ide\build.js contains the current build of twinBASIC. If it isn't available (or maybe it can't read it from Program Files, I'll have to test) the "missing version" message is displayed. I've added some code to help with this.

  2. #1962
    Fanatic Member
    Join Date
    Aug 2011
    Location
    Palm Coast, FL
    Posts
    666

    Re: TwinBasic

    Quote Originally Posted by jdelano View Post
    If the most recent version is installed then the download button won't be enabled.
    I've tested this change and confirms it works!

    I'm also seeing a version number now rather than the "Version File Missing" message.

  3. #1963
    Hyperactive Member
    Join Date
    Jul 2022
    Location
    Buford, Ga USA
    Posts
    491

    Re: TwinBasic

    Updated the code to handle the new install and/or Program Files location issues. For now, if there is a problem recreating the twinBASIC folder it'll open the zip and the parent folder.

    https://github.com/jdelano0310/GettbZip

    I'll look further into asking for amin rights to handle it. This will at least get things working enough.

  4. #1964
    Fanatic Member
    Join Date
    Aug 2011
    Location
    Palm Coast, FL
    Posts
    666

    Re: TwinBasic

    Quote Originally Posted by jdelano View Post
    Updated the code to handle the new install and/or Program Files location issues. For now, if there is a problem recreating the twinBASIC folder it'll open the zip and the parent folder.

    https://github.com/jdelano0310/GettbZip

    I'll look further into asking for amin rights to handle it. This will at least get things working enough.
    Coming along!

    Two issues:

    1. "Start twinBasic After Update" setting change is not saved. I turn this option off, exit the app, restart the app and the option is turned back on.
    2. The "Version File Missing" issue is back. It had cleared up and now is happening again. Only thing I did was to update your app and then allow it to download and install today's release of tB.

    Not clear but did you say you had made a change to prefill the Download folder on a new install? If you did, that's not working for me.

  5. #1965
    PowerPoster yereverluvinuncleber's Avatar
    Join Date
    Feb 2014
    Location
    Norfolk UK (inbred)
    Posts
    2,938

    Re: TwinBasic

    Might be wise to start logging the bugs on the github page for J's GettbZip?
    https://github.com/yereverluvinunclebert

    Skillset: VMS,DOS,Windows Sysadmin from 1985, fault-tolerance, VaxCluster, Alpha,Sparc. DCL,QB,VBDOS- VB6,.NET, PHP,NODE.JS, Graphic Design, Project Manager, CMS, Quad Electronics. classic cars & m'bikes. Artist in water & oils. Historian.

    By the power invested in me, all the threads I start are battle free zones - no arguing about the benefits of VB6 over .NET here please. Happiness must reign.

  6. #1966
    New Member
    Join Date
    Feb 2025
    Posts
    3

    Re: TwinBasic

    Hi,
    I have trouble using all release from 680 with code in Form_resize event routine:
    if code is present in that routine the event fire in a infinite loop.
    Anyone has the same behavior?

  7. #1967
    PowerPoster yereverluvinuncleber's Avatar
    Join Date
    Feb 2014
    Location
    Norfolk UK (inbred)
    Posts
    2,938

    Re: TwinBasic

    Try to describe it in more detail, do note that all code in the reszize event will occur practically each and every pixel of your drag to resize. If you want some code to run only at the end of a resize then you have a subclassing course to follow.
    https://github.com/yereverluvinunclebert

    Skillset: VMS,DOS,Windows Sysadmin from 1985, fault-tolerance, VaxCluster, Alpha,Sparc. DCL,QB,VBDOS- VB6,.NET, PHP,NODE.JS, Graphic Design, Project Manager, CMS, Quad Electronics. classic cars & m'bikes. Artist in water & oils. Historian.

    By the power invested in me, all the threads I start are battle free zones - no arguing about the benefits of VB6 over .NET here please. Happiness must reign.

  8. #1968
    New Member
    Join Date
    Feb 2025
    Posts
    3

    Re: TwinBasic

    Quote Originally Posted by yereverluvinuncleber View Post
    Try to describe it in more detail, do note that all code in the reszize event will occur practically each and every pixel of your drag to resize. If you want some code to run only at the end of a resize then you have a subclassing course to follow.
    Ok, I have an old prj that RUN fine until release 679, from 680+ on RUN crash...
    I have removed all code that not matter... an so I have only this:

    Code:
    [FormDesignerId("2F23F321-0EA1-460E-BF14-93ED610231F3")]
    
    Class Form1
        Attribute VB_Name = "Form1"
        Attribute VB_GlobalNameSpace = False
        Attribute VB_Creatable = False
        Attribute VB_PredeclaredId = True
        Attribute VB_Exposed = False
        Option Explicit    
        
        Private Sub Form_Load()
            txt_IN.Text = ""
        End Sub
        
        Private Sub Form_Resize()
            txt_IN.Width = (Form1.Width - 500) / 2
        End Sub    
      
    
    End Class
    Attachment 194274

    note: if I replace txt_IN with a new TXT component copying all property the problem fades away....
    note2: if I paste txt_IN in a mint new Project It will crash on RUN...
    So there is not problem! I will Replace the TextBox. Perhaps there is an incompatibility only with very old TB textbox...

    Regards to All

  9. #1969
    Frenzied Member
    Join Date
    Feb 2015
    Posts
    1,410

    Re: TwinBasic

    twinBASIC status update:

    twinBASIC Update: February 24, 2025

    Highlights include an update to fafalone's twinBASIC ribbon demo sample project and a bug-hunting expedition as twinBASIC nears its v1.0 release date.


    https://nolongerset.com/twinbasic-up...ruary-24-2025/


    The latest releases of the twinBASIC programming IDE are available at https://github.com/twinbasic/twinbasic/releases


    Last edited by VB6 Programming; Feb 25th, 2025 at 11:31 AM.

  10. #1970
    PowerPoster yereverluvinuncleber's Avatar
    Join Date
    Feb 2014
    Location
    Norfolk UK (inbred)
    Posts
    2,938

    Re: TwinBasic

    Receiving an nginx 502 gateway error on nolongerset.com
    https://github.com/yereverluvinunclebert

    Skillset: VMS,DOS,Windows Sysadmin from 1985, fault-tolerance, VaxCluster, Alpha,Sparc. DCL,QB,VBDOS- VB6,.NET, PHP,NODE.JS, Graphic Design, Project Manager, CMS, Quad Electronics. classic cars & m'bikes. Artist in water & oils. Historian.

    By the power invested in me, all the threads I start are battle free zones - no arguing about the benefits of VB6 over .NET here please. Happiness must reign.

  11. #1971
    PowerPoster Arnoutdv's Avatar
    Join Date
    Oct 2013
    Posts
    6,439

    Re: TwinBasic

    Works for me at this moment

  12. #1972
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    6,856

    Re: TwinBasic

    Yeah it was down for a little while but it's back.

  13. #1973
    PowerPoster yereverluvinuncleber's Avatar
    Join Date
    Feb 2014
    Location
    Norfolk UK (inbred)
    Posts
    2,938

    Re: TwinBasic

    Quote Originally Posted by Danycop View Post
    Ok, I have an old prj that RUN fine until release 679, from 680+ on RUN crash...
    I have removed all code that not matter... an so I have only this:

    Code:
    [FormDesignerId("2F23F321-0EA1-460E-BF14-93ED610231F3")]
    
    Class Form1
        Attribute VB_Name = "Form1"
        Attribute VB_GlobalNameSpace = False
        Attribute VB_Creatable = False
        Attribute VB_PredeclaredId = True
        Attribute VB_Exposed = False
        Option Explicit    
        
        Private Sub Form_Load()
            txt_IN.Text = ""
        End Sub
        
        Private Sub Form_Resize()
            txt_IN.Width = (Form1.Width - 500) / 2
        End Sub    
      
    
    End Class
    Attachment 194274

    note: if I replace txt_IN with a new TXT component copying all property the problem fades away....
    note2: if I paste txt_IN in a mint new Project It will crash on RUN...
    So there is not problem! I will Replace the TextBox. Perhaps there is an incompatibility only with very old TB textbox...

    Regards to All
    Raise it in a separate post here on this forum or better still as an issue on TB's github issues page.
    https://github.com/yereverluvinunclebert

    Skillset: VMS,DOS,Windows Sysadmin from 1985, fault-tolerance, VaxCluster, Alpha,Sparc. DCL,QB,VBDOS- VB6,.NET, PHP,NODE.JS, Graphic Design, Project Manager, CMS, Quad Electronics. classic cars & m'bikes. Artist in water & oils. Historian.

    By the power invested in me, all the threads I start are battle free zones - no arguing about the benefits of VB6 over .NET here please. Happiness must reign.

  14. #1974
    New Member
    Join Date
    Feb 2025
    Posts
    3

    Re: TwinBasic

    Quote Originally Posted by yereverluvinuncleber View Post
    Raise it in a separate post here on this forum or better still as an issue on TB's github issues page.
    ok, created issue on github with attached project:
    https://github.com/twinbasic/twinbasic/issues/2049
    Last edited by Danycop; Feb 27th, 2025 at 03:46 AM.

  15. #1975
    Frenzied Member
    Join Date
    Feb 2015
    Posts
    1,410

    Re: TwinBasic programming

    twinBASIC status update:

    twinBASIC Update: March 4, 2025

    Highlights include the return of UserControls from the ACTIVE project (missing since BETA 622), an Ambient Light Monitor ported from C++, and more high-priority bug hunting.


    nolongerset.com/twinbasic-update-march-4-2025/


    The latest releases of the twinBASIC programming IDE are available at https://github.com/twinbasic/twinbasic/releases



  16. #1976
    Frenzied Member
    Join Date
    Feb 2015
    Posts
    1,410

    Re: TwinBasic

    twinBASIC status update:

    twinBASIC Update: March 11, 2025

    Highlights include the beta release of the first twinBASIC-compiled version of XYplorer, fixes to long-standing tB IDE regressions, and an important WinDevLib bug fix release.


    nolongerset.com/twinbasic-update-march-11-2025/


    The latest releases of the twinBASIC programming IDE are available at https://github.com/twinbasic/twinbasic/releases



  17. #1977
    Frenzied Member
    Join Date
    Feb 2015
    Posts
    1,410

    Re: TwinBasic programming

    twinBASIC status update:

    twinBASIC Update: March 19, 2025

    Highlights include inline variable declaration in For...In and For...Each loops and a statement from Wayne on balancing VB6 back-compatibility and new features.


    nolongerset.com/twinbasic-update-march-19-2025/


    The latest releases of the twinBASIC programming IDE are available at https://github.com/twinbasic/twinbasic/releases



  18. #1978
    Frenzied Member
    Join Date
    Feb 2015
    Posts
    1,410

    twinBASIC programming status update

    twinBASIC status update from NoLongerSet:

    twinBASIC Update: March 24, 2025

    Highlights include a critical bug fix for Excel Custom Task Pane development, tB's return to DevCon Vienna, and Windows Registry and System Tray sample projects from forliny.


    nolongerset.com/twinbasic-update-march-24-2025/


    The latest releases of the twinBASIC programming IDE are available at https://github.com/twinbasic/twinbasic/releases



Page 50 of 50 FirstFirst ... 4047484950

Posting Permissions

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



Click Here to Expand Forum to Full Width