> ## 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: April 30, 2023
- URL: https://nolongerset.com/twinbasic-update-april-30-2023/
- Published: 2023-04-30T18:33:14.000Z
- Updated: 2026-05-08T12:50:12.000Z
- Description: Highlights include twinBASIC's annual DevCon Vienna appearance and fafalone's ucExplorer control running in 64-bit MS Access.
- 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

### As Expected, Another Quiet Week

As a reminder, on April 23, [Wayne announced](https://discord.com/channels/927638153546829845/927638154192748606/1099615597488259104) that he needed to take a brief break on twinBASIC to attend to his actual full-time job (still hard to imagine twinBASIC being a "side" project, though in reality I think it's more of a second full-time job):

> Just a quick update my friends: it looks like this coming week will be the last "catch up" week, and then I'll be able to focus back onto twinBASIC. Normal service will resume in May :). Thanks for bearing with me.

### 

## Around the Web

### twinBASIC Makes its Annual DevCon Vienna Appearance

On Thursday, April 27, I gave my third talk in as many years on twinBASIC at DevCon Vienna, the largest English-speaking Microsoft Access conference in the world. A brief summary of the talk is available as part of my [Day One conference recap](https://nolongerset.com/devcon-vienna-2023-recap-1/#twinbasic-update). I plan to write a more in-depth article on the talk in the near future.

### ucExplorer Running in 64-bit MS Access

fafalone's Windows Explorer-inspired ActiveX control–[ucExplorer](https://github.com/fafalone/ucExplorer)–is now working in 64-bit Microsoft Access. 

Here's [fafalone in Discord](https://discord.com/channels/927638153546829845/927638154192748606/1099921518630293606):

> Well this is exciting, ucExplorer working well in 64bit MS Access. Looks like I need to correct a likely dpi-related sizing bug making the scroll bars not show, but the commands and selection change event (and passing the selected paths) are all working.  
>  
> This is the current version in the GitHub, if anyone wanted to play around with it:

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

### Make Return Legal in Subs?

For the past few weeks, there has been an extended conversation taking place in GitHub around what support twinBASIC should have–if any–for allowing the use of the `Return` keyword in `Sub`s that do not contain a `GoSub`. As a reminder, [twinBASIC includes support](https://nolongerset.com/new-syntax-in-twinbasic-part-2/#return-syntax-for-functions) for the use of `Return` in a `Function` to return a value to the calling code, rather than needing to rely on the awkward VBx convention of assigning a value to a variable with the same name as the function.

Ben Clothier first proposed this change back on [October 20, 2021](https://github.com/twinbasic/lang-design/issues/38):

> **Describe the bug**  
> Trying to Return from a Sub raises a "internal error"
> 
> **To Reproduce**  
> Create the code:
> 
> ```
> Public Sub Duh()
>    Return
> End Sub
> 
> ```
> 
> It will highlight Return as an error.
> 
> **Expected behavior**  
> No error. It should be legal to return. Had I put in something to return (e.g. Return 1 or Return "foo"), then it's appropriate to show an error since it's a Sub.
> 
> BTW, I prefer this over Exit Sub because this avoids the need to change the code should it change from Sub to Function (or vice versa).

Last week, [Ben proposed](https://github.com/twinbasic/lang-design/issues/38#issuecomment-1518773753) a slightly modified syntax:

```vba
Private Sub Foo()
  Return Default
End Sub

Private Function Bar() As Long
  Return Default ' Returns 0
End Function

Private Function Fizz() As String
  Return Default 'Returns vbNullString
End Function

Private Function Buzz() As Variant
  Return Default 'Returns vbEmpty
End Function
```

As the tentative July 3rd release date for v1.0 quickly approaches, the time to add these sorts of language design changes *without incurring significant cost* is coming to a close. If you have thoughts on the topic, be sure to drop by the Github issue and make your case.

### 

## 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)

*No changes this week.*