This is a bunch of tips and techniques related to Oracle PL/SQL and Forms.
Purpose This is a Java Bean that allows to add buttons on the current Forms canvas at runtime. The Java code Get the source code here Forms configuration . Copy the additem.jar file in the /forms/java directory . Edit the /forms/server/formsweb.cfg file...
Lire la suite
Purpose This is a JavaBean component that allows to edit a HTML styled text field. You can use the Ctrl+B, Ctrl+I and Ctrl+U keys to toggle some simple attributes like Bold, Italic and Underline. The java code Get the source code here Forms configuration...
Lire la suite
Purpose Here is a (very) simple HTML browser. This JavaBean component allows to browse some simple HTML pages inside the Oracle Forms frame. It may be a good way to browse into local documents, like documentation html pages. You can click on the hyperlinks...
Lire la suite
Purpose Here is a Java Bean component to read the Forms applet parameters The java code Get the source code here Forms configuration Copy the appletproperties.jar file in the /forms/java directory Edit the /forms/server/formsweb.cfg file to add the jar...
Lire la suite
Purpose This is a Javabean component that displays a JTable inside/outside of a Forms module. It allows saving the data modified through the JTable into the database. (A special version - fjtable16.jar - permits to sort the JTable on any column, if you...
Lire la suite
Purpose This is a Javabean component that allows to intercept each key typed in a text field Then, there is no need to use a Forms timer to intercept each key typed. The java code Get the Java code here Forms configuration . Copy the keytyped.jar file...
Lire la suite
Purpose This is a Javabean component that allows to replace the internal Oracle Forms’ timer The java code package oracle.forms.demo; import oracle.forms.handler.IHandler; import oracle.forms.ui.CustomEvent; import oracle.forms.properties.ID; import oracle.forms.ui.VBean;...
Lire la suite
Purpose This bean allows to display buttons with a html content. The content can be text or image. On the screenshot below, we can see a button with an image that comes from an internet url () The java code package oracle.forms.fd;...
Purpose When you want to load images from the client machine to the database, you would like to choose the right image file with a preview of each image. This is a Javabean component that allows to display a JfileChooser dialog box with image preview....
Lire la suite
Purpose This bean allows to display a Jslider component in your Forms application. The java code package oracle.forms.fd; import java.awt.*; import java.awt.event.*; import java.util.StringTokenizer; import javax.swing.JSlider; import javax.swing.event.ChangeEvent;...
Lire la suite