What is the best IDE to use for RPGILE programming for AS / 400? Can you connect to 400 with Visual Studios IDE?

What's the best RPGILE IDE for AS / 400? Can you connect to 400 using Visual Studios?

I am a C # programmer who fell in love with Visual Studios and is also much younger than the people who have been working with rpg programming with the pdm editor for years.

My question is, is there a way for code in RPGILE / connect to AS / 400 in Visual Studios?

My next question is, is there another IDE I should be using? Dear god, all I need is intellisense!

Thanks in advance, and a lot of respect for the RPG programmers there.

+3


source to share


1 answer


This has a close vote because generally the tool recommendations are not relevant to the topic for. However, I will answer this because there are actually only a few IDEs available.

RDi

Rational Developer for i is the official RPG development tool, and, as of v.1.1 of the operating system, is the only RPG editor from IBM to support the full RPG specification. SEU was stabilized in v.1.1 and does not support any of the RPG or SQL features that have been added since then. Virtually every RPG program I write now throws dozens of errors in SEU, and my system is only on v7.1 (for now).

MiWorkplace

Mihael Schmidt has an inexpensive RDi alternative . For € 27.50 (roughly $ 30), you get the most commonly used RDi features, but there are a few features you'll miss. The most significant of these, in my opinion, are the sketches. However, if you're on a tight budget and need to write an RPG, or you're just learning, this is an effective IDE. There is a free version of this preconfigured for use with pub400.com .

Notepad ++



Not really an IDE, apologizing for those who love it, but Liam Allan has provided a free-format RPG plugin if you only want a quick and dirty editor that can color your code. It also has another plugin so that you can execute remote commands and parse the compilation error list.

Orion

If your source is in IFS, you can use Orion. Orion is a browser-based open source editor that was included in the 5733OPS 8 variant. It's still a little thin, but might be a competitor to Notepad ++ depending on your circumstances.

Visual Studio Code

Like Orion and Notepad ++, your source must be in IFS to use Visual Studio Code, but its popularity is growing, so I included it here. Note that this is not Visual Studio, but a browser-based editor from Microsoft. You will need to install the RPG Language Plugin from Niels Liisburg to get the RPG source highlight.

+9


source







All Articles