Accessing components

I have upgraded an existing WebDB 2.2 application to Portal 3.0.6.6.5 and I am still able to access the ported procedures directly thru URL (like http://<hostname.domain>:7777/pls/NATT/OSNASS.NSARS_RPT.show). In my previous application one of the reports was the actual starting page with links to other components and forms added as PL/SQL code at the bottom of the report. When creating new applications in Portal the procedure doesn't seem to be accessible the same way as before, the procedure does not show up in the user schema and can not be addressed directly thru URL. Is this true or am I missing something?

I'm sorry, this was probably the wrong forum. I've reposted this item under Portal Content Areas.
Peres

Similar Messages

  • How to Install Oracle Data Access Components (ODAC) on Windows Server 2003?

    I recently installed "32-bit Oracle Data Access Components (ODAC) with Oracle Developer Tools for Visual Studio" on my computer (Windows 7, 64bit). Everything seems fine and I can develop and run my application in Visual Studio 2010 and IIS 7.
    Now, when I deploy my application to the Server, it raises error:
    Exception: System.TypeInitializationException: The type initializer for 'Oracle.DataAccess.Client.OracleCommand' threw an exception. ---> Oracle.DataAccess.Client.OracleException: The provider is not compatible with the version of Oracle client
    Obviously I need to install ODAC on the server, too. My server is:
    - Windows 2003 32 bit R2 (I know, I know!)
    - IIS 6
    So. I downloaded the same installation from Oracle website (ODAC 11.2 Release 5 and Oracle Developer Tools for Visual Studio [11.2.0.3.20]) and installed it on the server. But still getting the same error.
    PS: When I was installing, I chose Oracle Data Access Component for Oracle Client 11.2.0.3.20 in Oracle Universal Installer. hmmmm. Should I choose "Oracle Server" instead? Screenshot
    Edited by: 1000434 on Apr 17, 2013 6:35 AM
    Edited by: 1000434 on Apr 17, 2013 6:36 AM

    ODP.NET, Unmanaged Driver uses unmanaged dependencies in the Oracle Client. The error you see means you have another Oracle Client installed on the Win2003 machine and ODP.NET is attempting to load the incorrect Oracle Client version, rather than the version you installed ODP.NET with.
    What you need to do is direct ODP.NET where to find the correct version of its unamanaged Oracle Client dependencies. This will be generally the bin directory of your Oracle Client home that was installed with ODP.NET.
    You can learn more about DllPath here:
    http://docs.oracle.com/cd/E20434_01/doc/win.112/e23174/InstallODP.htm#sthref94
    If you're not familiar with how to set ODP.NET settings in the Registry or .NET config files, you can read how to do that here:
    http://docs.oracle.com/cd/E20434_01/doc/win.112/e23174/featConfig.htm#sthref106

  • How to check if Oracle Data Access Components  is installed?

    How to check if  Oracle Data Access Components is installed and version on my computer?
    Also How to check if Oracle Data Provider is installed and version?
    TIA
    Steve42

    Regedit HKLM->Software->Oracle.  See what's there...
    At the very least, that can give you paths and can check file versions from there.

  • No Setup.exe in 64-bit Oracle Data Access Components (ODAC) Dowload

    Why is there no Setup.exe in the 64-bit Oracle Data Access Components (ODAC) Download? Are the only instructions for installing in the dowloaded readme file?

    You're probably looking at an XCOPY bundle.
    If you're looking for an x64 11.2 bundle installed via the Oracle Installer, you'd need to get either the 11201 full client on OTN, or the 11202 full client on My Oracle Support. The 11202 full client includes support for .NET 4 if you need that.
    Hope it helps,
    Greg

  • How to access components in a iview from program

    Hi,
        Can we access the iview components from program dynamically? I have a Table Control , i want to refresh it in my program.
        How to set Mandatory (*) mark for a label? Is there any property for that?
    Thanks,
    Sridhar

    If table is displayed in current view, it will be refreshed with most of the events(There are few exceptions) from that view. You don't need to do anything for that.
    Suppose You have one Input Fields - Inp, and Lable - Lb.
    From the label properties select "Label For" with Inp from DropDown menu. From properties of the inputfield change property "Status" to required.
    Now u would get required mandatory mark.
    Note that, selecting the status "Required" for inputfield only displays the asterisk. But it doesnt stop you from navigating to another view with out entering a value.

  • Accessing components vars.

    Hi,
    How do I access a var in a differint component? I have two custom components in the same application and need to get the variable (arrayCollection) from one to populate a chart in the other.

    Thanks Benji,
    ListItems Component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init(), reloadData()" height="95%" width="100%" backgroundAlpha="0">
    <mx:Script>
         <![CDATA[
              import mx.core.Application;
              import mx.collections.ArrayCollection;
              import mx.containers.Box;
              import mx.controls.Alert;
              import mx.events.DragEvent;
              import flash.net.navigateToURL;
              import mx.events.StateChangeEvent;
              import mx.controls.ComboBox;
              import mx.controls.LinkButton;
              import mx.containers.VBox;
              import mx.controls.CheckBox;
              import mx.controls.Text;
              import mx.containers.HBox;
              import mx.collections.XMLListCollection;
              import mx.rpc.events.ResultEvent;
              import mx.managers.CursorManager;
              import flash.text.TextField;
              namespace ink = "http://www.inktomi.com/";
              use namespace ink;
              //     Archive Vars
              [Bindable] private var xmlList:XMLList;
              [Bindable] private var listCollection:XMLListCollection;
              [Bindable] private var listData:XML;
              [Bindable] public var serviceURL:String = "http://boss.yahooapis.com/ysearch/news/v1/";
              [Bindable] public var searchFor:String = "biotechnology%20AND%20biotech";  
              private const PROXY:String = "http://localhost/employeePhoneDesktop/src/php/proxy.php?url=";
              private const APIID:String = "?appid=######
              private const PARAMS:String = "&format=xml&orderby=date";
              private var reload:Timer;
              //     Archive Vars
              private var vBox:VBox;
              private var hBox:HBox;
              private var titleText:LinkButton;
              private var itemInfo:Text;
              private var abstract:Text;
              private var archive:CheckBox;
              private var rateItem:ComboBox;
              private var category:ComboBox;
              private var container:VBox;
              private var clickURL:Text;
              private var canvas:Canvas;
              private var titleFormat:TextFormat;
              //     Archive Vars
              /*[Bindable]
              public var newsDB:ArrayCollection = new ArrayCollection( [
                     { title: null, clickURL: null, info: null, abstract: null, category: null, rateItem: null }
             public var newsDB:ArrayCollection = new ArrayCollection;
              private function init():void {
                   listService.send()
                   CursorManager.setBusyCursor();
              private function getData(e:TimerEvent):void{
                   listService.send()
                   CursorManager.setBusyCursor();
                   removeChild(container);
              private function reloadData():void {
                   reload = new Timer(10000, 10);
                   //reload.start();
                   reload.addEventListener(TimerEvent.TIMER, getData);
                   //trace(reload.delay);
                   //reload.addEventListener(TimerEvent.TIMER_COMPLETE,
              private function resultHandler(e:ResultEvent):void {
                   listData = e.result as XML;
                   // add the imems to an XMLList and XMLListCollection
                   // so that they can be used with the repeater class
                   // and update automatically
                   xmlList = e.result.resultset_news.result as XMLList;
                   listCollection = new XMLListCollection(xmlList);
                   CursorManager.removeBusyCursor();
                   // populate the layout with datd
                   createLayout();
              private function createLayout():void {
                   container = new VBox();
                   var categoryLabels:Array = new Array("Health","Industrial","Emerging Tech","Food & Ag");
                   var rateLabels:Array = new Array("Positive","Neutral","Negative");
                   for(var i:int=0; i<listCollection.length; i++) {
                        //vBox = new VBox();
                        canvas = new Canvas();
                        hBox = new HBox();
                        titleText = new LinkButton();
                        titleFormat = new TextFormat();
                        itemInfo = new Text();
                        abstract = new Text();
                        archive = new CheckBox();
                        rateItem = new ComboBox();
                        category = new ComboBox();
                        clickURL = new Text();
                        titleText.label = listCollection.getItemAt(i).title;
                        //titleText.addEventListener(MouseEvent.DOUBLE_CLICK, getURL);
                        titleText.addEventListener(MouseEvent.CLICK, getURL);
                        titleText.width = 400;
                        clickURL.text = listCollection.getItemAt(i).clickurl;
                        clickURL.visible = false;
                        clickURL.includeInLayout = false;
                        itemInfo.text = listCollection.getItemAt(i).source + " | " + listCollection.getItemAt(i).date;
                        itemInfo.y = 25;
                        abstract.text = listCollection.getItemAt(i).abstract;
                        abstract.y = 42;
                        abstract.visible = true;
                        abstract.includeInLayout = true;
                        abstract.width = 400;
                        abstract.height= 60;;
                        archive.label = "Archive";
                        category.prompt = "Category";
                        category.dataProvider = categoryLabels;
                        category.rowCount = categoryLabels.length;
                        category.visible = false;
                        category.includeInLayout = false;
                        category.width = 95;
                        category.height = 20;
                        rateItem.prompt = "Rate";
                        rateItem.dataProvider = rateLabels;
                        rateItem.visible = false;
                        rateItem.includeInLayout = false;
                        rateItem.width = 95;
                        rateItem.height = 20;
                        canvas.addChild(titleText);
                        canvas.addChild(clickURL);
                        canvas.addChild(itemInfo);
                        canvas.addChild(abstract);
                        canvas.addChild(hBox);
                        hBox.addChild(archive);     
                        hBox.addChild(category);
                        hBox.addChild(rateItem);
                        hBox.y = abstract.y + 60;
                        hBox.percentWidth = 80;
                        hBox.percentHeight = 80;
                        archive.addEventListener(Event.CHANGE, toggleArchive);     
                        container.addChild(canvas);          
                   container.x = 10;
                   container.y = 10;
                   addChild(container);
       // If someone chooses to archive the item, set the properties of the
       // ComboBoxes (visible & includeInLayout) to true
       private function toggleArchive(e:Event):void {
             var chb:CheckBox = e.currentTarget as CheckBox;
             var hBox:HBox = chb.parent as HBox;
             var len:int = hBox.numChildren;
             for(var i:int=0; i<len; i++) {
                   var cb:DisplayObject = hBox.getChildAt(i);
                   if((cb is ComboBox)) {
                    // toogle visibility and include in layout
                    (cb as ComboBox).visible = chb.selected;
                    (cb as ComboBox).includeInLayout = chb.selected;
       // Called when someone clicks on the titleLink. This function pulls the
       // origional website URL up in a seperate browser window
       private function getURL(e:MouseEvent):void {
                 var link:LinkButton = e.currentTarget as LinkButton;
                 var canvas:Canvas = link.parent as Canvas;
                 var clickURL:Text = canvas.getChildAt(1) as Text;
                 var url:URLRequest = new URLRequest(clickURL.text);
                 navigateToURL(url);
              trace(clickURL.text);
      /* private function showAbstract(e:MouseEvent):void {
                    var link:LinkButton = e.currentTarget as LinkButton;
                 var canvas:Canvas = link.parent as Canvas;
                 var abstract:Text = canvas.getChildAt(3) as Text;
                 var hBox:HBox = canvas.getChildAt(4) as HBox;
                 link.removeEventListener(MouseEvent.CLICK, showAbstract);
                 link.addEventListener(MouseEvent.CLICK, hideAbstract);
                 abstract.visible = true;
                 abstract.includeInLayout = true;
                 while(abstract.hitTestObject(hBox) == true){
                      hBox.y += 1;
                 trace(canvas.getChildren());
       private function hideAbstract(e:MouseEvent):void {
                    var link:LinkButton = e.currentTarget as LinkButton;
                 var canvas:Canvas = link.parent as Canvas;
                 var abstract:Text = canvas.getChildAt(3) as Text;
                 var hBox:HBox = canvas.getChildAt(4) as HBox;
                 link.removeEventListener(MouseEvent.CLICK, hideAbstract);
                 link.addEventListener(MouseEvent.CLICK, showAbstract);
                 abstract.visible = false;
                 abstract.includeInLayout = false;
              hBox.y = 35;
                 trace(abstract.text);
       public function archiveData():void {
                 var containerArray:Array = container.getChildren() as Array;
                 for(var i:int=0;i<containerArray.length;i++){
                 //for(var i:int=0;i<1;i++){
                      var canvas:Canvas = container.getChildAt(i) as Canvas;
                      var titleText:LinkButton = canvas.getChildAt(0) as LinkButton;
                      var clickURL:Text = canvas.getChildAt(1) as Text;
                      var itemInfo:Text = canvas.getChildAt(2) as Text;
                      var abstract:Text = canvas.getChildAt(3) as Text;
                      var hBox:HBox = canvas.getChildAt(4) as HBox;
                      var archive:CheckBox = hBox.getChildAt(0) as CheckBox;
                      var category:ComboBox = hBox.getChildAt(1) as ComboBox;
                      var rateItem:ComboBox = hBox.getChildAt(2) as ComboBox;     
                      if(archive.selected == true){
                        newsDB.addItem( {
                        title: titleText.label,
                        clickURL: clickURL.text,
                        info: itemInfo.text,
                        abstract: abstract.text,
                        category: category.selectedLabel,
                        rateItem: rateItem.selectedItem });                    
                      trace(newsDB[0].title);
       private function archiveSuccess():void {
                 Alert.show("Your clips have been successfully saved","Archive Complete");        
       private function archiveFault():void {
                 Alert.show("Your clips have not been saved. Please contact an administrator.","Archive Error");
         ]]>
    </mx:Script>
         <mx:HTTPService id="listService" url="{serviceURL + searchFor + APIID + PARAMS}" result="resultHandler(event)" resultFormat="e4x"/>
    </mx:Canvas>
    Main mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
         layout="absolute"
         xmlns:com="components.*"
         backgroundGradientAlphas="[1.0, 1.0]"
         backgroundGradientColors="[#EDF4FF, #C6D9FF]"
         width="800" height="600"
         backgroundAlpha=".75"
         title="  Media Trap Beta V1.1"
         titleAlignment="left"
         creationComplete="init()">
         <mx:Script>
              <![CDATA[
              ]]>
         </mx:Script>
         <mx:Style source="assets/style.css" />
         <mx:Label x="19" y="14" text="Media Trap" fontWeight="bold" fontSize="20"/>
         <mx:Label x="20" y="38" text="beta 1.1"/>
         <mx:TabNavigator id="navigator" width="450" height="89%"  x="20" y="61">
              <mx:VBox label="News">
                   <com:listItems id="newsFeed" name="newsFeed" backgroundColor="#FFFFFF" x="0" y="0" height="100%">
                   </com:listItems>
              </mx:VBox>
              <mx:VBox label="Blogs">
                   <mx:Text text="Blog Coverage"/>
              </mx:VBox>
              <mx:VBox label="Twitter">
                   <mx:Text text="Twitter Coverage"/>
              </mx:VBox>
              <mx:VBox label="Video">
                   <mx:Text text="Video Coverage"/>
              </mx:VBox>
         </mx:TabNavigator>
         <mx:Button x="348" y="36" label="Archive Selected" click="newsFeed.archiveData()"/>
         <!--<com:currentArchiveChart id="currentCats" x="478" y="81" height="212" />-->
    </mx:WindowedApplication>
    Charting Component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="300" height="346" xmlns:com="components.*" creationComplete="init()" >
        <mx:Script>
            <![CDATA[
            import mx.core.Application;
            import mx.collections.ArrayCollection;
              // testing variable
            [Bindable]
            private var medalsAC:ArrayCollection = new ArrayCollection( [
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29, Test: 20000 }
            private function init():void{
                 trace(mx.core.Application.application.myListItems.newsDB as ArrayCollection);
                 medalsAC.addItem( { Country: "Canada", Gold: 75, Silver:39, Bronze: 29 });
                 medalsAC.addItem( { Country: "England", Gold: 100, Silver: 200, Bronze: 100 });
            private function displayGold(data:Object, field:String, index:Number, percentValue:Number):String {
                var temp:String= (" " + percentValue).substr(0,6);
                return data.Country + ": " + '\n' + "Total Gold: " + data.Gold + '\n' + temp + "%";
            ]]>
        </mx:Script>
             <mx:Label id="archiveTitle" x="10" y="10" text="Current Archive " fontSize="14" fontWeight="bold"/>
             <mx:PieChart id="chart" height="130" width="300" color="0x323232"
                showDataTips="false" dataProvider="{medalsAC}"  y="22">
                <mx:series>
                    <mx:PieSeries labelPosition="callout" field="Gold">
                    </mx:PieSeries>
                </mx:series>
            </mx:PieChart>
    </mx:Canvas>

  • Accessing components in a different state

    There's probably a more elegant way of doing this.
    Right now I'm setting certain components to be available in all states, but that means I need to make them visible or invisible depending on the state... which is a pain.
    How can I access a component in a different state.
    Maybe I'm missing something simple like stateName.component.text or something?

    I am currently using this, but I'm getting the error that states that what I'm after doesn't exist... when it clearly does.
    Here's that code.
    private function stateChangeHandler(e:StateChangeEvent):void {
         if (e.newState == "State1") {
              dg.visible = true;
              optionsPanels.visible = false;
         } else if (e.newState == "options") {
              dg.visible = false;
              optionsPanels.visible = true;
              if (preferences["searchType"] == 0) {
                   googleLocalChoice.selected = true;
              } else {
                   yahooLocalChoice.selected = true;
              yahooID.text = preferences["yahooAPI"];
         } else if (e.newState == "notes") {
              dg.visible = false;
              optionsPanels.visible = false;
         } else if (e.newState == "password") {
              dg.visible = false;
              optionsPanels.visible = false;
    What I'm having trouble with is in the if e.newstate == "options" - I'm getting the error on yahooLocalChoice, because preferences["searchType"] does not equal 0.

  • In onLoad JavaScript, I'm getting "Error: Permission denied to access property 'classes'" when I access Components.classes; how do I enable that permission?

    I need to emulate several ActiveX functions in my client's web application. I have located several Mozilla web pages that describe how to do the things I need, and I have attempted to implement those instructions. However, I can't seem to get past the first line of code. In my web page, I am calling a JavaScript function using the onLoad attribute of the <body> tag. I am using the Navigator object to determine that the browser is Firefox. I then attempt to access the extension classes using the following code on lines 51 and 52 of the Download.js file:
    var C = Components;
    var CC = C.classes;
    The Web Console gives me these two messages:
    [13:51:55.621] The Components object is deprecated. It will soon be removed. @ http://distribution:781/NewDDI/DownLoad.js:51
    [13:51:55.621] Error: Permission denied to access property 'classes' @ http://distribution:781/NewDDI/DownLoad.js:52
    How do I enable adequate permission to be able to access the Components classes?

    I think Components is available only in extensions (or otherwise privileged code) and not in ordinary web pages.

  • Accessing components in TabNavigator on unselected tabs

    Hi there,
    I want to set the value of components (says a rich text
    editor, or image source attribute value, etc.) in tabs that are NOT
    selected. So if I have three tabs say, and I currently have tab 1
    selected and I want to set the value of a text field that is
    visible when tab 2 is selected...how can I achieve this? I know the
    TabNavigator extends the ViewStack class but I'm new to Flex and am
    having difficulty with this. In Java it's a very easy process so
    I'm assuming it would be quite similar in Flex...any help is
    greatly appreciated. Thanks!

    quote:
    I would think this code works, but it gives an error. Anyone
    know why?
    You can't use dot syntax to refer to components that way. If
    you know what that component's id ("futuresLbl") is, why would you
    use such a roundabout way to refer to it anyway? From the Flex
    docs:
    The IDs for all tags in an MXML component, no matter how deeply
    nested they are, generate public variables of the component being
    defined. As a result, all id properties must be unique within a
    document. This also means that if you specified an ID for a
    component instance, you can access that component from anywhere in
    the application: from functions, external class files, imported
    ActionScript files, or inline scripts.
    I imagine if you want to do it the roundabout way, you'd have
    to cast the individual DisplayObjects to the proper type and then
    set the text property on the Label. Note that I use a name
    attribute "futuresLbl" for the Label
    private function clickHandler():void{
    var myVBox:VBox = tb.getChildByName("futures") as VBox;
    var myLabel:Label = myVBox.getChildByName("futuresLbl") as
    Label;
    myLabel.text = "New Futures Information";
    TS

  • Accessing components created thru AS addChild

    I am working on an application that requires me to add
    componts on the fly, based on the field type as entered into the
    database. (code attached).
    So, I have no idea how many componets will be added, or what
    types they will be.
    On click of a save button, I need to be able to access the
    values typed in to the boxes. Normall its textbox.text, but since I
    don't know the names of the boxes, I'm stumped.
    I have tried adding the name of the component to an array
    just before I use the .addChild() in the switch statments, but that
    only gives me an array of the names, and looping through the array,
    using array(i).text gives me an error.
    Any ideas? I'm stuck on this. Maybe there is a better way of
    adding the boxes to the page than what I'm doing.
    Thanks!

    I strongly urge you to consider using mx:Repeater. It does a
    lot of work for you , including creating arrays of references to
    repeated components. If you give some tag in the repeater an id,
    say mytext", then you can access the instances of that component
    using mytext[n].text, where "n" is the index of the dataProvider
    item.
    Doing this below does NOT create an id you can use to
    reference the component instance:
    myEditor.id = "Answer"+i.toString();
    If you want to stick with manual addChild, you will need to
    keep a reference to the created components yourself. One effective
    way is to use an associative array, like a hash table. This is just
    a dynamic "Object".
    private var _myEditors:Object = new Object();
    myEditor = new RichTextEditor();
    myEditor.text = "Answer question here";
    _myEditors["Answer"+i] = myEditor; //toString is not
    necessary here
    vbLabBk.addChild(myEditor);
    Then you can later access those instances like this:
    var myEditor:RichTextEditor = _myEditors["Answer"+i];
    But consider Repeater. It does this and much more for you,
    such as destroying unwanted child components when the data changes.
    Tracy

  • Accessing components from Action, ActionListener

    Our backend does not map well into a bean model. Rather than force it to fit, we have decided to skip the Update Model phase and instead read form inputs in Action/ActionListener classes, then persist. What is the preferred way to access nodes in the component tree? I was thinking something like:
      public void processAction(ActionEvent event)
           String s = NamingContainer.SEPARATOR_CHAR + "form01" + NamingContainer.SEPARATOR_CHAR  + "input 01";
           UIComponent source = event.getComponent();
           UIComponent result = source.findComponent(searchString);
           // persist result value 

    I'm fond of using the "binding" attribute to force the component you're searching for to be available directly on the same object as the "actionListener" (which I'd implement using a method binding, rather than implementing ActionListener). I rather dislike findComponent().
    -- Adam Winer (EG member)

  • Accessing components in a module from my applciation

    Hey all, I have this simple module:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" implements="fo_ImoduleInterface">
    <mx:Script>
    <![CDATA[
    import mx.controls.MenuBar;
    public function test():String {
    return "Test String";
    public function getMenuBar():Array {
    return myMenuBar.menus;
    ]]>
    </mx:Script>
    <mx:ApplicationControlBar dock="true" paddingTop="0"
    paddingBottom="0">
    <mx:MenuBar id="myMenuBar" labelField="@label">
    <mx:XMLList>
    <menuitem label="menu" >
    <menuitem label="sub 1" />
    <menuitem label="sub 1" />
    </menuitem>
    </mx:XMLList>
    </mx:MenuBar>
    </mx:ApplicationControlBar>
    </mx:Module>
    Now I want to access getMenuBar from my application to create
    a 'general' menu in my main application (much like what OSX does).
    I can successfully access the function test and get my test
    string back, so I know my module is loaded (I can see it on the
    screen to) but trying to get access to the component always fails.
    What is the proper solution to let my main application access
    a component in a module?
    Ries

    quote:
    Originally posted by:
    Sreenivas R
    The way I would do it would be to create a interface and add
    necessary APIs to it. Make the module implement the interface.
    In the main app convert the module instance to the interface
    and access things.
    Isn't this what the module does???
    see here : <mx:Module .....
    implements="fo_ImoduleInterface">
    fo_ImoduleInterface implements to correct function aswell,
    it's created like this:
    package
    import flash.events.IEventDispatcher;
    public interface fo_ImoduleInterface extends
    IEventDispatcher {
    function getMenuBar():Array;

  • Problems with JbuilderX anda Data Access componentes

    Hi everyone, i�m working with JBuilderX Foundation, I�m trying to create an applet wich can access to a database, when I run de project with F9 key, its work right but when I compile it and try to run from a html page its doesn�t work, and the java console shows me the following error:
    General Exception
    NoDefClassFound:com/borland/database/DataSet.
    Thanks

    Put that .class file or JAR in your CLASSPATH for JBuilder.
    %

  • Oracle Data Access Components and Windows XP Professional x64

    To start I'm running Windows XP Professional x64, using IIS 6, and Visual Studio 2005. I have a web service project that uses ODAC 11g, which runs just fine when I run it in debugging mode. However when I publish the project and try to access it through IE, I get an application error saying that Oracle.Web or one of its dependencies could not be loaded. Now I suspect that this might be happening becuase I'm running on a 64-bit machine, but I'm not convinced. The web service worked just fine on a 32 bit windows running IIS 5. If anyone could shed some light on this that would be awesome. Thanks!

    hi ,
    i have more than one question indeed.
    1.i installed personal oracle v 8.1.7 for windows nt/2000 on
    windows xp profissional platform and it works great.When i
    tryed to install developer 2000 6i a microsoft runtime error
    is produced. is thier any solutions for such problem?
    2.when i tryed to install personal oracle on another machine with the following specs:
    -p4 1.4 ghz intell proccessor
    -gigabyte motherboard built-in sound
    -128 mb ram
    -S3 savage4 32mb vga card
    the oracle universal installer never runs.

  • AS: Accessing Components inside Components

    I'd like to apply an action to a UI Component. This UI Component is in a TabNavigator. Using actionScript, how can I communicate to that UI Component?
    The progression looks like this:
    TabNavigator > NavigatorContent > Border > Group > UI Component
    Thanks!

    Solved my own problem!
    <mx:TabNavigator x="10" y="10" width="980" height="748" id="playerTabNav" creationPolicy="all">
    The children of a TabNavigator aren't created until they're needed.Only the contents of the first tab are actually created, because they're part of what's needed when the TabNavigator is first displayed. The contents of the second tab won't be instantiated until they need to be displayed, which is when the second tab is clicked on.
    To force the contents of the other tabs to be instantiated, the creationPolicy property of the TabNavigator is changed to be "all". This will cause all of the different tabs to be instantiated, regardless of having been clicked on.

Maybe you are looking for

  • ASKB - POsting Period not open problem

    Hi All, I saw many threads on this problem but not got suiatable solution thats why i am raising this thread again. Due to some problem my client not Run ASKB for October period, now when he is trying to run ASKB for November month he is getting erro

  • FireWire 800 and USB bus failure

    I am trying to resolve an ongoing issue with my iMac. External storage devices will not stay mounted. I have had data corruption and several drive failures that I believe are attributable to the sudden loss of connection to the computer. It can not b

  • Movies in iPad`s Photos app are suddenly put in separate events

    Recently I have noticed that the movies i the Photos app are put in separate events, although with the same name as the original event containing the pictures. In iPhoto the structure is fine. I have tried to delete the iPod photos cache and resync,

  • VI ran from tools menu does not work correctly

    I have a VI that I created in LV7.0 and it works great in 7.1 now I am trying to get it to work in 8.0 and I get a very weird thing going on in 8.0 that I cannot understand. If I run the vi as is it works great it finds all the vi's in memory as it s

  • Appear after all buttons clicked

    OK, I have a relatively easy question for you guys. I have a slide with four persistent buttons on it and I want a link to the next slide to appear after the four buttons have been clicked. What confuses me, however, is that I'm not sure where to put