←back to thread

377 points porterde | 8 comments | | HN request time: 0.642s | source | bottom
Show context
wiseowise ◴[] No.42142078[source]
Still don't understand how we went from this to modern GUI toolkits.

It looks and works so intuitively.

replies(14): >>42142147 #>>42142252 #>>42142509 #>>42142582 #>>42142873 #>>42143270 #>>42143473 #>>42145120 #>>42145467 #>>42146571 #>>42147144 #>>42147616 #>>42148647 #>>42155384 #
1. qingcharles ◴[] No.42142582[source]
Every version of Visual Studio since this has the same builder. I use this builder every day to build little apps for myself. It is practically 100% identical in the new version of Visual Studio 2022 that came out yesterday.

In fact, it's better now because it's easier to line things up and change their properties etc, but the interface is the same. It has literally not changed in 25 years.

Here, I booted VS2022 and made this app in under 60 seconds:

https://imgur.com/a/qHOCasJ

replies(3): >>42143199 #>>42144850 #>>42147863 #
2. pests ◴[] No.42143199[source]
The tools haven't changed, we have.
3. wiseowise ◴[] No.42144850[source]
That’s Windows only.
replies(3): >>42144963 #>>42148301 #>>42155038 #
4. jeroenhd ◴[] No.42144963[source]
Qt has a very powerful GUI editor that also works quite well. Using QML and Python it's not hard to create a cross platform app. Distributing may be a pain though.

Then there's Gambas on Linux (though tbat requires WSL2 or Cygwin to work on Windows). Gambas does almost everything VB6 does using an obviously copued GUI and language.

replies(1): >>42145753 #
5. wiseowise ◴[] No.42145753{3}[source]
That’s not available on Web. Also relying on anything C++ is huge PITA (I’m aware of JS and QML).
6. shortrounddev2 ◴[] No.42147863[source]
I thought vs2022 deprecated the visual builder for some ui frameworks
7. ◴[] No.42148301[source]
8. tonyedgecombe ◴[] No.42155038[source]
In general tools written for a single platform are better than their cross platform alternatives.