When I build Racket (scheme) GUI application like this:
raco exe --gui gui-01.rkt
Windows taksbar displays the name of the application as "Racket GUI application". I want to change this name to something like "My GUI Program". Is this possible?

--
You received this message because you are subscribed to the Google Groups "Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to racket-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/8a775b49-8bb3-4ffb-95b4-09d43ffcc637n%40googlegroups.com.

can you check on frame% label ?
electron/rcedit solved the problem. With this solution, taskmanager's display also became "My GUI Program".
https://github.com/electron/rcedit/releases/tag/v1.1.1
[for 32bit racket] rcedit-x86.exe gui-01.exe --set-version-string FileDescription "My GUI Program"
[for 64bit racket] rcedit-x64.exe gui-01.exe --set-version-string FileDescription "My GUI Program"
--
You received this message because you are subscribed to the Google Groups "Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to racket-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/a1c215e5-6cbb-4b04-8d65-de6b54d0f0dan%40googlegroups.com.