What is the minimum version of progress

I've just caught myself writing some code and realized that this was 10.1C specific.

METHOD PUBLIC LOGICAL LoadFiles (p_Header AS CHAR,p_Data AS CHAR):
blobutilities:LoadBlobFromFile(p_Header,HeaderBlob).
blobutilities:LoadBlobFromFile(p_Data,DataBlob).

RETURN YES.

CATCH e AS Progress.Lang.Error :
SET-SIZE(HeaderBlob) = 0.
SET-SIZE(DataBlob) = 0.
DELETE OBJECT e.
RETURN NO.
END CATCH.

END METHOD.

what is the minimum requirement for the new class-based proparse API ?


Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
john's picture

Re: What is the minimum version of progress

That's Jurjen's call. For the work you and I will be doing on your project, we are free to use 10.1C. For the common (possibly lower level) part of the API, Jurjen might want 10.1B or perhaps even earlier.


jurjen's picture

re: what is the minimum version of progress

My call!? Jeez.
I agree that 10.1C is the minimum version. It would seem to me that every 10.1 developer is on 10.1C now, or has no good reason not to upgrade to 10.1C. But I really don't know.


Excellent! 10.1C it is.

Excellent! 10.1C it is.