Tagged Questions

A programming language with a specific domain intended, such as business or science, in which the basic units are of a higher abstraction or power.

learn more… | top users | synonyms

2
votes
2answers
189 views

What is the difference between 4GL and DSL?

What is the difference between 4GL and DSL? Both seem to target a specific domain, but is it safe to say that 4GL is business oriented, while DSLs target any possible domain?
2
votes
3answers
761 views

Where to go after Informix 4GL?

We have a large homegrown ERP system written in Informix 4GL. Currently we are running on old Sun hardware, Solaris 8, and a ten year old version of 4GL and Informix. We need to move on, and one ...
1
vote
1answer
93 views

Variable variables in Progress 4GL

Is there a way to dynamically reference a variable? Apparently value() does not work on a variable reference. def var export-columns as char extent. def var i as int. def var my-columns as char ...
1
vote
3answers
270 views

Getting first 100 records from the table in Progress OpenEdge database (e.g. SELECT TOP 100..)

How can I get a limited number of records from the table in Progress OpenEdge database? Something like in SQL: SELECT TOP 100 * FROM MyTable The only ugly solution I can find is looping through ...
1
vote
0answers
139 views

similar software to genexus [closed]

do you know some software similar to genexus http://www.genexus.com/ ?
1
vote
1answer
233 views

Can a Progress Client & ODBC Client access a Personal database at the same time?

Working on Progress 9.1E on a Windows box. We've got a standard 4GL GUI application up and running which connects to a series of personal databases running on the same box. It's sort of like a big ...
1
vote
1answer
346 views

Pretty Print for (Informix-)4gl code

i'm searching for a pretty print program (script, code, whatever) for Informix-4GL sources. Do you know any ? Than you, Peter.
0
votes
0answers
51 views

WiMax/4G on Android API (2.3.3)

I need to create a program that would turn on 4G/WiMax (On an Evo 4G) off or on (based on current state). I was digging around the API and noticed there is not a lot of mentioning of WiMax or 4G. I ...
0
votes
1answer
78 views

Formatting not working in 4gl [ USING clause ]

I was trying to format the output variable as follows: Scenario 1: LET msg = "Roopesh Majeti here " Empno Using "&&&&&" Call Logmsg(msg) In this scenario, the empno ...
0
votes
1answer
345 views

How can I learn the Apex language?

I bid for a freelance gig earlier, coding in the Apex language, used for the Force.com CRM platform. It looks like an interesting language to learn and code, but it also looks expensive. Is there ...
0
votes
1answer
400 views

What are the main competitors to Servoy?

Our company uses Servoy for rapid application development. It is a 4GL environment, that can target web-applications running in Tomcat as well as Java applications, all from the same program. While ...
0
votes
4answers
363 views

Is there any demand for 4GL?

what can i do with 4GL that i cant do with VB? what industries are seeking for 4GL programmers?
0
votes
4answers
644 views

Progress Database 4GL

Does anyone know where I can get some samples/resources on 4GL language for Progress Database OTHER THAN THE PROGRESS DATABASE WEBSITE? Thanks
0
votes
2answers
468 views

Get notified that MS Excel file is no longer used in Progress 4GL (ABL)

There is a GUI ADM2 Progress v9 application using AppServer. It needs to give users an ability to view MS Excel files stored on the AppServer. So far it: Pulls .xls file from AppServer to a local ...