Change the value of the variable object type

Hi all!

I created an object using:

CREATE or REPLACE TYPE some_object AS OBJECT
(
some_information NUMBER,
Une_fonction RETURN NUMBER of MEMBER FUNCTION
)

and when I tried to implement the member function 'une_fonction' who need to change the value of the variable 'some_information' as:

CREATE or REPLACE TYPE some_object AS BODY

FUNCTION MEMBER une_fonction NUMBER IS BACK
BEGIN
some_information: = some_information + 5;
RETURN some_information;
END;

END;

This is for me the following error:


TYPE BODY CMS compile errors. SOME_OBJECT

Error: PLS-00363: expression ' SELF. SOME_INFORMATION' cannot serve a purpose of assignment
Line: 5
Text: some_information: = some_information + 5;

The question is:

How to implement my function can change the value of 'some_information '?

Benny Lava says:

Thank you, but I really need to change the value of this variable.

Then the member method requires write access to the object - and not only read access. To set write access, add the auto setting which allows him to change itself.

SQL> create or replace type TSomething as object(
  2          some_number     number,
  3          member procedure SetN( self IN OUT TSomething, n number )
  4  );
  5  /

Type created.

SQL>
SQL> create or replace type body TSomething as
  2
  3          member procedure SetN( self IN OUT TSomething, n number ) is
  4          begin
  5                  self.some_number := n;
  6          end;
  7  end;
  8  /

Type body created.

SQL>
SQL> declare
  2          s       TSomething;
  3  begin
  4          s := new TSomething(5);
  5          s.SetN(10);
  6          dbms_output.put_line( s.some_number );
  7  end;
  8  /
10

PL/SQL procedure successfully completed.

SQL>

Tags: Database

