Blogs1 - 10 of 46 recent posts for tag:openedge
19
Jun
2009
Contracts And Set-Up Fees: How You Can Profit From The SaaS Business Model?  

20 days ago by The OpenEdge Team

This is the last SaaS Podcast of this three part series, please see listed podcast in this blog:

The Progress Guys - blogs.progress.com/openedge · 1 reference

16
Jun
2009
Opening Internet Explorer via Progress  

23 days ago by sl4v3r

This tip is for curious like me… lol How to open IE via progress… only for GUI. DEFINE VARIABLE chWeb AS COM-HANDLE NO-UNDO. DEFINE VARIABLE chWebAppl AS COM-HANDLE NO-UNDO. CREATE “InternetExplorer.Application.1″ chWeb. ASSIGN chWebAppl = chWeb:APPLICATION chWebAppl:VISIBLE = TRUE. chWebAppl:Naviga ...

sl4v3r - sl4v3r.wordpress.com

Generating a XML from prodataset  

23 days ago by sl4v3r

It’s very simple generate a XML in Progress ABL. In my opinion with PRODATASET is the easier way. This is a sample how to generate a XML with prodataset (just five lines of code). DEFINE TEMP-TABLE tt-mytable LIKE MYTABLE. DEFINE DATA-SOURCE srcMytable FOR MYTABLE. DEFINE DATASET dsMytable FOR tt-my ...

sl4v3r - sl4v3r.wordpress.com

25
May
2009
How to verify if a row is locked  

45 days ago by sl4v3r

It’s very common lock and unlock rows in Progress. BTW… it happens all the time. So… is very common check if a row is locked. Let’s pratice… Locking a row FOR EACH MYTABLE WHERE MYTABLE.cod = 1 EXCLUSIVE-LOCK: UPDATE MYTABLE.desc. END. Checking if that row is locked FIND FIRST MYTABLE WHERE MYTABLE. ...

sl4v3r - sl4v3r.wordpress.com

Using Return-Value in internal procedures  

45 days ago by sl4v3r

Hi, This post is about another function… Return-Value. It’s very useful and quite simple to use. Function – source ABL HandBook The RETURN-VALUE function provides the value returned by the most recently executed RETURN statement. Sample RUN piTest(INPUT 5 ,INPUT 6). IF RETURN-VALUE “” THEN MESSAG ...

sl4v3r - sl4v3r.wordpress.com

Program-Name function in Progress ABL  

45 days ago by sl4v3r

Hi all, Here I’m… this post is about Program-Namme function in Progress ABL. It returns the name of the calling program. Let’s pratice… This is the code of procedure MyProc1.p. run MyProc2.p. The code of procedure MyProc2.p. message PROGRAM-NAME(1) view-as alert-box. /* MyProc2.p */ message PROGRAM- ...

sl4v3r - sl4v3r.wordpress.com

20
May
2009
SaaS vs Traditional On-Premise Implementations  

50 days ago by The OpenEdge Team

Progress Software kicks off a three part Q&A podcast series with Colleen Smith, SaaS expert, to address the most frequently asked questions by our application partners as they consider moving their software applications to an On Demand SaaS offering.

The Progress Guys - blogs.progress.com/openedge · 1 reference

11
May
2009
I didn’t left the blog  

59 days ago by sl4v3r

Hi all, Long time I don’t post nothing here, I was only on twitter @sl4v3r. For your information, I didn’t left the blog. Nowadays I’m in SOA and OpenEdge projects, I’m writing about SOA… soon I’ll post many of Java Service Types. Next week I’ll come back to posting about SQL… maybe three texts. Tha ...

sl4v3r - sl4v3r.wordpress.com

OpenEdge Tips  

59 days ago by sl4v3r

Forwarded from peg… Here is your chance to share your OpenEdge expertise with the world! Be world famous for 60 seconds! Gus and John are collecting tips from the OpenEdge community to be included a talk entitled “60 Tips in 60 Minutes” which will be presented at BravePoint’s June 11-12 Virtual Inte ...

sl4v3r - sl4v3r.wordpress.com

Previous12345