Can you explain ....?

sampath

New Member
Can you explain the difference of

  1. FIND & FIND FIRST
  2. FIND FIRST & FOR FIRST
  3. PRESELECT & FOR EACH

What is a HANDLE in progress what is the usage if it?

How to get two array into one array and what is array reversal

Thanks.. :):rolleyes:
 

Rob Fitzpatrick

ProgressTalk.com Sponsor
Those are oddly specific questions for someone who sounds like a beginner. Is this for your personal edification, or are you taking a test?

Anyway, start with:
 

RealHeavyDude

Well-Known Member
+1.

These sound like questions from somebody knowing nothing about the Progess ABL. The statments you mention are basic data retrieval statements. Asking what they are for is like asking in an SQL forum what the SELECT statement is for. You should consider to either take a training (which is what I would recommend you) or study the documentation that comes with the product.

As for HANDLE - this is an ABL specific pointer - comparable to memory pointers in other languages.

As for questions about arrays. The ABL does not support array constructs like, for example, Java or .NET. Instead you should make yourself familiar with the concept of TEMP-TABLES.

Heavy Regards, RealHeavyDude.
 
Top