> ## 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: March 26, 2023
- URL: https://nolongerset.com/twinbasic-update-march-26-2023/
- Published: 2023-03-26T15:46:51.000Z
- Updated: 2026-05-08T12:50:52.000Z
- Description: Highlights include a New Project settings dialog and a screenshot of a sample twinBASIC project showing its existing capabilities.
- 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

### New Project / .VBP Import Options Dialog

BETA 278 introduced a dialog for changing the most significant project options from their defaults.

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

twinBASIC's New Project Options dialog box

You can hover over any of the options to see a detailed description of what they do. I've reproduced the contents of the tool tips below: 

#### Option Explicit ON

When this project option is ON, the compiler will always enter 'Option Explicit mode when compiling code, regardless of whether you have specified 'Option Explicit' at the top of each module or class.

It is highly recommended to leave this project setting ON.

#### Visual Styles

With this setting on, a manifest file will be embedded into your generated executables that causes Windows to theme the standard controls. 

It is highly recommended to leave this option ON.

#### Include Common Controls

With this option ON, the WinNativeCommonCtls package will be referenced by your project. This allows you to use controls such as TreeView, UpDown, MonthView and DTPicker.

#### DPI Awareness

With this option set to NONE, on high-DPI screens your application will be scaled by the operating system unless you manage the embedded manifest file yourself.

With this option set to SYSTEM\_DPI\_AWARE or PER\_MONITOR\_DPI\_AWARE, your application will be considered DPI-aware and NOT scaled by the operating system.

NOTE: with DPI-awareness ON, if you write code that uses Win32 API graphics calls directly, you must account for high-DPI systems in your positional calculations.

## Around the Web

### fafalone's Explorer Browser Wrapper Control

I *assume* this is related to fafalone's [ExplorerHost project](https://github.com/fafalone/ExplorerHost) that I mentioned in last week's twinBASIC Update.

Think of this as another proof-of-concept and demonstration of the burgeoning capabilities of twinBASIC. Here's [fafalone's note from Discord](https://discord.com/channels/927638153546829845/927638154192748606/1087987186986647574):

> Explorer Browser wrapper control is coming along good. Got a lot of advanced features not in the simple demo

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

Screenshot of fafalone's Explorer Browser wrapper control

### 

## 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 - 281 (the latest build as of publication):

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

### BETA 278

- improved: WebView2 control toolbox icon, big thanks to sokinkeso
- improved: opening new projects (and importing from VBPs) now shows a dialog for changing the most significant default project options
- improved: added a warning notice when opening a DLL project that registers to HKLM when not running the IDE elevated

### BETA 279

- fixed: (regression in BETA 278) saving a new project would often fail silently \[ adakordev, discord \]

### BETA 280

- fixed: settings from the new project dialog were not always persisted when saving

### BETA 281

- fixed: (regression since BETA 276) renaming/moving files inside the IDE was failing \[ fafalone, discord \]
- fixed: new project modal dialog settings were effective but the Settings file was not matching \[ fafalone, discord \]