Overblog Tous les blogs Top blogs Technologie & Science Tous les blogs Technologie & Science
Suivre ce blog Administration + Créer mon blog
MENU

This is a bunch of tips and techniques related to Oracle PL/SQL and Forms.

Publicité

Dynamic frames

Dynamic frames

Purpose Here is a Java Bean that allows handling frames at runtime. Almost everything about frames can by handled. With this single bean, you can create and handle as many frames as needed. This Bean needs at least the Sun Java plugin 1.4 What you can...

Lire la suite
Publicité

A Java bean to follow status and cancel long reports

A Java bean to follow status and cancel long reports

Purpose Here is a Java Bean from Casey Bowden to get the status of a long report and to cancel it if needed. I. Problem One: Report Status When running Oracle Forms and Reports in client/server, users knew the status of the report they were running. After...

Lire la suite

A Dynamic Menu Java Bean

A Dynamic Menu Java Bean

Purpose Here is a Java bean to dynamically handle menu options at runtime. You can dynamically add, remove, enable, disable, show and hide menus and menu options. The Java code DynamicMenu.java The implementation class of the Bean Item oracle.forms.fd.DynamicMenu...

Lire la suite

A Java Bean to print files to the local printer

A Java Bean to print files to the local printer

Purpose Here is a Java Bean from Casey Bowden to get back print features lost in Oracle Reports converting to web environment. I. Problem One : Point Of Sale (POS) clients is slow to print. After converting reports from client/server to the web environment,...

Lire la suite
Publicité

A Bean to decorate the Forms elements

A Bean to decorate the Forms elements

Purpose Here is a Java bean that allows decorating the Forms application containers. It becomes very easy to change all the fonts of a Forms application at runtime. You can set the Font Family, weight and size, foreground and background color on the following...

Lire la suite

A PJC to format parts of text

A PJC to format parts of text

Purpose Here is a PJC that allows doing some basic operations on a Text Item. You can apply styles on the selected sub-text and also view the HTML result in a browser window. It is a "light" component that does not render the HTML result itself, but has...

Lire la suite

A bean to read a POP3 server

A bean to read a POP3 server

Purpose Here is a Java bean that allows querying a POP3 server It uses the commons-net-1.4.1.jar JAR file from the Jakarta project. http://jakarta.apache.org/site/downloads/downloads_commons-net.cgi . This bean does not use all the functionnalities of...

Lire la suite