> ## Content Index
> Fetch the complete content index at: https://nolongerset.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# twinBASIC Update: June 18, 2023
- URL: https://nolongerset.com/twinbasic-update-june-18-2023/
- Published: 2023-06-18T17:22:17.000Z
- Updated: 2026-05-08T12:33:42.000Z
- Description: Highlights include bug fixes related to timer events, argument/property handling, and IntelliSense, plus a screenshot of a simple browser written in twinBASIC.
- Author: Mike Wolfe
- Tags: twinBASIC Weekly Update, #Import 2026-05-20 02:59

*On April 23, 2021, I helped [Wayne Phillips](twitter.com/WaynePhillipsEA/) introduce the world to [twinBASIC](https://www.twinbasic.com/) at the [Access DevCon Vienna](https://www.donkarl.com/devcon/) conference. I [boldly predicted](https://nolongerset.com/devcon-2021/) that twinBASIC (along with the Monaco editor) would replace VBA and its outdated development environment by 2025\. With that goal in mind, this weekly update is my attempt to keep the project fresh in the minds of the VBA development community.*

*Every Sunday, I will be providing updates on the status of the project, linking to new articles discussing twinBASIC, and generally trying to increase engagement with the project. If you come across items that should be included here, tweet me [@NoLongerSet](https://twitter.com/NoLongerSet) or email me at mike at nolongerset dot com.*

*Here are some links to get involved with the project:*

- **[Custom twinBASIC IDE Installation Guide](https://nolongerset.com/how-to-install-twinbasic/)* (NOTE: the twinBASIC VSCode extension is under a feature freeze until 2023)*
- *[GitHub Issue Tracker (report bugs)](https://github.com/WaynePhillipsEA/twinbasic/issues)*
- *[twinBASIC Discord Server](https://discord.com/invite/UaW9GgKKuE) ([chat about the project](https://github.com/WaynePhillipsEA/twinbasic/discussions/629))*
- *[twinBASIC/VBx LinkedIn Group](https://www.linkedin.com/groups/14132101/)*

---

## Highlights

### Bug Fixes

Most of the development in twinBASIC this week focused on bug fixes. These changes address various issues and bugs related to timer events, argument handling, property handling, and IntelliSense.

Here's a summary of the key fixes:

1. Fixed: Timer events should not fire when MsgBox/InputBox are displayed.
2. Fixed: Timer events should protect themselves against reentrancy to match VBx.
3. Fixed: Handling of ByVal inline attribute alongside named arguments.
4. Fixed: PropertyBag WriteProperty method not correctly handling comparison of Value to DefaultValue in cases where Value is an Object with a default value member.
5. Fixed: IntelliSense options were sometimes wrong from inside With blocks when using unqualified dot syntax.

## Around the Web

### Simple Browser Written in twinBASIC

As a proof-of-concept of the advancing capabilities of twinBASIC, GitHub user [cabaptista](https://github.com/cabaptista) has created a simple browser written in twinBASIC. Check out this [screenshot](https://github.com/twinbasic/twinbasic/discussions/1579#discussioncomment-6172308):

![](https://storage.ghost.io/c/eb/d7/ebd732c1-5f03-4f07-b386-5d08557e15c9/content/images/2023/06/image-38.png)

### 

## Changelog

Here are the updates from the past week. You can also find this information by visiting the GitHub [twinBASIC Releases page](https://github.com/WaynePhillipsEA/twinbasic/releases).

[Releases · WaynePhillipsEA/twinbasicContribute to WaynePhillipsEA/twinbasic development by creating an account on GitHub.![](https://github.githubassets.com/favicons/favicon.svg)GitHubWaynePhillipsEA![](https://opengraph.githubassets.com/13bf5f13278e5633e644e312c6a75cfe0baf97f01dd45660573b36f5de0ee945/WaynePhillipsEA/twinbasic)](https://github.com/WaynePhillipsEA/twinbasic/releases)

**WARNING:** The following issue is present in BETA builds 202 - 336 (the latest build as of publication):

- there are known memory leaks in these versions, so memory usage will be higher than normal

### BETA 330

- fixed: Timer events should not fire when MsgBox/InputBox are displayed \[ fafalone, discord \]
- fixed: Timer events should protect themselves against reentrancy to match VBx

### BETA 331

- fixed: handling of `ByVal` inline attribute alongside named arguments \[ kismertwise, discord \]
- fixed: PropertyBag WriteProperty method not correctly handling comparison of Value to DefaultValue in cases where Value is an Object with a default value member \[ sokinkeso, discord \]

### BETA 332

- fixed: intellisense options were sometimes wrong from inside With blocks when using unqualified dot syntax \[ fafalone, discord \]
- fixed: cached font metrics not updated when Form/PictureBox/UserControl Font property was updated \[ sokinkeso, discord \]
- fixed: ListView ColumnHeader.Width property was read-only \[ https://github.com/[/issues/1575](https://github.com/twinbasic/twinbasic/issues/1575) \]
- fixed: some GDI handle leaks in form designer (not all)

### BETA 333

- fixed: majority of GDI handle leaks in form designer / control implementations
- fixed: compiler crash in some instances involving control arrays \[ Lewis, discord \]
- fixed: some WithEvents edge cases
- fixed: reverted change to MsgBox/Timer event handling since BETA 330 that was matching VB6 IDE behaviour, not VB6-compiled behaviour \[ Krool, discord \]
- fixed: ListView.ColumnHeaders.Add was causing a circular reference, leading to ListView never being destroyed

### BETA 334

- improved: console projects now only show the console window when the debugging session is active (linked to global variables state) \[ mansellan, discord \]
- fixed: (console projects) general SetConsoleMode() API failure on the STDIN handle \[ sokinkeso, discord \]
- added: initial Controls.Add method support (for built-in controls only, common controls also available via "VB.TreeView" etc)
- added: initial Controls.Remove method support

### BETA 335

- added: support for ActiveX and UserControl controls in runtime control-arrays
- fixed: ActiveX events in control arrays came through with Index value of -1

### BETA 336

- fixed: Timer events could fire twice when Timer is inside a UserControl \[ sokinkeso, discord \]
- improved: better stability around project Save \[ sokinkeso, discord \]
- fixed: Frame/PictureBox not passing on common control notification messages \[ https://github.com/[/issues/1591](https://github.com/twinbasic/twinbasic/issues/1591) \]