Tagged Questions

1
vote
2answers
48 views

Eclipse plug-in (OpenEdge Architect 10.2B) blocked by firewall

Yesterday I installed OpenEdge Architect 10.2B (that is Object Oriented Progress adopted to Eclipse IDE) on my Windows 7 premium platform. The installation went fine without any error messages. When ...
0
votes
1answer
24 views

How in OpenEdge ABL / Progress 4GL do I find the row id of a row that is right clicked in a broswer

How in OpenEdge ABL / Progress 4GL do I find the row id of a row that is right clicked in a browser.
0
votes
2answers
35 views

How in OpenEdge ABL / Progress 4GL do I get the RIGHT-MOUSE-CLICK trigger to perform the default left click to reposition the focus

I'm using OpenEdge ABL / Progress 4GL. I have a browser widget populated with rows. When I left click a row the row is highlighted and that row is now in focus. I want when I right click on a ...
0
votes
1answer
201 views

LIMIT Result in Progress 10.1C

Is there a way to limit the result of a SQL Query in Progress 10.1C like in MYSQL LIMIT 0, 1000? Regards
0
votes
1answer
536 views

Why does OpenEdge ODBC connection fail with error 126 in IIS but on in VS2010?

I have an ASP.net web service application that connects to a Progress OpenEdge 10.1B database via ODBC. My development machine is XP Pro and runs everything fine. I am now moving the application ...
0
votes
2answers
846 views

How to get table schema from Progress database via odbc

Oh lovely Progress.. I have a linked server set up between sql 2008 and a Progress OpenEdge 10.1b server. How do I get the table schemas?
0
votes
3answers
2k views

LIKE operator for Progress DB SQL

I'm trying to do something like this in Progress SQL (THIS IS NOT POSTGRES!) SELECT CASE WHEN code LIKE '%foo%' THEN 'Y' ELSE 'N' END as foo FROM bar However Progress does not support a ...
0
votes
1answer
481 views

Progress ABL: How to have windows open in same position on the screen as they opened last time

We currently use this logic to center every new window: ASSIGN {&WINDOW-NAME}:X = (SESSION:WIDTH-PIXELS - {&WINDOW-NAME}:WIDTH-PIXELS) / 2 {&WINDOW-NAME}:Y = ...