Comment by hnlmorg
4 hours ago
> Even Visual Basic, a real platform that evolved over many years and gained “serious language features”, has fallen out of fashion
VB didn't fall out of fashion. Microsoft unceremoniously killed it and replaced it with VB.NET - a language nobody asked for. VB.NET has the verbosity of C# but with none of the benefits.
These days there's little incentive to learn VB because it's been dead for quarter of a century. And there's little point reviving it because anyone who wants a GUI will likely be working with web frameworks.
I did like VB, a lot. It was such a shame to see the abomination MS released with VB.NET. And that makes me all the more grateful that most languages these days are open. For example Perl 6 (now Raku) ended up taking a journey that fragmented the ecosystem, so dedicated and passionate Perl developers took on the mantel to continue the life of Perl 5
VB the ide was really good but VB the language was not. In particular it didn't support object orientation in any sensible way. While I am not crazy about object orientation in general, I think it is indispensable for UI development. I tried writing an application in Visual Basic. It was quick to start but the 5th time I had to copy the same code in yet another module, I switched to Visual C++. And anytime you needed to do something advanced with Win32, you had to resort to unnatural C like techniques in VB, while the same operation was native in Visual C++. This was 25 years ago and it was the last time I tried VB.
COM OOP is good enough, by VB 6 it was already there.
Also COM OOP is exactly what UWP and WinUI are all about.
WinRT started as the reboot, what if .NET was actually what it was originally planned for, and not a Java clone based on J++.
https://arstechnica.com/features/2012/10/windows-8-and-winrt...
However Microsoft completly botched the delivery.
You can’t really separate the IDE from the language because so much of final binary could only be expressed from the IDE. This was something VB.NET fixed but was also why VB.NET was (in my opinion) a failure. Having that complexity shifted to code (like VB.NET did) undermined the simplicity and speed of the language for prototyping.
Also VB supported OOP. It’s just classes were stored in separate files. You didn’t have a singular file for all language constructs like you do in any normal “grown up” language. Classes went in a different file with a different extension to UI events.
As for Win32 APIs in VB, I thought those worked really well. In fact the C interop in VB was far better than in many modern languages of today.
I won’t deny VB was an oddball language with some rough edges and quirks though. But I also think it was those oddball designs that made it amazing good at GUI development and prototyping. In fact still I don’t think there has been a better language for that since.
I would be very glad of a VB style IDE which would make stand-alone HTML5 (or some more up-to-date equivalent)web apps
Not exactly what you’re asking for, but the closest I’ve found (asking the same question) so far: https://www.spiderbasic.com/
Xojo might be what you want. Used to be REALBasic. They have long since reworked the compiler and it runs everywhere including Raspberry Pi and web.
I actually had a very early book on RealBASIC (back in the Windows 3.0 days) and have always regretted not following up w/ it (went w/ HyperCard, then Runtime Revolution/LiveCode).