Forms :: Put Icons On Buttons In Oracle Developer 10?

Jun 4, 2012

i want to put icons on buttons in oracle form developer 10g. and make some different style.

View 2 Replies


ADVERTISEMENT

Forms :: Icons In Buttons

Feb 23, 2011

I have Forms 11g in Unix environment.

I can't see icons in buttons. I have a custom smartbar and some custom icons on it, and it get displayed, but when it comes to buttons, nothing. Not even the default buttons that comes inside frmall.jar are displayed. What i don't understand is how do they get displayed on the smartbar and not on buttons?

As you can see, i already have the necessary changes to display icons, such as all small case, changes in formsweb.cfg, registry.dat... I get the icons to be displayed in browser. If i put them on a jar file, the jar file is downloaded as i can see in java cache, but never shows. I already tried several different GIF's, different image sizes, different button sizes, colors, names, etc.

View 2 Replies View Related

Forms :: Icons Not Showing On Buttons?

Sep 26, 2012

We are using ERP based on Oracle 10g forms, there is icons on the buttons those icons are displaying when we uses the ERP in Windows based client and browser Internet Explorer.But when we uses Opera browser we are getting ERP but icons are not displaying.

Same way when we uses Linux client machine using Mozilla Firefox there also the icons are not displaying.

View 3 Replies View Related

Forms :: Developer 9i AS Icons Disappear At Runtime?

Apr 15, 2010

I develop a form using Devloper9i AS, oracle 9i, Winxp. The problem is: I used icon button at design view ".fmb" but at run time this icon disappears in the file ".fmx" After reading some topics covered this problem in this forum; The following steps are executed:

1-In regedit I put UI_ICON = c:icon --where my gif icon file is located

2-At command prompts i type: C:>jar -cvf icons.jar c:icons Then "ICONS.JAR" file is created on D:Dev9ijdkin

3- I Copy the file "ICONS.JAR" and past into D:Dev9iforms90java

4- I modify the "FORMSWEB.CFG" as follow:

archive_jini=icons.jar,f90all_jinit.jar;
imageBase=codeBase

4- In "Registry.dat" I added the flowing line:

default.icons.iconpath= c:icons

5- I modify the "orion-web.xml" .as follow:

<virtual-directory virtual-path="/html"
real-path="D:Dev9i/tools/web90/html" />
is modified to :
<virtual-directory virtual-path="/ICONS"
real-path="C:ICONS" />

6- In the property palette for the icon item and in the Icon Filename I put just the icon name called "w_prev" Without any extension , any path...

View 34 Replies View Related

Forms :: Displaying Icons In Web

Oct 17, 2004

I have problem in displaying icons in the push button during run time. Actually from few days i m trying to display icons at run time but with out any success.

i had made a simple push button and in its properties i had made the following changes

iconic=yes
icon filename=c:tempsave
the file save.GIF is saved under c:temp directory.

i had tried all the changes in registry.dat,orion file through the doc 203846.1 from metalink. Give me sample code step to step for showing a
push button with icon during run time. Also I tried the steps mentioned in the pdf document of

[URL].....

But it did not solve my problem. My icon file name is save.GIF , I wanted to know whether save.GIF file name convention is valid or not. Give the path from where I can get the icons used for web.

View 4 Replies View Related

Forms :: Icons Not Visible In 10g DS

Jan 20, 2007

I'm new to 10g developer suite, I designed an application in 6i. Now I compiled this application in 10g DS but there is an error of global variables and also icons are not visible. It displays in designer but not at runtime in browser.

View 24 Replies View Related

Forms :: Icons In Weblogic 11g?

Dec 9, 2011

I set the path in formsweb.confg and registry.dat in my 2003 server m/c. The icons are displaying but the icons displayed is blurred and the icons are only 2kb's in size. When we view the icons in picture viewer there is no issue.

Also when i do the same settings in win xp and win7 the icons are not at all displayed

View 1 Replies View Related

Forms :: Unable To View Icons?

Feb 20, 2010

When form is run through developer icons are viewed.

when calling same form through URL enable to view icons.

View 1 Replies View Related

Forms :: Display Icons In Task Bar In Application

Apr 17, 2008

i have problems to display icons in a task bar in an application that is being migrated from oracle 4.5 to 10g in windows xp.The task bar shows all the icons in the original aplication but when the application runs in 10g, just some of the icons are shown, not all of them.All the icons are in the same file direction "C:fileiconos" and they're all gif files.

I have added the file locatoin to the configuration of the registry.dat,forms, in the registry of the computer, in the orion and orion-web files and in the default file following advice given to other threads here but the problem stays in the application.I have added also the variables to the registry of the coputer for UI_ICON and UI_ICON_EXTENSION with their values.

