Hi everyone
I would like to finally start using a more full-featured GUI IDE for developing QB64 programs.
For one thing I've been doing a lot of coding with user defined types,
and would like IntelliSense when using those variables.
For example if we have
Main
MyVar.widget.
name = "gimble" 'etc...
when we're editing our code inside a scope where a UDT variable is declared,
when we type the variable's name followed by a ".",
at that point the editor should provide a dropdown of the members of that type.
If we choose a member that is also a UDT, when we type ".",
the editor should provide a sub-dropdown for the child members, etc.
I would also want to be able to press F5 to compile & run my program, just like in the QB64 editor.
A nice to have would be the ability to set breakpoints and step through code
with F8 for line-by-line or F5 for continue to next breakpoint (like in Visual Studio or VBA).
Can anyone recommend a good free Windows editor or IDE capable of this,
and explain how to configure it to do the above with QB64?
I am kind of a dummy when it comes to setting that stuff up.
In the past I have used Visual Studio - not much recently but I know the community edition is free,
and there is Visual Studio Code, which I _think_ can be configured to work with a compiler/debugger?
(Not sure.)
I use Notepad++ as a text editor, not sure if it can be configured to compile/debug?
I would probably like to stick to those since I trust those apps, but I would be open to other suggestions.
Any help or advice would be much appreciated... Thanks.