Object libaries forms 5

hello,
I have a problem with object libraries in forms 5. I changed the directory of my fmb and since then when I open a fmb it give me the error frm-18108.
For example:
My old directory was c:\work. Than I changed it into c:\v1.0. But now when I open a fmb it says that he cant find the object in c:\work
I have changed the forms50_path into the new path.
thank you

Hi,
Facing a similar this problem for the whole day, i finaly found a workaround: create a shortcut for Forms Builder and set the "start in:" directory to the location of your forms.
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by pascal:
hello,
I have a problem with object libraries in forms 5. I changed the directory of my fmb and since then when I open a fmb it give me the error frm-18108.
For example:
My old directory was c:\work. Than I changed it into c:\v1.0. But now when I open a fmb it says that he cant find the object in c:\work
I have changed the forms50_path into the new path.
thank you<HR></BLOCKQUOTE>
null

Similar Messages

  • Calendar object in Forms 9i

    A number of difficulties using Calendars in forms 9i.
    1). I can't drag/drop from the Standards object library to the forms module. The cursor remains as a cirlce with a diagonal through it.
    2). Can't find Calendar.PLL ; has this been renamed in release 9i ? All I can find is OFGCALL.PLL .

    I use OFGCALL.PLL in Forms6i. It comes with Oracle Designer. In a Key-Listval trigger of item just put:
    BEGIN
    display_calendar;
    END;
    Also you have to put to your form:
    canvases - CALENDAR, CALENDAR_TIME
    window - CALENDAR
    visual attributes - CALENDAR_SELECTED,
    CALENDAR_SELECTED_TODAY,CALENDAR_CURR,CALENDAR_CURR_TODAY
    CALENDAR_OTHER,CALENDAR_OTHER_TODAY,CALENDAR_CURR_DISABLED,
    CALENDAR_CURR_DISABLED_TODAY,CALENDAR_OTHER_DISABLED,
    CALENDAR_OTHER_DISABLED_TODAY
    procedure - DISPLAY_CALENDAR
    and attach OFGCALL.PLL library.

  • Problem in Hiding the objects in Forms

    Hi
    I have a requirement to use a standard Adobe form & Interface. In which i need some fields should be binded with custom objects and some should objects needs to be hidden form the form based upon the condition. I did the logic for the Hidden part through the condition tab in the form. When i execute the form, some objects are not hidden. can i know how can we do it.
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Apr 8, 2011 10:54 AM

    Hi there,
    Please check whether the correct data is mentioned in the Properties, also check whether the operator is assigned to it. Check whether there is proper data is passed into the global data at its Interface.
    I don't thing so, you are directly using the Standard form. for satisfying this requirement you might have created custom one.

  • Search Facility in User Defined Object (Default Forms)

    Hi,
    I have created a User Defined Object in the Default Forms section and chose the 'Find' tickbox when registering the UDT.  Now I have populated the data into the UDO but I can't search for data in columns.
    Am I doing something wrong please?  Can this be done?
    Thanks.

    Hi Vankri,
    Check the thread
    UDO Default form "find" function
    Regards
    Jambulingam.P

  • Running flash objects in forms 6i

    Dear all,
    I am trying to run a flash object (.swf) file in my forms.
    My version of oracle forms 6i is Forms [32 Bit] Version 6.0.8.11.3 (Production)
    I created a new forms
    then placed an active X control
    Then by selecting its properties i select ShockwaveFlash.ShockwaveFlash.10.
    After this I select this control and right click and chose the same shockwave flash
    After this I chose full methods and properties for shockwaveFlash in program menu-->import ole library interface
    after doing all this i wrote the code in "when-new-form-instance"
    DECLARE
         oleitm1 OLEOBJ;
    BEGIN
    GO_BLOCK('DUMMY');
    SYNCHRONIZE;
         oleitm1 := :item('DUMMY.OLEITM').INTERFACE;
         ShockwaveFlash_IShockwa_0.Movie(oleitm1,'C:\1.swf');--it can be dynamic.
    END;
    I compiled it by Ctrl+shift+K
    no error.....
    But when i run this program it gives the following error
    FRM-41344: OLE object not defiend for OLEITM in the current record.
    I have tried to resolve this error by searching on Google, but found no proper solution.
    I might me missing some steps.
    Kindly suggest and guide.
    Thanks.....

    one more thing i want to say here is that
    even i try to use any other object like html file or something
    I got the same error..

  • Using OLE Objects in Forms 6i

    Hi
    I need to use OLE object (VSFlexGrid) in my forms 6i. can anybody help with some code by which I can achieve this.
    Warm Regards
    Vivek Bajaj

    Hi Shay,
    Thanks for the reply but i was unable to register to metalink. they need some support agreement code which i do not have. Can you please give me some more information on how to use that.
    waiting for an early reply.
    Warm Regards
    Vivek Bajaj

  • Question about creating objects in Forms 6i

    Hi,
    I'm trying to create by code dynamic items in a form, but I don't find the way to do it, or any tutorial in the internet.
    Taking a look at the Forms Help it says 'Once you create a data or control block, you can create items in that block at any time. Create items via the Object Navigator by inserting them under the desired block, or via the Layout Editor by drawing them on the desired canvas.'
    Is there a way to create items and assign them to datablocks by code? something like CREATE_ITEM?
    All I want is a button that inserts textboxes in a canvas, as many items as you want.
    Thank you in advance

    Hello,
    There is no Create_item() built-in to create item at runtime.
    You can create hiden item at design time then show them at runtime.
    Or you can use some java code to create component at runtime.
    Francois

  • Create a object in form of circle, line, triangle or other shapes

    i am trying to make a program that creates simple objects, its just a hobby. the problem is i am trying to make an object that is only a line(for now). i mean i want to have an object that can be in a shape of anything in any angle. i like to be able to create a straight line from top left corner to bottom right corner, but i do not want to draw it, i want it to be an object like JButton but in different shapes. how ever i cannot do that. i have already wrote a little test program to show every one what i have, it s not my actual code just a sample.
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JButton;
    import javax.swing.JLayeredPane;
    import java.awt.BorderLayout;
    import javax.swing.JLabel;
    import java.awt.Color;
    import javax.swing.event.MouseInputListener;
    import java.awt.event.MouseEvent;
    import javax.swing.JComponent;
    import javax.swing.AbstractButton;
    import java.awt.Graphics;
    import java.awt.Dimension;
    import java.awt.Polygon;
    import java.awt.Graphics2D;
    import java.awt.BasicStroke;
    import java.awt.RenderingHints;
    import java.awt.geom.Area;
    public class FractalTest extends JFrame
         public static final int H=600;
         public static final int W=600;
         public static final Dimension dim = new Dimension(H,W);
         private int[] joinInt = new int[]{BasicStroke.JOIN_MITER,BasicStroke.JOIN_ROUND,BasicStroke.JOIN_BEVEL};
         private int[] capInt = new int[]{BasicStroke.CAP_BUTT,BasicStroke.CAP_ROUND,BasicStroke.CAP_SQUARE};
         public FractalTest(){
              super("Test");
                    //two test lines
              Polygon p = new Polygon();
              p.addPoint(150,150);
              p.addPoint(450,450);
              Polygon s = new Polygon();
              s.addPoint(450,150);
              s.addPoint(150,450);
              setBackground(Color.YELLOW);
              setLayout(new BorderLayout());
                    //status bar at buttom
              JLabel info = new JLabel("info");
                    //creating JPanel holder of lines
              JPanelCanvas test = new JPanelCanvas();
              test.setBackground(Color.BLACK);
              test.setSize(dim);
              test.setLayout(new BorderLayout());
                    //creating lines
              TestComponent t1 = new TestComponent(p,2f,"Polygon P");
              TestComponent t2 = new TestComponent(s,5f,"Polygon S");
                    //setting JLables for status info
              t1.setInfoDisplay(info);
              t2.setInfoDisplay(info);
              test.setInfoDisplay(info);
              test.add(t1,BorderLayout.CENTER);
              test.add(t2,BorderLayout.CENTER);
              add(test,BorderLayout.CENTER);
              add(info,BorderLayout.SOUTH);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setSize(dim);
              setVisible(true);
              repaint();
         public static void main(String[] args){new FractalTest();}
         private class TestComponent extends AbstractButton implements MouseInputListener
              private float thickness;
              private Polygon polygon;
              private String name=null;
              private JLabel jl=null;
              public TestComponent(Polygon p,float t,String name){
                   super();
                   thickness=t;
                   polygon=p;
                   setContentAreaFilled(false);
                   this.name=name;
                   setSize(FractalTest.dim);
                   setVisible(true);
                   addMouseListener(this);
              public void paint(Graphics g){
                   super.paintComponent(g);
                   Graphics2D g2 = (Graphics2D)g;
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
                   g2.setStroke(new BasicStroke(thickness,capInt[0],joinInt[0]));
                   g2.setPaint(Color.GREEN);
                   g2.drawPolygon(polygon);
              public boolean contains(int x, int y){
                   int Ax=polygon.xpoints[0];
                   int Ay=polygon.ypoints[0];
                   int Bx=polygon.xpoints[1];
                   int By=polygon.ypoints[1];
                   int m=(By-Ay)/(Bx-Ax);
                   int s1=(m<=0)?+1:-1;
                   int s2=(m<=0)?-1:+1;
                   Polygon p = new Polygon();
                   p.addPoint(Ax+1,Ay+(int)(s1*thickness));
                   p.addPoint(Bx+1,By+(int)(s1*thickness));
                   p.addPoint(Bx-1,By+(int)(s2*thickness));
                   p.addPoint(Ax-1,Ay+(int)(s2*thickness));
                   return p.contains(x,y);
              public void setInfoDisplay(JLabel jl){this.jl=jl;}
              public void mouseEntered(MouseEvent e){jl.setText(name);}
              public void mouseExited(MouseEvent e){jl.setText("Polygon");}
              public void mouseDragged(MouseEvent e){}
              public void mouseMoved(MouseEvent e){}
              public void mouseClicked(MouseEvent e){}
              public void mousePressed(MouseEvent e){}
              public void mouseReleased(MouseEvent e){}
         private class JPanelCanvas extends JPanel implements MouseInputListener
              private JLabel jl;
              public JPanelCanvas(){}
              public void setInfoDisplay(JLabel jl){this.jl=jl;}
              public void mouseEntered(MouseEvent e){jl.setText("Canvas");}
              public void mouseExited(MouseEvent e){jl.setText("info");}
              public void mouseDragged(MouseEvent e){}
              public void mouseMoved(MouseEvent e){}
              public void mouseClicked(MouseEvent e){}
              public void mousePressed(MouseEvent e){}
              public void mouseReleased(MouseEvent e){}
    }if u see the code, the problem is each of the lines are covering the hole frame not just the green line, and i have to use the contains() method to limit the function but i do not want to do that. i just want it to be an object with out need of drawing any lines. just creating and object with the background color. so for example a JPanel in circular form that is only a circle no extra area around it.
    if u run the application and run it u will see the JPanel behind the green lines is not accessible by the mouse, the status JLabel shows the name of object can be reached by mouse at the moment and canvas(JPanel) will never be invoked. if the mouse is still on line objects the status name will stay on Polygon and it never changes to canvas.
    thanks everyone in advance

    Hi,
    try searching [www.java2s.com].plenty of sample programs are available.I have a faint memory of seeing a code that loads image files in desired placehoders like polygons n stuff. I guess you could replace the image component by some other component. Hope this helps

  • Change the font typeface of text object in form Master Page

    Dear all,
            I am creating a Adobe Livecycle form with multi-language support. Simply, there is a header title that is a text object in master page. I want that it can be converted to simplified Chinese from English and change its font typeface to “SimSun” when printing begins. I try the following code on its “Initize” event to do this.
    Simply, I configure a print flag(Y/N) in form so that it will convert into simplified Chinese and change the font typeface to ‘SimSun’ when the flag is reset to ‘Y’.
    Int langInt = i ;       
    If (pFlag  == “Y”) {
               PaymentRequisitionApp.pageSet.Page1.MasterSubform. Text1.value.text.value = l_XML.Record[i].TITLE.toString();
               PaymentRequisitionApp.pageSet.Page1.MasterSubform. Text1.font.typeface ="simsun";
    I found that it doesn’t work. There is something else in the form to reset the title to English. So I try to paste the code above in “calculate” event of tex1 object. It’s work!
    Question:
    1.      Anyone can tell me that the implement order of the events in the form?
    2.      Does it exist other better way to do this?
            3.  Which event, function or any else let the master page’s object to be reset?

    this link for downloading the sample is valid:
    http://rapidshare.com/#!download|935|429748707|TEST2.pdf|84.309

  • How to use request Object on form submit

    Hai all,
    i have a JSF page having simple form, username, password field and submit button, so on submit the form i want to get the data from the request object in next page without using a bean.
    How can i get it? I am looking for this problem for quite a long time, so can anyone help me...

    i have a JSF page having simple form, username,
    password field and submit button, so on submit the
    form i want to get the data from the request object
    in next page without using a bean.Why are you using JSF?

  • Report Object in Forms 6i

    Hi all,
    Can anybody please enlighten me about the Report object in the object navigator of Forms 6i. Why that object is present and in what way we can use it effectively.
    Thanks in advance
    Krishna

    This object exisits so you can easly integrate oracle report's reports into your form and run them using the new run_report_object builtin.
    You can learn more about oracle reports on otn.oracle.com/products/reports
    and you can also read more on the reports and forms integration in that site.

  • Linked object for Form calculating FrieghtCharges

    Hai Friends,
               Currently i am working on A/R Invoice form.For the form showing the freightcharge details i need to know the object type of the linked object.Is there any other means to activate the form?Otherwise could anyone tell me the object type? Please help me to tackle the affore mentioned problem

    Hi Chinnu
    As far as I know the Freight Charges does not have a obejct type since it is a subobject of it invoice..
    If you are on the Invoice form and need to programatically need to open the freight charges window, the easiest way is to simply simulate a click on the Linked button on the invoice form
    oForm.Items.Item("91").Click(BoCellClickType.ct_Regular); //91 being UID of the LinkedButton

  • XMLData object in Forms Server?

    Hello,
    What type of server code is possible to run in Livecycle Forms? I thought it would be any code that one can create using LiveCycle Designer, however, it seems not to interpret the XMLData object? Doe´sn´t it really works? Any other option?
    Thank you

    Hi,
    afaik, Forms 9i Does NOT support Farsi. The BiDi support in Forms 9i is limited to Arabic and Hebrew only. There are some Farsi specific characters that are not used in Arabic and these
    characters will not render correctly (i.e. rendered in Left to Right).
    Frank

  • Passing object into form

    I have a workflow where I check out a configuration object and I need to pass it to a form for updating, then check it back in at the workflow level. Does anyone have a snippet of code where they have successfully passed the object to the form and back again? I know I'm getting the components of the object correctly, it's just not passing up to the form.
    Thanks in advance for any help.
    -T-

    Now I'm getting " com.waveset.util.WavesetException: Suspended case with no WorkItems!"
    Here is the workflow minus start and end: (Remember, the object displays fine on the form)
    <Activity id='1' name='Checkout Object'>
    <Action id='0' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='checkoutObject'/>
    <Argument name='type' value='Configuration'/>
    <Argument name='name' value='ADServerLookupTable'/>
    <Argument name='authorized' value='true'/>
    <Variable name='object'/>
    <Return from='object' to='ADobject'/>
    </Action>
    <Transition to='Show Form'/>
    <WorkflowEditor x='215' y='59'/>
    </Activity>
    <Activity id='2' name='Show Form'>
    <Action id='0' name='Clear Form Button'>
    <expression>
    <set name='formButton'>
    <null/>
    </set>
    </expression>
    </Action>
    <ManualAction id='1' name='Show ADconfigMgmt Form' syncExec='true'>
    <Owner name='$(WF_CASE_OWNER)'/>
    <FormRef>
    <ObjectRef type='UserForm' id='#ID#UserForm:ADconfigMgmt' name=' UserForm AD Configuration Mgmt'/>
    </FormRef>
    <Return from='ADobject' to='ADobject'/>
    <ExposedVariables>
    <List>
    <String>ADobject</String>
    </List>
    </ExposedVariables>
    <EditableVariables>
    <List>
    <String>ADobject</String>
    </List>
    </EditableVariables>
    </ManualAction>
    <Transition to='Checkin Object'>
    <eq>
    <ref>formButton</ref>
    <s>Save</s>
    </eq>
    </Transition>
    <Transition to='Unlock Object'>
    <eq>
    <ref>formButton</ref>
    <s>Cancel</s>
    </eq>
    </Transition>
    <Transition to='Unlock Object'>
    <ref>WF_ACTION_TIMEOUT</ref>
    </Transition>
    <WorkflowEditor x='301' y='59'/>
    </Activity>
    <Activity id='3' name='Checkin Object'>
    <Action id='0' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='checkinObject'/>
    <Argument name='object' value='$(ADobject)'/>
    <Argument name='authorized' value='true'/>
    </Action>
    <Transition to='end'/>
    <WorkflowEditor x='59' y='10'/>
    </Activity>
    <Activity id='4' name='Unlock Object'>
    <Action id='0' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='unlockObject'/>
    <Argument name='object' value='$(ADobject)'/>
    <Argument name='authorized' value='true'/>
    </Action>
    <Transition to='end'/>
    </Activity>
    Edited by: TD_ROC on May 6, 2008 12:03 PM

  • Pass object between forms

    Hi:
    Is there any way of returning an object to a parent form?

    Hi Raúl,
    What is usually done is have a global object such as Application where all other objects hang from. Have a look at the TechDemo AddOn 2.0 from Sebastien Danober. It is avaiable for download here:
    https://www.sdn.sap.com/irj/sdn/softwaredownload?download=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/add-on technical demo v2 for sap business one 2005.zip
    Hope helps,
    Ibai Peñ

Maybe you are looking for

  • How can I listen to someone else's library? It briefly did, then disappeared when he restarted his computer. (Info within)

    I spent a week with someone far away, and plugged in my iPod to his computer briefly to charge it for my flight home. I don't use my iPod very much, but when I plugged it in recently, I later noticed that "(Name)'s Library" showed up under "Home Shar

  • Wrong character encoding in MS Excel

    Hi! I get and update data in the database (8i) using oo4o in MS Excel VBA. Data is in Latvian (NLS_LANG is AMERICAN_AMERICA.WE8ISO8859P1) The code is: Set OSes = CreateObject("OracleInProcServer.XOraSession") Set ODb = OSes.OpenDatabase("test", "scot

  • Help! PPT to Mov to MPEG-No Sound

    I've converted my powerpoint a movie file and then an mpeg file using qt pro. The picture comes in great but my sound is terrible! How do I fix this? Any help would be wonderful!

  • ALSA default device - changing it

    So... I have three ways to output audio from my system. - Laptop speakers / pluggable analog device (both work as same device, if something is plugged in, hardware automatically turns off the speakers, as in most laptops) - HDMI audio - Bluetooth aud

  • Unable to install downloaded map appln on nokia c-...

    Pre-installed map appln on Nokia C-5.002 got replaced accidently with non-functional old version. Repeated attempts to install/retreave downloaded appln from ovi store failed. Kindly help to retreave orignal appln or install any mther appln.......Tha