View 16 Replies View Related

Forms :: Icons Not Appearing In 10g After Webutil Configuration On OAS

Mar 5, 2012

I want to open word document on client machine and to do this I have configured webutil and Its working fine. before configure the webutil icons are appearing on forms and after webutil icons are disappeared I have found that when I comment

baseHTMLjinitiator=webutiljpi.htm

icons appears but word document not open and the following error shows

oracle.forms.webutil.ole. Ole functions beans not found
CLIENT_OLE2.Create_Obj will not work.

View 6 Replies View Related

Forms :: Vertical Text On Buttons

Jan 5, 2011

Refresh my memory if there's a way to display vertical text on buttons in forms?

e.g. v
e
r
t
i
c
a
l

View 3 Replies View Related

Forms :: Cannot Display NEW GIF Files As Icon On Buttons

Feb 23, 2011

I already have and use .gif files for icons on various buttons in my forms. I need to use a different .gif file to create a new icon. When I enter the file name of the new .gif is not displayed on the button. If I reference an old and working .gif. The .gif appears on the button. What rules if any, must I observe when creating/using .gif files as icons for buttons?

Does the .gif file have to be of a special type? If so, what will I need to do?

View 1 Replies View Related

Forms :: Order By Parameter Radio Buttons

Apr 29, 2012

i have 2 files rep.rdf and rep.fmb

i made parameters for userid and dept its working fine but

how can i make order by parameter using radio buttons

what i add in report and form ?

View 2 Replies View Related

Forms :: How To Use Multiple Buttons To Sort Columns

May 6, 2010

I am maintenancing a form which I have to add buttons as headers that will sort each column's data either in desc or asc order when the user click each button. How is this done? I need to know what built-in function that will closely do this or cod.

View 19 Replies View Related

Forms :: Dynamic Access To Radio Buttons?

Feb 18, 2010

For passing my apprenticeship I am developing part of an application to change the language of the application dynamically.

My first idea looks like this:

In each form I add a package that works like this:

block := first block
loop
..item := first item
..loop
....set item label or prompt to new language
....exit when item = last item
....item := next item
..end loop

..exit when block = last block
..block := next block
end loop

That far everything is fine. With the get_form_property I can access the first and last block and always get the next block with the get_block_property. Same is true for the items by get_block_property for the first and last item and the get_item_property for the next item. By this way I can dynamically chance all item prompts and labels without knowing the name or the number of blocks and items. But what about radio groups? Is there any possibility (and if yes, which?) to get the first, last and next radio button of a radio group in the same way?

View 1 Replies View Related

Forms :: Create Iconic Buttons In 9iDS?

Feb 26, 2010

Regarding The Creation of ICONIC Buttons in FORMS 9iDS, I Have Tried All The Methods But In vain.

View 1 Replies View Related

Forms :: Tree Node Icons And Where Icon Files Are Located?

Mar 21, 2012

Tree node icons. I created a table named TEMP_USER_MENU and contains the following structure

USER_IDVARCHAR2(15)N
MENU_IDNUMBER(15)N
MENU_DESCVARCHAR2(150)N
FILE_NAMEVARCHAR2(100)N

[code]...

Now all i wanted is to change each node icon. This query just make the parent nodes icon to OPEN folder like icon and the leaf node to FILE. You can see the decode query up there. It just chose the icons from the File_Name field when it founds 0 then it shows it's a parent node it makes it icon to OPEN else it make it to NEW.

Fist thing i want to know that from where the form builder is fetching these icons? i.e. from which path and what format it looks like a .png file ? .ico or a .jpeg file. I have searched a lot online but all in vain.

Second thing if i want to add unique icons in my menu tree on each node. Is there any possibility ? if yes. Then where should i keep my icons files and in which format?

View 4 Replies View Related

Forms :: How To Add Animated Buttons And Analog Clock In Form

Oct 24, 2013

I found one video on youtube , in that that person has made animated buttons and added analog clocks inside that form but he didn't tell how did he do that , so i am attaching gif file because video file is not allowed , this file will give you whole idea what is actually i am saying.

I just want to to know how to do this , I want coding part for animated buttons and for analog clock only, rest i can do on my own . And this video made me think one thing can we add marque in text in oracle also, as we do in HTML to move text. If it is possible then how can we do that.

View 7 Replies View Related

Forms :: SUBMIT Buttons Which Is Disabled / Gets Enabled Automatically

Apr 3, 2012

