Call child window

I like to call child window as a pop up window from main window
i created 1 button by clicking that button it should invoke child window with all components in that child window,
I created child window as different flex project, could any one help me in writing code to call?

Natasha,
Thanks for your reply
I am going to include code for main window and child window
Following is the code for main window, I want to call child window by clicking button in main window.
Could you please help me in this, greatly appreciated your help
<mx:FormHeading x="311" y="10" label="VITALS " color="#D12448" fontWeight="bold" textDecoration="underline" fontFamily="Times New Roman" fontSize="20"/>
<mx:Panel x="20" y="411" width="723" height="114" layout="absolute" title="Date/Time Vital Value Entered By Purpose Of Visit" fontFamily="Times New Roman" fontSize="12" color="#020007" backgroundColor="#F9F9FB" borderColor="#6B84EE" themeColor="#6467E2">
</mx:Panel>
<mx:Button x="351" y="533" label="Exit" color="#F4240E" fontFamily="Arial"/>
<mx:Text x="71" y="383" text="Latest Vitals for this Patient" fontFamily="Times New Roman" color="#090001" fontSize="14" fontWeight="bold"/>
<mx:Panel x="20" y="47" width="723" height="328" layout="absolute" color="#0C0C0C" backgroundColor="#F6F7FB" borderColor="#6484EE" themeColor="#6467E2">
<mx:title><![CDATA[Patient, One ]]></mx:title>
<mx:Label x="32" y="49" text="Temperature" color="#000207" fontFamily="Arial" fontSize="13"/>
<mx:TextInput x="273" y="50" width="87"/>
<mx:Label x="32" y="79" text="Pulse" color="#000108" fontFamily="Verdana" fontSize="12"/>
<mx:Label x="33" y="167" text="Respiration" color="#010006" fontFamily="Verdana" fontSize="12"/>
<mx:Label x="32" y="108" text="Pain" color="#000900" fontSize="12"/>
<mx:Label x="32" y="137" text="Blood Pressure" color="#000108" fontSize="12"/>
<mx:Label x="33" y="197" text="Height" color="#000003" fontSize="12"/>
<mx:TextInput x="273" y="79" width="87"/>
<mx:TextInput x="273" y="109" width="87"/>
<mx:TextInput x="273" y="137" width="87"/>
<mx:TextInput x="273" y="167" width="87"/>
<mx:TextInput x="273" y="197" width="87"/>
<mx:Label x="34" y="228" text="Weight" color="#000007" fontSize="12"/>
<mx:TextInput x="273" y="226" width="87"/>
<mx:FormHeading x="32" y="22" label="VITAL" color="#050001" textDecoration="underline"/>
<mx:FormHeading x="273" y="22" label="VALUE" color="#060000" textDecoration="underline"/>
<mx:Button x="256" y="256" label="Save" color="#F42C11" fontFamily="Arial" fontWeight="bold"/>
<mx:Button x="334" y="256" label="Edit" color="#F42C11"/>
<mx:Button x="492" y="167" label="Purpose of Visit"
click="openChildWindow()"/>
<mx:TextInput x="-1" y="-1" width="714" backgroundColor="#EEEBEB">
<mx:text><![CDATA[ Patient, One 123-65-9987 01/01/1947 Date / Time]]></mx:text>
</mx:TextInput>
</mx:Panel>
<mx:Button x="242" y="535" label="Save And Exit" fontFamily="Arial" fontSize="9" width="93" color="#F4160B" fontWeight="bold"/>
</mx:Application>
Following is the code for child window
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:TitleWindow x="102.5" y="28" width="730" height="373" layout="absolute" title="Visit Purpose " backgroundColor="#F6F7FB" showCloseButton="true" verticalAlign="top" fontWeight="bold" borderColor="#6B84EE" themeColor="#6467E2">
<mx:Label x="88" y="45" height="22" text="Purpose"/>
<mx:RadioButtonGroup id="radiogroup1"/>
<mx:RadioButton x="147" y="28" label="Routine" groupName="radiogroup1"/>
<mx:RadioButtonGroup id="radiogroup2"/>
<mx:Label x="88" y="217" text="Date of Onset"/>
<mx:TextInput x="195" y="215" width="120"/>
<mx:TextArea x="192" y="133" height="70" width="333"/>
<mx:Label x="107" y="171" text="Symptoms"/>
<mx:Button x="282" y="267" label="Save "/>
<mx:Button x="359" y="267" label="Exit"/>
<mx:Button x="432" y="267" label="Edit"/>
<mx:Label x="88" y="95" text="Purpose of Visit"/>
<mx:TextInput x="-1" y="-1" width="768" backgroundColor="#EEEBEB">
<mx:text><![CDATA[ Patient, One 123-65-9987 01/01/1947 Date / Time]]></mx:text>
</mx:TextInput>
<mx:TextArea x="192" y="81" width="315"/>
<mx:RadioButton x="148" y="50" label="Sick"/>
</mx:TitleWindow>
</mx:Application

Similar Messages

  • Calling a Function in the Parent Window from the Child Window

    QUESTION: How do I call a function resident in the parent
    window from a child window?
    BACKGROUND
    I have a JavaScript function resident in the parent window
    that reformats information obtained from the Date object and writes
    the result to the parent window using the document.write( ) method.
    I would like to call this function from the child window and have
    it write to the child window instead. Is this possible? If not,
    must I rewrite the entire function and nest it in the below code?
    If so, what is the proper form of nesting?
    CODE: The code that creates and fills the child window is
    provided below. The highlighted area indicates where I would like
    to enter the information from the function resident in the parent
    window. I have tried every imaginable permutation of code that I
    can imagine and nearly destroyed my parent document in the process.
    I am very happy that I had a back-up copy!
    function openCitationWindow() {
    ciDow = window.open("", "", "width=450, height=175, top=300,
    left=300");
    ciDow.document.write("A proper way to cite a passage of text
    on this page:<br /><br />Stegemann, R. A. 2000.
    <cite>Imagine: Bridging a Historical Gap</cite>. " +
    document.title + ". [<a href='" + location.href + "'
    target='_blank'>online book</a>] &lt;" + location.href
    + "&gt; (");
    MISSING CODE;
    ciDow.document.write(").<br /><br /><input
    type='button' value='Close Window' onclick='window.close()'>");
    ciDow.focus();

    Never mind - I was doing something very stupid and wasn't
    calling the function as a method of a movie clip. I was simply
    calling checkTarget(event) rather than
    event.currentTarget.checkTarget(event); which seems to work.

  • Calling a function in child window from parent window

    Hi,
    How can I call a method in child window from parent window in adobe air using javascript. In the following example I need to call mytest() function in
    child.html from parent.html file.
    Thanks,
    ASM
    //parent.html
    <HTML><HEAD>
    <script>
    var initOptions = new air.NativeWindowInitOptions();
    initOptions.type = air.NativeWindowType.NORMAL;
    initOptions.systemChrome = air.NativeWindowSystemChrome.STANDARD;
    var bounds = new air.Rectangle(300, 300, 600, 500);
    var html2 = air.HTMLLoader.createRootWindow(false, initOptions, false, bounds);
    var urlReq2 = new air.URLRequest("child.html");
    html2.load(urlReq2);
    html2.stage.nativeWindow.activate();
    html2.window.mytest();       //NOT WORKING
    </script>
    </HEAD><body></body></HTML> 
    // child.html
    <HTML><HEAD>
    <script>
    function mytest()
      air.trace("in child window");
    </script>
    </HEAD> <body></body></HTML>

    I suspect your problem is that the child window hasn't been created by the time you call the function in the parent.Loading the content is an asynchronous processes -- AIR doesn't stop executing your code until the window has finished loading child.html. So, you will need to add an eventlistener to html2 and call the function from there:
    html2.addEventListener( "complete", onChildLoaded );
    function onChildLoaded( event )
         html2.window.mytest();

  • How to define Side Panels for linked to Child Window Applications

    We are trying to use the NWBC Side Panel with PPM 6.0 in NWBC 3.5.  We have a Role that has a menu defined that gives the users a link to the INM_WORKCENTER_APP which displays the current user's Tasks in a table.
    When we click on a task in the table it opens the task details using the CPROJECTS_FPM application in a new window.  This new window that opens up doesn't have any of the Side Panels that we have defined on the role with the main menu links.
    We have tried to add the side panel using different application alias and at different levels in the Role, but can't get a Side Panel to show up on the child window.  We even tried to switch the window to open INPLACE in the main window and it still switches to no side panels.  The only side panels we are able to see is side panels that the user has manually added under connections and the Data Context Viewer side panels.
    Is NWBC capable of having side panels to be defined to be available for these linked to child applications that are called from a main application screen?  If so, what is the possible configurations we need to make on the role for this to work properly?
    Thanks in advance for any help!

    Wanted to close this thread with the solution that worked for us.
    We had to change the Launchpad configuration for Role CPROJECTS Instance OIF.  We changed the Application from a Web Dynpro ABAP type to Object Based Navigation.  Set the Application Parameters Business Object to PROJECT and Operation to DISPLAY.
    Then for our role defined in PFGC for our NWBC, we added a new menu item to the Web Dynpro application CPROJECTS_FPM with Configuration CPROJECTS_FPM.  Then under Object Based Navigation we set the Object Type to PROJECT and Method to DISPLAY to match what we set above in the Launchpad.  Then set the menu item to be invisible since we didn't want it to show to users.
    Now when we launch the child window it uses OBN and sees the definition in our role and utilizes the same Side Panel definitions defined for the role.

  • Communicating between the parent and child windows in Struts

    Hey,
    I would like to know what is the best way to communicate between the child and parent windows on a struts based web application. For example i have a struts based jsp page. I call a child window from this page. On the child window i select few values and they have to be shown on the parent. What is the best way to achieve this in struts.
    Thanks
    in advance.
    KM

    The only way to do this without Javascript is to have the child window have a form and the form has a target defined as the name of the parent window (how to name it without using frames or having it open from another window, I'm not sure), and when you submit the form, it'll submit to the parent window/frame and you can process that form on the server and return the same parent page with the selected values.
    Otherwise, you need Javascript to set form values to "window.opener" from the child window.
    Either way, it's not really a Struts thing, technically.

  • I sent a matrix,its row and column to a child window. However "Acess violation" & 'Memory cannot be reference" error occurs when I try to plot the data in the child dialogue. Why?

    My OS is Win200 professional.
    I'm running a data acquisition program. I'd got this main dialog which the user selects the input channel.
    The child dialog should show the graph.
    I'd initialise all the NI_DAQ configuration in the main dialog class. After acquiring the data, I send the matrix to the child window for it to plot. There is no compilation error.
    However when I try to plot the data, Windows complained about Acess violation and Memory cannot be accessed error.
    I'd attached my program below.
    Attachments:
    DataAcqDlg.cpp ‏10 KB
    Ch1Dlg.cpp ‏7 KB

    Wynn:
    I believe this problem is occurring because you are using the index operator (brackets "[","]") instead of the functional call operator (parentheses "(",")") in your code to access the matrix.
    SigCh1Vect[i] = SigCh1Max[1,i];
    The index operator is not defined for the matrix, because the C++ language does not allow a two-argument overload of this operator. Instead you have to use the function call operator for matrices and remember to use the index operator for vectors.
    I believe that what is happening is that the compiler is using one of the defined cast operators on the matrix (operator DataType) to convert the symbol "SigCh1Max" into a double pointer. It then interprets the bracket as it would any array index operation. So the compile
    r effectively sees:
    SigCh1Vect[i] = *(((Real64*)SigCh1Max) + (1,i));
    In this case, I believe the comma operator is defined to return the rightmost operand, or "i". Changing your code to
    SigCh1Vect[i] = SigCh1Max(1,i);
    should fix the problem. Please let me know if any issues exist after this fix.
    In the next release of Measurement Studio, I will recommend that the index operator be defined on the matrix classes, even if it simply throws an exception. The existence of this operator will prevent problems like this from showing up.
    Hope this helps,
    -- Chris W.
    Measurement Studio R&D
    National Instruments

  • Problem in getting data into the child window.

    Hi.
    problem description:
    I have a jsp(lets say parent.jsp). On click of a button in parent.jsp, a showmodal dialogue opens(say child.jsp).
    child.jsp has several fields and a 'search' button.
    On click of the 'search' button in child.jsp, data should be fetched from Database and should be populated in child.jsp, without submitting parent.jsp.
    I am able to fetch the data from DB. But unable to populate it in the same child window.
    How to achieve this?
    thanks
    Akash

    areee yaar...ajax and jsp are two different things altogther...whats harm in using ajax if most of the webapplication now deploy ajax for asynchronous call..

  • Want to use popup child window

    Hi everybody.....
    In my page i have a button. on clicking this button another window is opened which contain only a single textarea and a button. I want to get the text (written in the text area) when user click on that button of the new window i come back to original window with that text information. how can i do this? i know that with DOM i can do in my jsp. but how? Can anybody know this?
    - Jignesh

    window.opener will give you a reference to the parent window.
    My preferred method is to write a javascript function inside the parent window which is called by the child window, rather than the child window directly accessing fields/properties on the main window.
      // in child.jsp
      var value = document.forms[0].txtInput.value;
      window.opener.callBackFunction(value)
      // in parent.jsp
      function callBackFunction(text){
        // do something with this text value

  • How can i set background color of child window in jdk 1.6

    Hi friends i hv devoloped simple java app using javax.swing.JFrame in which on click button event i open new child window using JFrame to draw some image.
    i set childs background color as setBackground(Color.lightGray);
    but the problem is,child window takse its background color same as its parent window.(i.e. main window's color or desktop ).i get this problem in jdk 1.6.but it is working fine in jdk 1.5.
    how can i set background color of child window in jdk 1.6 .
    plz solve my problem.
    thanks in advanced.

    Mo,
    Call me old fassioned, but I simply refuse to demangle SMS speak.
    You've got a whole keyboard, so learn how to use it.
    Keith.

  • Call new window with the parent to be frozen blur

    hi,,
    please suggest me how we will call a new window while the parent window will get to frozen or blur...and the child windows border should not be visible and it has similar look as like a popup.
    Thanks and Regards,
    Muthu..

    Which jdev version do you use?
    A glass pane might be what you are looking for http://www.oracle.com/technetwork/developer-tools/adf/learnmore/27-long-running-queries-169166.pdf
    Timo

  • Opening new child window - Running servlet

    Hi
    Currently , I have a javascript code that opens a child window. This child window is a Java Server Page called showdata.jsp that uses some data from the database.
    I have used this function to open my page :
    <script language="JavaScript">
    function open_a_window(){
    childwin = window.open("showdata.jsp","dataname", "height=300,width=100");
    </script>Ideally, a servlet should be executed to do the business logic and extract the data that will be displayed on showdata.jsp. Moreover, the user may perform search in the child window, to filter or find the results returned. My questions are as follows:
    1. How to run servlet from Javascript that does the logic and then the results are displayed in showdata.jsp (as a child window)?
    2. How to go about filtering or finding results in showdata.jsp while it is open ? what is the recommended method? because the results have a check box next to them and when user choses and closes window they are reported back to the main JSP which opened the child JSP.
    Any suggestions, reading materials, code , etc is very appreciated.
    Thanks in advance
    Agapito

    Yes you can....
    and the Best way to do it make a Collection of Data Transaction Object you have defined.
    Just as an Example.
    Say your are displaying results of an Employee which contains properties like EmployeeID,Employee Name,Email Address,Contact Information in a Table try to get the results something like
    ArrayList<EmployeeDTOBean> By considering the above example
    lets take a small example
    public class EmployeeDTOBean implements Serializable{
    private int empid;
    private String empName;
    private String empEmail;
    private String empContactInfo;
    // Getters & setters for all the defined properties.
    }and try to get all these results throught a Data Access Object which provides you few methods to fetch relavant results.
    in the above case.
    public List<UserBean> getEmployeeResult(int baseEmpId){
        List<UserBean> aList = new ArrayList<UserBean>();
        UserBean ub = null;
        try{
          con = DbUtils.getConnection();
          pstmt = con.prepareStatement("select emp_id,emp_name,emp_email,emp_contact from employee where base_emp_id = ?");
          pstmt.setInt(1,baseEmpId);
          rs =  pstmt.executeQuery();
          while(rs.next()){
              ub = new UserBean();
              ub.setEmpid(rs.getInt("emp_id"));
              ub.setEmpName(rs.getString("emp_name"));
              ub.setEmpEmail(rs.getString("emp_email"));
              ub.setEmpContact(rs.getString("emp_contact"));
              aList.add(ub);
       }catch(Exception exp){
            LoggingUtils.logException(exp,"In getEmployeeResult("+baseEmpId+")");
       }finally{
           try{
                if(rs != null)
                  rs.close();
                if(pstmt != null)
                  pstmt.close();
                if(con != null && !con.isClosed())
                  con.close();
           }catch(Exception e){
                    LoggingUtils.logException(exp,"In getEmployeeResult("+baseEmpId+")");
           }finally{
                  con = null;
                  pstmt = null;
                  rs = null; 
       returns aList;
    } NOTE: It would be a Gr8 if you can refer to DAO pattern for a better understading of what trying to explain.Please refer to
    http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html
    Now after getting this results from a Controller save it in the scope of session and try to operate your logic and present your data this would enable you to pickup results from the session not going back to database again.
    And if you need a better way to present that kind of data in crisp and formatted way.I'd recommend you to go with a specific Tag Library
    Please refer to
    http://displaytag.sourceforge.net/
    and in order to that specfic it is preety simple if you go with the documentation which they provide.
    Hope this might help :)
    REGARDS,
    RaHuL

  • How to load 2 CVI panels as child window to a parent window created by VC++?

    Hello, I want to load 2 CVI panels as child window to a main window, which is created by VC++.
    the CVI panel is in a dll file(created by LabCVI). 
    the Load child panel routine is something like following,
    int __stdcall RunDLLUI (int* hParent )
    int hpanel;
    HWND hWnd;
    if ((hpanel = LoadPanelEx (0, "guidlluir.uir", PANEL, __CVIUserHInst)) < 0)
    return 0;
    // set parent
    if ( hParent != 0 )
    GetPanelAttribute (hpanel, ATTR_SYSTEM_WINDOW_HANDLE, (int *)&hWnd);
    SetParent( hWnd, (HWND)hParent);
    DisplayPanel (hpanel);
    // RunUserInterface ();
    return 1;
    The problem is, if I call  RunUserInterface (), then no window shown, it is, I think, that this routine blocks both the other panel to be created and the main window to be shown.  but if I don't call it, the 2 child windows won't response mouse event. seems no message dispatching for them.
    so how can I get what I want, thx a loooooooooooooooooooooooot.

    Hello, I want to load 2 CVI panels as child window to a main window, which is created by VC++.
    the CVI panel is in a dll file(created by LabCVI). 
    the Load child panel routine is something like following,
    int __stdcall RunDLLUI (int* hParent )
    int hpanel;
    HWND hWnd;
    if ((hpanel = LoadPanelEx (0, "guidlluir.uir", PANEL, __CVIUserHInst)) < 0)
    return 0;
    // set parent
    if ( hParent != 0 )
    GetPanelAttribute (hpanel, ATTR_SYSTEM_WINDOW_HANDLE, (int *)&hWnd);
    SetParent( hWnd, (HWND)hParent);
    DisplayPanel (hpanel);
    // RunUserInterface ();
    return 1;
    The problem is, if I call  RunUserInterface (), then no window shown, it is, I think, that this routine blocks both the other panel to be created and the main window to be shown.  but if I don't call it, the 2 child windows won't response mouse event. seems no message dispatching for them.
    so how can I get what I want, thx a loooooooooooooooooooooooot.

  • Keep child window open while Parent window got focus

    Hello,
    In my applet i invoke the window using the JPanel.it's my parents window.
    to do some other task i m opening the other window called it "Child window".
    my problem is that when i m click on the parent window.the child window is invisible. i want my child window is still open while parent window is activated.
    just like when we open find dialog in eclipse editor,it show that find dialog untill we manually close it.
    can any one give me the solution on how to visible the child window while parents window is activated.
    child window is open through JDialog.
    Regards,
    Sonal.

    ya you r right..Child window is still visible bt it's
    behind browser.
    i want that dialoge will be visible in front of the
    parant window.not behind parent window,while my
    parent window is activated.
    so canu plz tell me the way to do it??Try to call
    public final void setAlwaysOnTop(boolean alwaysOnTop)

  • How to Close Multi Child Windows : ADF Swings - Urgent

    Hi,
    I have developed a application having Login , Filter , Master , Details , and Detail Screen . In the Filter Screen If i click on button called " CLOSE CHILD WINDOW " , all the screens ( Master , Details And Summary ) to be closed .
    Can u please let me know how can i do this .
    For even Child Window to open from parent Window , i have implemented same piece of code from adfwhitepapers docs.
    private void jButton1_actionPerformed(ActionEvent e) {
    SalesOrderDetails salesOrderDetails = new SalesOrderDetails();
    salesOrderDetails.setBindingContainer(createDetailBinding(salesOrderDetails));
    DCIteratorBinding iterBinding = getPanelBinding().findIteratorBinding("SalesOrderEOVO1Iterator");
    RowSetIterator detailAccessor = iterBinding.getRowSetIterator();
    salesOrderDetails.getPanelBinding().findIteratorBinding("SalesOrderEOVO1Iterator").bindRowSetIterator(detailAccessor, false);
    salesOrderDetails.setVisible(true);
    int count = 0;
    private DCBindingContainer createDetailBinding(SalesOrderDetails salesOrderDetails)
    String detailBCName = "SalesOrderDetailsPageDef"+count;
    if (panelBinding.getBindingContext().get(detailBCName) == null)
    DCBindingContainerDef bcdef = DCBindingContainerDef.findDefObject("oracle.eaton.userinterface.pageDefs.SalesOrderDetailsPageDef");
    DCBindingContainer bc = bcdef.createBindingContainer(panelBinding.getBindingContext());
    bc.setName(detailBCName);
    panelBinding.getBindingContext().put(detailBCName, bc);
    ++count;
    return bc;
    return null;
    Regards
    Bhanu Prakash

    I have referred this link for the consecutive opening and closing screen for the linkage between the two screen like 1&2 , 2&3 , 3&4 , that was my understanding if so not can u please explain me . My requirement is to close all the child windows from the Super Parent Window , i.e. on Select of close button in Filter Screen all the screen ( Master,Detail,Summary ) should be disposed or close ,
    I have generated 4 screens :::
    1. Filter Screen
    2. Master Screen
    3. Detail Screen
    4. Summary Screen
    Can any one help me by giving there solution to sort out this issue . Its very Urgent .
    Regards
    Bhanu Prakash

  • Question about child "windows"

    Hello Everyone,
    First, I want to thank everyone who's so graciously taken
    their time to answer my previous questions. Because of you, I am
    well on my way to developing my very first real world Flex
    application. I am consistently astounded at how helpful this
    community is and am very thankful to have you all here.
    Now, I do have one question about some code that works on the
    example but not in real life. I am trying to open a popup window
    from a class named composeScreen. In my CDATA section, I have the
    following code:
    function showWindow(modal) {
    var popup = mx.managers.PopUpManager.createPopUp(this,
    composeNewMessage, modal, {deferred: true});
    Yet, when I save the program, Flex Builder tells me:
    "Access of undefined property mx"
    Any idea why this is happening?
    I've even tried importing the mx.managers.popUpManager class
    and it makes no difference.
    Please help! This is driving me nuts!
    Thanks in Advance,
    Anthony

    Hi Anthony,
    You will have to use popup manager class for this.Here is the
    code to give you a lil bit of direction. Call init() function in
    the initilize event of the <mx: application> tag
    import mx.managers.PopUpManager;
    private function init():void{
    myWindow = PopUpManager.createPopUp(this, MyWindow, false);
    myWindow.visible = false;
    myWindow.x = 200;
    myWindow.y = 200;
    myWindow.height = 100;
    private function showWindow():void{
    myWindow.visible = true;
    myWindow.expand.play();
    <mx:Button id="btn" label="click me"
    click="showWindow()"/>
    When you click on the button your child window must pop
    up.

Maybe you are looking for

  • IMac G5 vs Intel Mac Mini

    Hi guys, My question is actually the title to the thread... which is faster? I have a 20inch iMac G5 Rev A and am debating selling it, putting an intel mini into a spare cube case and running two monitors from it or something - or at least one big on

  • How do I convert a pdf file to a jpg or bmp file?

    I have a Mid 2010 iMac OX Yos 10.10.1 with an HP all in one printer/scanner. I am scanning a document to file and it is saving as a pdf I am trying to edit the document and the program i use to edit things like this is Paintbrush. However, for me to

  • Install Linux/POSIX compatible software on 10.4

    Hello everybody, i'd like to capture the RAW image data from a machine vision camera (XCD-SX910CR) through firewire. unfortunately there doesnt seem to be any software for OSX doing that, but i've found a Linux app called "Coriander" that supposedly

  • ORA-27300-1-2 Database on Windows 2003 was hung

    Hi all, Our 11g database running on windows 2003 was hung. We bounced the database and reduced SGA_MAX_SIZE/SGA_TARGET =900M from 1200M. Problem was resolve. SGA_MAX_SIZE/SGA_TARGET =1200M PGA_AGGREGATE_TARGET=540M Can anyone explain meaning of below

  • In fiefox 4, you can't save attached Jpeg photos, as Jpeg photos, firefox 4 saves then as a html

    After upgrading to Firefox 4, when I down load an attached file ( which is a Jpeg photo, and I'm using Yahoo mail ) Firefox 4 will not save the file as a Jpeg, it wants to save it as a HTML ..... I didn't have this problem with earlier versions of Fi