How I Use VSCode to Code for B4X Platform - A Productivity Boost

jroriz

Active Member
Licensed User
Longtime User
Hi everyone! I’d like to share a setup I’ve been using to code with the B4X platform while leveraging the power of VSCode for editing. This approach combines the best of both worlds: B4X IDE for project management and VSCode for coding efficiency.

My Setup:

1. Create the project in B4X IDE and keep the IDE open. This is essential for compiling and running the code.
2. Open the project folder in VSCode and use it exclusively for coding.

With this setup, I make changes in VSCode, save the file, and see the updates reflected in the B4X IDE. However, the update isn’t always instant—to ensure changes sync correctly, click back into the B4X IDE and wait for it to refresh before running your code. Otherwise, you risk losing any recent edits.

Note: Everything except coding should still be done in the B4X IDE, such as creating pages, modules, and classes; adding libraries, files, and layouts; and managing other project settings. VSCode is used strictly for writing and editing code.

Key Benefits of Using VSCode:

- Text Highlighting that improves readability and organization.
- Git/GitHub Integration for version control and collaboration.
- Code Assistant: I use Codeium, which provides AI-powered code suggestions, helping me prototype ideas more quickly.

Since I started working this way, my productivity has gone up significantly. Let me know if you try this approach — I'd love to hear your experiences!


1730638926828.png


1730638969244.png


1730639018249.png
 

LucaMs

Expert
Licensed User
Longtime User
I don't know how efficient (and error-free) that Codeium is, which I don't know (thanks for this information) but the B4* IDE is quite useful, you can't do without it, its "suggestions" are indispensable (not to mention that for some time now it also allows you to insert your own snippets, although my tool lmSnippetManager is incredibly magnificent and indispensable 😂 )
 

jroriz

Active Member
Licensed User
Longtime User
I don't know how efficient (and error-free) that Codeium is, which I don't know (thanks for this information) but the B4* IDE is quite useful, you can't do without it, its "suggestions" are indispensable (not to mention that for some time now it also allows you to insert your own snippets, although my tool lmSnippetManager is incredibly magnificent and indispensable 😂 )
Hey! You’re right—Codeium (and other copilots like GitHub Copilot) aren’t always 100% accurate, but they make you incredibly productive. They often anticipate what you need to code next and can even generate code from comments, which is a huge time-saver.

You should definitely give Codeium a shot! It’s free, and I think you’ll be surprised at how helpful it can be.
 

Alexander Stolte

Expert
Licensed User
Longtime User
Key Benefits of Using VSCode:

- Text Highlighting that improves readability and organization.
- Git/GitHub Integration for version control and collaboration.
- Code Assistant: I use Codeium, which provides AI-powered code suggestions, helping me prototype ideas more quickly.
and where is the intellisense?
 

aeric

Expert
Licensed User
Longtime User
If you find it useful then just go ahead.

I do use VScode together with B4X IDEs but only for editing files that contains no programming language, such as config file, JSON, HTML, CSS and JavaScript.
 

jroriz

Active Member
Licensed User
Longtime User
The main benefits are the ease of using Git/GitHub and the integration of artificial intelligence (in my case, Codeium) as a coding assistant. So, it's a mix of an IDE with VSCode.
 

LucaMs

Expert
Licensed User
Longtime User
B4X intellisense is indispensable.
Not only that, also its semi-automatic event generator.

Trying to use AI tools can be useful in some cases, but there is no need to do it in VSCode, which is too limited compared to the B4X IDEs Editor.

Version control is useful, but just to have that is not worth using VSCode.
 

AnandGupta

Expert
Licensed User
Longtime User
It is personal choice of text editing and will always be.
No two programmers think same and edit same, as per my experience of handling junior programmers code for our company app.

@jroriz just showed what he found useful, as per him, and no other programmer need to follow if not useful to them, but in no case it should be treated as silly or useless.

I use UltraEdit along with B4X ide and have wished to open the .bas file from ide itself as like images.
UltraEdit has features of macro and scripts etc. which make me develop faster, but it may not be same of other programmers.

Thanks @jroriz for the suggestion of Vscode. Looking forward to try Codeium too, along with ChatGpt I use.
 

AnandGupta

Expert
Licensed User
Longtime User
Has anyone done this?
Found messages only looking for shortfall , knowing very well that vscode != b4x ide, so yes I felt so.
Maybe I am wrong but we must welcome other options than B4X ide if some one finds useful.

Masters here have use command line instead of ide, I have read, so they are happy with their text editors I see.
 

jroriz

Active Member
Licensed User
Longtime User
Thank you to everyone participating. The goal here, as @AnandGupta mentioned, is to share my experience with you all.

One of VSCode's strongest points is its extensions, and one that has significantly boosted my productivity is AI-ASSISTED PROGRAMMING. There are several extensions and AI tools available for this purpose, and I chose Codeium.

I’m not talking about simple IntelliSense; I mean a tool that actually WRITES code for you. Codeium generates entire code blocks, like a FOR loop or a TRY CAST. It not only predicts what to code next with impressive accuracy but can also comment, document, and explain code.

Of course, the IDE itself remains essential, but VSCode’s code completion takes us to another level.

Go ahead and try it out. The reality is that anyone not using AI to assist with coding is losing a LOT of time.
 

LucaMs

Expert
Licensed User
Longtime User
Thank you to everyone participating. The goal here, as @AnandGupta mentioned, is to share my experience with you all.

One of VSCode's strongest points is its extensions, and one that has significantly boosted my productivity is AI-ASSISTED PROGRAMMING. There are several extensions and AI tools available for this purpose, and I chose Codeium.

I’m not talking about simple IntelliSense; I mean a tool that actually WRITES code for you. Codeium generates entire code blocks, like a FOR loop or a TRY CAST. It not only predicts what to code next with impressive accuracy but can also comment, document, and explain code.

Of course, the IDE itself remains essential, but VSCode’s code completion takes us to another level.

Go ahead and try it out. The reality is that anyone not using AI to assist with coding is losing a LOT of time.
I'm pretty sure we can get the best out of it using B4X IDEs, and sometimes it's just a matter of opening a browser (always open on B4X.com) and trying to ask ChatGPT.
 

AnandGupta

Expert
Licensed User
Longtime User
Thanks @jroriz for the Codeium lead.
I found on it webpage that it supports VS too as extension.
Since I am building new app in C# and I have zero knowledge / experience in c# I am using Chatgpt as my guidance.
The Codeium extension will help me a lot in VS ide itself (though MS already have Git+Co pilot, I prefer not)
 
Top