I have a scroll bar in my form. When i scroll the bar, one of SUBMIT buttons which is disabled gets enabled automatically. Do we have any triggers on scroll bar where i can disable the button again.

View 4 Replies View Related

Forms :: Radio Buttons Don't Work In ENTER-QUERY

Mar 11, 2010

I have a query form where I am attempting to add radio buttons for the user to specify if they want to see Active, Expired, or Both vendors. The existing form is a multirow database block and a single-row detail database block. Users query in the multirow block. I created a QRY_CONTROL non-database block with the radio group and a couple other variables. When they select a radio button, the WHEN-RADIO-CHANGED changes the default block's where clause.

My problem is that the radio buttons cannot be changed in ENTER-QUERY mode. If they cancel the query, the buttons work as expected. I put in a couple messages and the trigger isn't even firing, so I ruled out a code problem I think.I checked to make sure that the group properties are Enabled=true, mouse_navigable=true, query_allowed=true.

View 2 Replies View Related

Forms :: Connecting Developer 2000 Forms To Oracle 9i

Jun 24, 2010

we have these oracle developer 2000 forms (in .fmx format) in a server and the data of these forms in another server.... the server with the data is very old and is very slow...so we decided to relocate the database(oracle 9i) to a new server..... also, we move the developer 2000 forms from the old server to another server which will serve as the front end to the new data server. how to make the developer 2000 forms on the new front end server to point to the new database on the new data server. how the forms find the data, where this "connection string" is for developer 2000 forms.

View 1 Replies View Related

Forms :: Java In Oracle Developer 10g R2

May 11, 2010

I am using oracle developer 10g R2. Now i would like to create a java(jar) function or any other type then would like to add this jar file into my oracle form with a button and when i run this and click on this button then display the message from java function.

View 1 Replies View Related

Forms :: Oracle Developer Suite 11g

Feb 17, 2010

I just upgraded our server to Oracle Fusion Middleware 11g with Forms and Reports and now I want to update the developers workstation too.

They have Oracle Developer Suite 10g R1 for the moment. The last version of Oracle Developer Suite is 10g R2 and I don't see anything for 11g. All I can find is that it's now in Fusion Middleware 11g and JDeveloper... But, from what I can see, JDeveloper is for Java development, not for Forms/Reports development.

So, do I need to use Oracle Developer Suite 10g R2 or is there a new version of it?

View 4 Replies View Related

Forms :: Oracle Developer Suite 10g?

Jul 10, 2012

FRM: 10142 The HTTP listener is not running on <computer Name> at port 8889.

How to Solve these Error. When I searching this Problem I found OC4j Instances Startind must. How to start OC4j .

View 1 Replies View Related

Forms :: Oracle Developer 6 Download

May 2, 2011

My company has acquired a technology that was written in Oracle Forms 6-8 and am looking to first compile and maintain and then upgrade to either 11g or another platform. The older versions of Oracle Development cannot be downloaded from Oracle's site. Will Oracle provide the link if asked?

View 5 Replies View Related

Forms :: Download Patch 17 For Oracle Developer 6i

May 20, 2005

i want to download the patch 17 for oracle developer 6i for. any link that i can download this patch from it?

View 5 Replies View Related

Forms :: Oracle 10g Developer - Set Item Property

Jun 27, 2011

i am running oracle 10g developer release2. i want to set item property false/true in response to a specific action, like disabling text item when check box or radio button pressed.

View 1 Replies View Related

Forms :: Oracle 10g Developer Suite Installation?

Mar 11, 2010

I am trying to install Oracle 10g Developer suite.i am trying to install oracle forms & reports.have downloaded two zip files

ds_windows_x86_101202_disk1,
ds_windows_x86_101202_disk2.

i am in middle of the installation process. installor is not recognising the second one.

i gave the path to the second file. I tried from the disk by writing the file to the disk. but of no use.how do i complete this installation process.

Unable to find the product files specified by the disk labled 'OracleDEVsuite'. Unable to continue installation , please check the value specified in variable FROM_CD_LABEL matches with the value in file disk.label or check if the disk is accessable.

i havn't find any location or relevent info in ht edisk.label file.

View 1 Replies View Related

Forms :: How To Call Dll File In Oracle Developer 10g Or 6i

Aug 19, 2010

How to call dll file in oracle developer 10g or 6i form

View 1 Replies View Related

Forms :: Using Developer 2000 Application With Oracle 9i DB

Jan 18, 2010

I am using Developer 2000 Application with Oracle 9i DB(32-bit on Windows) at backend. Now I install a new server with 10g(64-bit on Linux) and load all the data into it. Some of the forms and reports are hanging while it runs against 9i well.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved