-
Feb 20th, 2025, 11:40 AM
#1961
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.
-
Feb 20th, 2025, 12:02 PM
#1962
Fanatic Member
Re: TwinBasic
 Originally Posted by jdelano
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.
-
Feb 21st, 2025, 07:46 AM
#1963
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.
-
Feb 21st, 2025, 10:08 AM
#1964
Fanatic Member
Re: TwinBasic
 Originally Posted by jdelano
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.
-
Feb 21st, 2025, 10:34 AM
#1965
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.
-
Feb 25th, 2025, 09:13 AM
#1966
New Member
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?
-
Feb 25th, 2025, 09:35 AM
#1967
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.
-
Feb 25th, 2025, 11:21 AM
#1968
New Member
Re: TwinBasic
 Originally Posted by yereverluvinuncleber
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
-
Feb 25th, 2025, 11:27 AM
#1969
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.
-
Feb 25th, 2025, 02:26 PM
#1970
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.
-
Feb 25th, 2025, 05:02 PM
#1971
Re: TwinBasic
Works for me at this moment
-
Feb 26th, 2025, 01:00 AM
#1972
Re: TwinBasic
Yeah it was down for a little while but it's back.
-
Feb 26th, 2025, 06:30 AM
#1973
Re: TwinBasic
 Originally Posted by Danycop
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.
-
Feb 27th, 2025, 03:30 AM
#1974
New Member
Re: TwinBasic
 Originally Posted by yereverluvinuncleber
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.
-
Mar 5th, 2025, 12:01 PM
#1975
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
-
Mar 12th, 2025, 08:57 AM
#1976
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
-
Mar 20th, 2025, 03:07 AM
#1977
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
-
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|