Forums for Groups

IMPORTANT! You can read every forum, but you can only post in a forum if you are member of the 'Organic Group' that owns the forum. See groups for a complete list of Organic Groups on the Hive. Content (forums, pages, blogs, etc) on OE Hive is all organized using a module called 'Organic Groups'. Every Group has its own forum.


Adverts and Commercial Forum

This Forum is for the posting of adverts and commercial materials. This is the only Forum on the Hive where this is allowed. Posting commercial material here is currently free, as long as it is obvious to the Hive editors exactly why the commercial material is of concern to Progress users.


Book Corner discussion

Forum for the Book Corner Group. Review and recommend software industry books.


Proparse server config, 'prorefactor' directory

Jurjen, I'm working on the proparse.jar server configuration stuff.
I'm going to set it up so that the client can request the server to load a project's settings. This way, the client (like Prolint) can dump the project configuration automatically at start up time, and get the server to read that.
The server process will always require its './prorefactor' directory for reading and writing various configuration and other files.

PUB binary files directory


oehive 'Sandbox' test topic

Testing newly created topic for assignment to appropriate O.Group and email notification.


New blob api early example

I created a new repository called 'codeparse', added a directory called 'wip' for shared efforts that are work-in-process or experimental, and added a subdirectory called 'proparseclient'.

svn://oehive.org/codeparse/wip/proparseclient

For those interested in building and using the API, you should be able to run client.p in that directory, which reads the two binary files 'header.bin' and 'blob.bin'. The program 'tree2text.p' is small and reasonably easy to understand as a starting point. If you don't know which API we're talking about, see http://www.oehive.org/node/1247


smartobjects howto

Does anybody know where there's some smartobjects tutorials? I need something like the ABL handbook where it shows you how to create a very primitive app. The ABL handbook does not mention smartobjects at all.
The "ADM and smartobjects" manual has no examples. I just need a quick and dirty example to get something concrete up and running.

Shawn


PERSISTENT & SUPER procedure in practice...

"called.p"

DEF VAR vcStringa AS CHAR INIT "Questa è la stringa di inizializzazione" FORMAT "X(40)" NO-UNDO.
DEF VAR vcFrameStampa AS CHAR NO-UNDO.
DEF VAR vcFrameTitolo AS CHAR NO-UNDO.
DEF VAR i AS INT NO-UNDO.

DO i=0 TO 5
:   
    vcFrameStampa = SUBSTITUTE ("fStampa&1", i).
    vcFrameTitolo = SUBSTITUTE ("Procedura di stampa &1", i).
    
    DEFINE FRAME vcFrameStampa WITH CENTERED TITLE vcFrameTitolo.
    
    DISPLAY vcStringa LABEL "Stampa"
            i LABEL "indice"
            vcFrameTitolo FORMAT "X(40)"

Microsoft statusbar activex control customization

Hello,

I have embedded Microsoft Statusbar activex control into our GUI application. The control is inside a smart frame and so that it can be easily included and customized for a container. I am using a imagelist activex control to display images inside the statusbar. The images (BMP, GIFS,JPEG,ICOM) looks stretched inside the statubar panel. The images are 16 X 16 resolution. Did anybody experienced similar problem. Can somebody help?

Thanks
Shanker


Try to print with FRAME: i made mistake...

DEF VAR i AS INT INIT 0.
DEF VAR j AS INT INIT 0.

DEFINE FRAME fCust
       Customer.CustNum LABEL "Cust#"
       Customer.Name
       Customer.City
       SKIP(1).

DEFINE FRAME fInvo
       Invoice.Invoicenum LABEL "Invo#"
       SKIP(1).

forCust:
FOR EACH Customer NO-LOCK WITH FRAME fCust
:
    i = i + 1.
    
    forInv:
    FOR EACH Invoice
    WHERE Invoice.CustNum = Customer.CustNum
    NO-LOCK WITH FRAME fInvo
    : 
        j = j + 1. 
    END.
END.

MESSAGE "i: " i "j: "j.

character coordinates vs pixel coordinates

Why the heck does one character equal 5 pixels by 21 pixels? Characters in 8 Point Courier New font are definitely NOT 5x21 pixels. This completely throws off all forms. Is there any way to change progress to use different character to pixel conversions?. Otherwise, I have to go through all the code and convert coordinates. This will be very painful.

Help!!!

Shawn


[FIND] There are difference with this 2 syntax styles?

FIND FIRST item.

and

FIND item 1.

?!?!?!


Jasper report barcode 128 greneration and rotation

Hello,

I am using Jasper Report 1.2 and now I want to represent an alphanumeric value as barcode in my reoport and it should show verticaly. Previously I was used a font to represent barcode but that is not supporting alphabets.Is there any free fonts that do the same or any other way? Looking forward for reply from any helping hand.
Thanks in advance.

--Hani


Syndicate content