How To PLAY_SOUND in Oracle Forms】的更多相关文章

Play_sound is used to play audio files in Oracle Forms, Play_Sound plays the sound object in the specified sound item.PLAY_SOUND examplesThe following plsql block you can write in when-button-pressed trigger for a push button item, when button clicke…
Get_File_Name is built-in function of Oracle Forms 6i, used to get the file name with address by browsing the file. You can browse a specific extension name file or with multiple extensions using wild cards.   In this example I am showing three diffe…
Upload Files To FTP in Oracle Forms D2k Use following procedure to upload files to Ftp.   PROCEDURE Ftp_Upload IS    outfile text_io.file_type;BEGIN    -- write a ftp script    outfile := text_io.fopen('D:\ftpsendsource.ftp', 'w');    text_io.put_lin…
A step by step tutorial for Oracle Forms 10g development. This guide is helpful for freshers in Oracle forms 10g. To download this ebook click the below button: Download Oracle Forms 10g eBook See Also:Oracle Forms Recipes - Get it from Google Playht…
To download Oracle Forms Developer 6i from Oracle click this link http://download.oracle.com/otn/nt/forms/6i_rel2_xp.zipNote.  You must have Oracle username and password to download any software from Oracle site, if not then sign-up its free.…
Convert numbers to Indian Rupees format in Oracle Forms / Reports.Create the below mention function in Oracle Forms / Reports and call it with passing a number parameter.FUNCTION INR_words( p_number In number, vFrDec varchar2 Default 'Paisa Only') RE…
Below is the example plsql unit to validate login credentials and after successful validation open a new form by passing some parameters to it, in Oracle forms 10g.Create a form for custom login. Create text items for username and password etc. and a…
Below is the example to write file on client in Oracle Forms 10g with webutil library package.Note:  Webutil library must be attached to the form.DECLAREv_dir VARCHAR2(250) := 'c:\temp';ft_tempfile CLIENT_TEXT_IO.FILE_TYPE;beginft_tempfile := CLIENT_…
Center window automatically  in Oracle Forms 6i, use the following procedure by passing window name as parameter:ExamplePROCEDURE auto_centre (pwn in varchar2) ISvw number := get_window_property(forms_mdi_window, width);vh number := get_window_proper…
Add combo list / drop down list item element at runtime in Oracle forms.SyntaxPROCEDURE ADD_LIST_ELEMENT(list_name VARCHAR2,list_index, NUMBERlist_label VARCHAR2,list_value NUMBER);ExampleDeclare  nElmntCount Number;Begin   -- First count the total l…