Similar Questions

  • JavaScript how to get / change the field (object) TYPE (no access or mandatory)?

    Hello

    I would like to change or at least to get the TYPE of a field/object field

    Reason: I have a function in my script object that needs some things if the given parameter is a text field or button

    {myFunction (Object)}

    If (type is button)...

    ClassName is relative to any use. He always comes = field

    Could someone provide a code please?

    Hello

    This script could help show how to get the type of field.  I'm reasonably show that he originally site of Stefan Cameron, http://forms.stefcameron.com/, but can not find it now.  Basically if you have a 'field' then ui.oneOfChild.className will give you the type of field.

    I don't think you'll have a chance to change the field type.  I think that you need to have all the field types you want on the form and that they are visible when necessary.

    function listAllFields (node)
    {
    If (node.className == 'exclGroup' | node.className == "subform" | node.className == 'subformSet' | node.className == 'region')
    {
    for (var i = 0; i)< node.nodes.length;="">
    {
    If (node.name! = "ErrorIconSubform")
    {
    childNode var = node.nodes.item (i);
    listAllFields (childNode);
    }
    }
    }
    Else if (node.className == "field")
    {
    Switch (node.ui.oneOfChild.className)
    {
    case "button":
    Console.println ("button:" + node.somExpression);
    break;

    case "checkButton":
    If (node.parent.className is "exclGroup")
    Console.println ("RadioButtonList:" + node.somExpression);
    on the other
    Console.println ("checkbox:" + node.somExpression);
    break;

    case "choiceList":
    var oUITypeNode = node.ui.resolveNode ("#choiceList");
    If (oUITypeNode.open is "userControl")
    Console.println ("DropDownList:" + node.somExpression);
    on the other
    Console.println ("ListBox:" + node.somExpression);
    break;
      
    case "dateTimeEdit":
    Console.println ("DateTime:" + node.somExpression);
    break;

    case "imageEdit":
    Console.println ("Image:" + node.somExpression);
    break;

    case "numericEdit":
    Console.println ("digital:" + node.somExpression);
    break;

    case "passwordEdit":
    Console.println ("password:" + node.somExpression);
    break;

    case "textEdit":
    Console.println ("Text:" + node.somExpression);
    break;

    case "signature":
    Console.println ("Signature:" + node.somExpression);
    break;

    case 'barcode ':
    Console.println ("bar code:" + node.somExpression);
    break;

    by default:
    unknown field type
    break;
    }
    }
    }

  • Houston-25036: an invalid object operation was drawn to the View object type.

    Hi all

    I use version jdev 11.1.2.2

    I have an application module impl in which I have a method to call a pl/sql that calls an external API.
      public String create(String productId, String component)
    {
        String createMessage=null;
        DBTransaction dbtransaction = (DBTransaction)getTransaction();
        StringBuffer str = new StringBuffer();
           str.append(" BEGIN ");
        str.append(" api.database@test ( ");
        str.append(" p_number                    => :1,   ");
        str.append(" p_product_id               => :2,   ");
        str.append(" p_component                => :3   ");
        str.append("    ); ");
        str.append(" END; ");
    
        CallableStatement callablestatement = dbtransaction.createCallableStatement(str.toString(), 1);
    
        try {
          callablestatement.registerOutParameter(1, Types.INTEGER);
          callablestatement.setInt(2, Integer.parseInt(productId));
          callablestatement.setString(3, component);
          callablestatement.executeUpdate();
          dbtransaction.commit();
          createMessage = callablestatement.getObject(1).toString();
          if (callablestatement != null) {
            callablestatement.close();
          }
          if (dbtransaction != null) {
            dbtransaction.closeTransaction();// closing connection
          }
    } catch (Exception e) {
          e.printStackTrace();
        }
    
        return createMessage;
    }
    I returns a value of this class of impl. I call this form of method a bean customer interface through. Then, I want to display another page passing the return as a variable binding value to another object to display grace to perform with the workflow setting.
      public void callCreate(ActionEvent actionEvent){
        BindingContext bctx = BindingContext.getCurrent();
        DCBindingContainer bindings = (DCBindingContainer)bctx.getCurrentBindingsEntry();
        DCDataControl dataControl = bindings.findDataControl("ReportAMDataControl");
        ReportAM ReportAM = (ReportAM)dataControl.getApplicationModule();
        createMessage =
            ReportAM.createBug(product, component);
          FacesContext context = FacesContext.getCurrentInstance();
          context.getApplication().getNavigationHandler().handleNavigation(context, null, "goExecute");//navigate to next page
    }
    Everything is going very well when I'm not closing the db connection in the impl.

    but when I close the db connection is showing the following error.

    Houston-25036: an invalid object operation was drawn to the View object type.
    <MethodExpressionActionListener> <processAction> Received 'oracle.jbo.InvalidObjAccessException' when invoking action listener '#{invokeImplMethodBean.callCreate}' for component 'cb1'
    <MethodExpressionActionListener> <processAction> oracle.jbo.InvalidObjAccessException: JBO-25036: An invalid object operation was invoked on type View Object with name RVO
         at oracle.jbo.server.QueryCollection.getPCollManager(QueryCollection.java:505)
         at oracle.jbo.server.QueryCollection.initPCollRows(QueryCollection.java:337)
         at oracle.jbo.server.QueryCollection.initQC(QueryCollection.java:367)
         at oracle.jbo.server.QueryCollection.<init>(QueryCollection.java:271)
         at oracle.jbo.server.ViewRowSetImpl.initQueryCollection(ViewRowSetImpl.java:876)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1140)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1413)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1319)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1304)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:7211)
         at view.InvokeImplMethod.call(InvokeImplMethod.java:206)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
         at javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:148)
         at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:824)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1134)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:358)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    No idea why this is happening?

    Can someone help me with this problem? :(

    Thank you
    Vignesh

    like I said with ADF BC, we never explicitly close the DB connection (framework takes care for this).

  • Possible to change the variable cpQuizInfoPassFail through advanced actions?

    Is it possible to change the variable cpQuizInfoPassFail through advanced actions? I do not see this or the other quizzing variable when I try to create an advanced action and change by entitlement or expression. Let me explain what I want to accomplish, I ask the wrong question. I have a training project, with that I need to include a post test. I don't really like the captivate quizzes. I want the post-test to play as a ride on jeopady where the user chooses issues category and gets points if the user answers correctly. For this I must ask questions on a game board and (from what I can fig) you cannot have multiple questions on the same page. I'm building the quiz with my own custom variables and coded so that the program jumps to a page of the certificate if the user gets more than 84 points. THA all works very well. But I have to be able to tell the database that the program will connect with the user has passed the quiz. I thought I could do this if I assign the value 1 to the variable cpQuizInfoPassFail. Is there a way to do this? Thanks in advance for any help,

    Doug Jackson

    Hi Doug,.

    I don't see the version you are using. Each interactive object can be marked, has a report following properties in the control panel (if you use CP5 or CP5.5) or a tab in the Properties dialog box reports, if you use a different version. You must add a score (default value is normally 1 point) and make sure you add it to the total score.

    If you want to make me a glance, post your file on acrobat.com (free, use your Adobe ID), share and publish. You will have a link that you can copy into a private message to me.

    Lilybiri

  • change the variables in a smart camera by a remote computer

    Hello

    I have a smart camera NI1722 and I want to change some variables inside the camera by a computer which is connected to the camera.

    Is it possible to change the variables inside the camera from a computer outside? On the computer we program with CVI. We have a RS232 and TCP/IP connection.

    Anybody can help us?

    Thank you

    Oliver

    Hi Oliver,.

    You use a LabVIEW or Vision Builder AI program the smart camera?

    There are several ways to Exchange data between a smart camera and CVI on the host computer.

    The easiest way is probably to use shared variables.

    If you use LabVIEW to program the smart camera, the following article explains how to create and deploy shared on the target variables.

    http://zone.NI.com/DevZone/CDA/tut/p/ID/4679

    If you use Vision Builder AI, first connect to the smart camera, then select Tools > Variable Manager...

    Select the tag System Variables, and then click Add to create the variable for the data you want to share. Be sure to select publish it on the network box.

    You can set the value of these variables in Vision Builder, using the step set the Variable, located in the tools palette.

    And a lot of steps allow for use directly in their configuration page, clicking the arrow to the bottom of some digital controls.

    Now, on the side of the CVI, this example shows how to connect, read and write variables that you created on the smart camera.

    https://decibel.NI.com/content/docs/doc-3806

    I hope this helps.

    Best regards

    -Christophe

  • How to pass the number object type to bind the variable in a select statement

    Hello

    I have a scenario like,

    UI, we store the values in the type of object, and this object type must be spent in a select query to retrieve the data accordingly.

    Is it possible to do so.

    If this isn't the case, please let me know how to take the values of object type and pass to the select query.

    Kind regards

    I found it,

    Object_name ('parameters1', 'parameter2');

  • How to check if the variable (of type uint) has a value or not?

    Hi all

    I'm just trying to write an instruction conditional to check if my uint variable has a value or not.  I tried to check "null" and "undefined", but without any luck (see below)

    private var _tempIndex:uint;

    ...

    ...

    If (_tempIndex! = null) {}

    code here

    }

    had an error with that one, then tried

    If (_tempIndex! = undefined) {}

    code here

    }

    had an error with that as well.

    So, how can I check if a variable has been assigned a value or not? Any ideas? Thanks in advance!

    Mike

    A uint always has a value between 0 and 2 ^ 32-1 inclusive. It cannot store a value 'no' as undefined or null. If you declare a variable of type uint without assigning a value, it is given a default value of 0.

    You need to maintain an indicator Boolean separate or to use a type of data larger such as number (which can store NaN), object (which can store NaN or null), or * (which can store a value, including NaN, null, and undefined).

    Gordon Smith

    Adobe Flex SDK team

  • Could not create the domain object type oracle.jbo.domain.Date

    Hello

    I'm getting the following exception in the user interface when I click on submit button (/ commit or any other button) for date fields. I created the default objects entity and notices for the database table. I'm poplating the data after executing the "Execute" operation on the iterator for the view.

    Cannot be created with the value ' 22/09/2009' field object type oracle.jbo.domain.Date. +

    Even if I had not made any changes to the date also fields, it's give the exception message in the user interface and do not return the form.

    Could you please help me to solve the issue.

    Thank you and best regards,

    S R Prasad

    Published by: oumar s Prasad on November 18, 2009 15:01

    Prasad,

    What is your version of JDev? And what technology do you use to model? BC4J? Can you try to change the format of the attribute in the object view? Say with the type of Simple date format and format "mm/dd/yyyy".

    Arun-

  • Need help to generate the name of the variable object timeout

    Below is a function that I use for scaling an object down and then hide it. It works fine on a single object, but if I try to run it on multiple objects at the same time, only the last object gets scaled down. I think it's because the timeout list never has one in this document, "ShrinkTimeOut."

    Each entity in the list of timeout needs a different name? And if so, how would I dynamically generate a name and save it so I can kill the timeout once the object object has reduced completely?

    > It looks like I'm getting rid of the timeout properly object in my code?

    Now that you say, and I have a glance, no - this isn't:
    not sure about the order of the parameters here:
    function fShrinkLoop (mModel, aTimeout) {}
    Creates a variable that contains the value of the model vector
    scale (vector (1,0000, 1,0000 1.0000)).
    nScaleVector = mModel.getPropRef("transform").scale;
    Check if the model is 1% or less to its original size.
    If (nScaleVector [1])<=0.01)>
    The model makes it invisible.
    mModel.visibility = symbol ("none");
    Kill the timeout object.
    aTimeout.forget ();
    } else {}
    If this isn't the case, further reduce US model and allow the loop to
    Repeat steps.
    mModel.scale (0.9);
    }
    }

  • How to prevent the spell checker to automatically change the word I type?

    Hello

    I own a MacBook Pro, OS X Yosemite 10.10.5.

    Processor: Intel Core i5 at 2.8 GHz
    Memory: 8 GB 1600 MHz DDR3

    I was struggling with the spelling corrector assuming what I type is wrong and so it changes the word for another while I am always type, the result is that the mess this creates a bad word that will not be corrected because the editor already "fixed" it while "I screwed up".

    The fact is that I'm Brazilian, so my first language is Brazilian Portuguese, which uses a series of special characters such as to, a, a, a, e, e, i, o, o, o and c, Furthermore, we seem to have many more words in our vocabulary and verb time if compared to English. The corrector seems to get confused with that too, and some Word's closer to her I am writing.
    What seems to be the boss, is that in English, the feature is very useful, but when I type special characters, it assumes that this word should not be even with the input source for Brazilian Portuguese, which makes me wonder why I would fix it for my language if I have not noticed any difference at all. He gets it wrong in 90% of the time and a Word by a word it is delay my work and make me hate my computer.

    Please, don't you know any solution for this? Go to system preferences > keyboard > text and UN-checking the "correct spelling automatically" doesn't change anything, even after restarting the computer. It's stressing me out of having to correct this as the corrector mess every 5 minutes!

    Any ideas how to get rid of it?

    Thank you!

    kodimoto wrote:

    even with the input source for Brazilian Portuguese

    The input source has nothing to do with spell checking and AutoCorrect.  Dictionary used for this defined under Edition > spelling and grammar > show spelling and grammar (or in the system preferences, keyboard, text, spelling).  For best results, use the dictionary for your language and not "automatic".

  • Dynamically change the variable substitution for the region title

    Is there a way to update the title of a region when you use variable substitution (for example. P1_TITLE_DATE)? I use a dynamic action to update the region-, but it does not update the title. Does anyone have a work around for this without submitting the entire page?

    Hello

    You can run code JavaScript change the title of your region.

    $("#MY_REGION div.rc-title").text("New Title")
    

    JQuery selector code depend on your model and its theme.

    Kind regards
    Jari

    -----
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Change the variable scope?

    Hi all

    Is it possible to change the scope of a variable in a BPEL process?

    Thank you

    You can move the declaration of the variable to the correct scope.
    If you view the source code you can copy and paste the variable... definition

  • Change the default object attributes

    In a document that I created, I mistakenly put in place so that each new form, I create, a box for example, takes on several corners rounded such as effects drop shadow and outer glow, I want.

    I asked these attributes to an object sometimes return to this document, but it was intended only for that one. Now, it happens to every new object.

    How to simply set things back to neutral?

    Window > object Styles

    You may have created a new Style of object or changed the graphic block by default

  • Newbie how to set the variable of type element?

    JDEV 10.1.3.1

    When I do the following in JDEV BPEL Designer...

    new variable
    create the variable
    Select the element type
    Select a file local xsd schema
    Select the item of choice

    Seems to define OK but fails to compile. Namespaces seem to include the namespace defined in the xsd.

    When I define variables of type message and navigate to the appropriate wsdl file and choose a message there that seems to work / compiles very well.

    I'm sure that since I am just getting started it's a common error, please help and thank you. All variables must be defined as messages types and reside in a WSDL file?

    Thank you
    John

    Hi John,.

    I don't know if it is possible to import a schema in a process directly. What I usually do is to import the WSDL describing the interface. This is the file that you use to define the client-partnerlink. If your schema is imported correctly, you can access the type definition via the partner-links-node in the type selector (this works at least in JDEV 10.1.3.3 and 10.1.3.4).
    To import your schema in the wsdl, you must switch to the display structure in wsdl editor and after a right-click on the node types to select "insert types." Inside types, you insert the XML schema within the schema, you must insert an import tag. The properties for this tag are the location of the file and the target namespace used in the schema. The XML structure that results should look like this:

    -----




    namespace = "http://xmlns.oracle.com/Order_Booking___Shipment" / >



    -----

    Greetings,

    Christoph

  • KeyboardDrake: changing the default blackberry type in Adobe Flash Builder

    Hey guys,.

    How can I change the default layout in Adobe Flash Builder Burrito using the SDK software BB Playbook

    Essentially, I want the navigation bar at the top down on the left side

    How can I do this

    Thank you

    Chris

    Hey chris,

    Sorry for the delay, the image takes some time before it appears (pending approval of the host). in any case the bar that is displayed is known as an "action bar" in MXML. IM unfamiliar with too much Flex, so I can't tell you how to position it yourself. just google or search for "Flex Action Bar" and which should help you in the right direction. hope that helps. Good luck!

Maybe you are looking for

  • SPORE on Windows 7 installs but doesn't start. Message says "Spore has stopped working".

    I recently bought the game spore original and installed on my compaq cq5320f. It installed correctly but when I try to run the game, the screen goes out for a second, then an error message box saying "spore has stopped working" it self closes and say

  • Firefox tells me that change randomly my desktop icons. How can I fix it?

    I looked through all the firefox drop-down lists and tabs. I can't find out how to disable it for a monment then that I download Adobe Flash Player. Firefox also told me that my desktop icons change randomly. I can't find out how to solve this proble

  • Why can't I open attachments by e-mail .wmv?

    Since the installation of Office 2010 (perhaps a little before...) I don't remember) I can't open attachments by e-mail with .wmv that I use for attachments, I think and I would be able to use it.  I went to create a folder, but it was already listed

  • Is not the factory reset my laptop

    I tried several times to reset my laptop. Whenever I get to recovery, he tells me to go under delete everything, but my laptop doesn't have this option. I don't know what to do.

  • Line group BI 11g publisher number

    Hello I have a problem with the line group number in the model.Example table:line number username deptName1MILLER102MILLER203WARD10Now it looks like this, but im need to display it like this:Header 1 Header 2 Header 31MILLER10202WARD10Can you advise