Where Do I Start Coding Without Using VBA?

0
6
Asked By CuriousCoder92 On

Hey everyone! I'm kind of at a loss about where to actually write code, especially since I'm moving away from VBA. I'm not really a programmer, but I'm tackling a project for work that makes me want to learn programming from the ground up instead of just relying on software tools that don't quite meet my needs.

Currently, I'm working in Excel and have dabbled in VBA, but I realize it's limiting. I want to create my own desktop or web application, but I'm confused about where to write the code for that. Is it just all about writing in a text file? Do I need development software (an IDE) for that? I've heard of languages like Java and Python, but I'm unsure about how to get started with them. What tools should I use? What are some basic steps or resources for someone who only has very basic coding experience? Any suggestions would be really appreciated as I'm feeling overwhelmed by this whole process!

5 Answers

Answered By TextTechie23 On

You can write code in any text editor, even Notepad is an option if you really want to keep it simple. However, the coding language you choose will determine the tools you need. For example, you'll need an interpreter for languages like Python or a compiler for languages like C. In the real world, most people use an Integrated Development Environment (IDE), which comes packed with useful features like syntax highlighting and debugging tools. If you're looking to begin coding, PyCharm is great for Python, while Visual Studio is a solid choice for C/C++.

Answered By ScriptMaster On

If you're looking for something straightforward, Visual Studio Code is a great IDE to start with. It's flexible, supports many languages, and is beginner-friendly. And yes, Python is also a fantastic language for beginners—it’s easy to read and has tons of libraries out there. No need to feel overwhelmed; just dive into a tutorial, and you'll get the hang of it!

Answered By TechExplorer2023 On

Most coding today happens in an IDE, so you'll want to get familiar with one. Visual Studio is a popular choice, but there are many others like Eclipse or even online editors. For learning, Python is highly recommended due to its readability and vast support. It’s easy to get started with Python, especially for automation tasks!

Answered By DevNewbie88 On

Integrated Development Environments (IDEs) are basically your best friend for coding. They provide all the tools you need to write, test, and debug your applications. If you're looking to write in Python, I recommend checking out PyCharm; for Java, IntelliJ IDEA is a popular option. For something more universal, you might try Visual Studio Code. It supports pretty much any language with the right extensions!

Answered By CodeNinja99 On

A lot of developers prefer using an IDE like Visual Studio Code or IntelliJ for coding. These IDEs offer great features that can help you compile, run, and debug your code right out of the box. As for the languages, yes, Java is a programming language you can write in any IDE, and Python is another fantastic language to start with that many beginners find friendly to learn.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.