Create controls inside a container?

So I am now creating a checkbox at runtime with the following
code:
import mx.controls.CheckBox;
createClassObject( CheckBox, "button2", 5, { label:"Test
Checkbox" } );
Is there a way to create a button inside another object like
a ScrollPane (or something else?)? I created a ScrollPane at
designtime, and would like the checkboxes, as well as text and
perhaps draw lines within it at runtime. Is this possible? If not,
is there another container which would allow this?
I am trying this with the following code:
CounterScrollPane.createClassObject( CheckBox, "button3", 5,
{ label:"Test Checkbox" } );
but that doesn't work.
Any thoughts?
Thanks!

Sorry I didn't explain more. contentPath can be an external
swf (in which case you need to wait for it to load.
But it can also be a movieclip in the library set with its
linkage identifier to the name used in the contentPath property of
a container component. That's what I did here.
a. I made a square, turned it into a movieclip..
b. then in the library, right-clicked it, and chose linkage
c. in the identifier field (it probably already has
something) put the name you want to use in contentPath
d. make sure that export for actionscript is checked and in
first frame

Similar Messages

  • Usage of Apache Beehive JMS control inside Message Driven Bean

    Hi,
    I am developing a j2ee application using weblogic workshop 10.3. This application contains the following three projects.
    - J2EE Utility Project
    - Message Driven Bean Project
    - Ear Project
    In the Utility project I have created one apache beehive jms control. I am using this control inside the message driven bean application. I haven't got any issues during the development and deployment phase with the beehive control. But during runtime the apache beehive jms control is not getting instantiated and the mdb application is throwing the null pointer exception when the EJB container try to execute the methods on the control instance. I have used the declarative programming model to create the control instance inside the mdb application.
    I am using the weblogic 10.3 server for testing and I have created the 10.3 weblogic+workshop domain. By default it has the beehive libraries deployed.
    Can somebody help me out to resolve this issue?
    Regards,
    Bp

    You can get the message directly with getText() method. Following is the snippet of code.
    if (aMsg instanceof TextMessage) {
    TextMessage msg = (TextMessage) aMsg;
    String testMessage = msg.getText());
    Kishore.

  • Executors inside a container

    Hi. I need to use ExecutorService inside my application.
    Application is targeted to intensive usage and I want to take advantage of Java SE 5 concurrency.
    How can I use Executors inside Web container? Can I create ExecutorService and put it to ServletContext?
    How can I use Executors inside EJB container? Can I put it to JNDI?
    Is there any restrictions or special conditions to do this?

    Frank,
    Thanks, wasn't sure what extra information to provide but I'm running 11.1.1.3.0 of JDeveloper. If I create a two level tree data contol that works fine. When I add the third level I get the error yet I can navigate through the data control using the business components browser and the structure seems fine. I've tried two separate two level data controls; the first with the top two levels of the tree, the second with the bottom two levels of the tree. Both work fine but when I combine them into a single data control, then I get the error.
    One of the problems I have is not knowing what the error means, so I have no idea what to start looking at to determine what to do to try to remedy it.
    George

  • Show hidden control inside editor

    Hi,
    i have following question! I created a user control inside the editor.
    It contains a cluster with several controls inside. Each control i can
    hide or show. But how can i get back the visibility of the cluster
    after i hide it? I didn't found an entry in the menu or anything else...
    Could somebody give me a tip?
    Thnx
    Henrik

    > sorry, i think that i explained it not enough.
    > What i want to have is a custom control which will show a bitmap when i
    > insert it into a vi. Cause the custom control is a cluster with 17
    > controls inside, i wanted to hide all controls and the cluster and show
    > a bitmap instead. The main reason is to hide the flowing data and to
    > reduce the size of the painted element in all this control using vi's.
    > The work i have to do in the custom control editor and there is no
    > diagram avaible. Later perhaps i have to make changes to the
    > cluster...how could i make it visible to change the data?
    >
    I'm afraid I'm still not sure what is being asked. Here is
    my guess. You want to use a strict typedef of a cluster of
    17 items. The typedef takes too mu
    ch room on your subVI
    panels. I'd recommend shrinking the cluster to clip out
    the items. This isn't a good idea in general because you
    can't see the items, but this seems to be what you are
    looking for. Make the cluster be about the size of a
    postage stamp and place a graphic or a comment label
    inside of it.
    When you are ready to show the items again, open the
    typedef and grow the cluster again.
    If the reason for shrinking the cluster is to minimize
    the memory impact, keep in mind that the panels that
    contain the controls are not kept in memory on most subVIs,
    and in fact, they aren't even compiled into a built executable.
    Greg McKaskle

  • How can I make a control inside a loop in a subVI change value when the calling VI's control changes?

    Hi.
    I think this is a pretty basic LV question, but I have not been able to find a good solution.
    I am attaching VIs that show the problem I am having, but obviously, the real application is a lot complicated, which forces me to try to do it this way.
    The issue is: I have a subVI with a Boolean control inside a loop.  When the control is true I want some action to take place.  When the subVI is run on its own, it works fine, acting properly when I set the boolean control to true via the LV FPGA interface from the host.  However, when I use it as a subVI, in which the top-level VI calls several instances of the subVI, I have the Boolean controls in the top level VI.  What is happening is that the false Boolean value with which the top-level VI starts is passed into the subVIs, and not updated, even though the control is inside the loop.
    Can any one suggest a good solution?
    Thanks,
    AlejandroZ
    Attachments:
    CallingVI.vi ‏7 KB
    subVI.vi ‏8 KB

    Hi.
    I know the example I posted might seem silly, but it was just to illustrate the problem I am having.  In reality this is the application:
    I have some LV FPGA code which uses a few FPGA IO to implement a serial link to communicate with a device.  Most of the time we are getting data from the device, so the serial link is used to send a read command, read in the data and put it into a FIFO.  However, I also wanted the VI to support sending data to the device, so I added an array control to put the data you want to send, and a boolean control to tell it you want to send it.
    Since sending and receiving data are done using the same FPGA IO, they cannot be independent operations, because they would garble each other. Therefore, in the subVI I have a loop in which I first read data if there is any to read, then check the boolean write control to see if there is data to write.
    As I mentioned, this works perfectly for talking to a single device.  However, we run into the issue of this topic when trying to replicate this for several devices.
    One easy solution is to not have the loop in the subVI, and have it in the calling VI (I am favoring this simple solution right now).  The only reason why I have not done this yet, is that the subVI has more than one loop, so I am going to have to create several subVIs.  I just posted to see if there was an even simpler solution...
    There have been some other possibly good solutions proposed here, though I am not sure if they work in LV FPGA.
    Thanks for all your responses.
    AlejandroZ

  • Centering an image inside its container

    Hi,
    I have been placing several images with text on a web page on which I have been using CSS3 to float the images either left or right so that my text wraps around the image.
    Now, at the bottom of this same page, I want to add a wider image that I do not want to wrap text around.  I just want the image to centered on my page (or in its container I guess I should say, which is a div).
    If anyone could tell me the best way to do this, I would greatly appreciate it.
    Thanks in advance,
    Paul

    Thank you Ken,
    I created the .clearing rule as you suggested and added the <hr class="clearing" /> after the end of the paragraph that wraps around my second (and final) floated image.
    After the <hr class="clearing" />, I have my image reference for the image I want to be centered inside its containing DIV as follows....
    <hr class="clearing" />
    <p><img src="Images/pk_38_41_43.jpg" alt="Membrane Casting Line" width="612" height="367" class="center"/></p>
    ...the class="center" is a class I created where I set the left and right margins to "auto", hoping that this would do the job.  This didn't work.  My image appears all the way to the left.  If you can give me a hint what I should do to get it centered, I'd really appreciate it.
    Thanks again for your help,
    Paul

  • Getting Not inside a container with tree (key attributes defined)

    Hello,
    I'm building an ADF tree with a recursive entity based query:SELECT ProjectIndicators.ID_COMPONENT AS ID_COMPONENT_KEY,
           ProjectIndicators.ID_PROJECT AS ID_PROJECT_KEY,
           ProjectIndicators.THE_VALUE,
           , res.ID_COMPONENT
           , res.ID_PROJECT
           , res.ID_MAIN_COMPONENT
    from PROJECT_INDICATORS_BA ProjectIndicators
    SELECT Project.Id_Project
           , Component.Id_Component
           , Component.Id_MAIN_COMPONENT
    FROM ...
    WHERE ... and Project.Id_Project = :Bind_IdProject
    ) res
    WHERE ProjectIndicators.Id_Project (+) = res.ID_PROJECT
          AND ProjectIndicators.Id_Component (+) = res.ID_COMPONENTNote there's a *:Bind_IdProject* peremeter inside a subquery.
    Queried data is:ID_COMPONENT_KEY     ID_PROJECT_KEY     THE_VALUE     ID_COMPONENT     ID_PROJECT     ID_MAIN_COMPONENT
                                                   1064             1003     
                                                   1065             1003             1064
                                                   1353             1003             1066
    1646                     1003                             1646             1003             1065
                                                   1586             1003             1066
                                                   1587             1003             1066
    1605                       1003              11             1605              1003             1065
    1625                       1003                          1625             1003             1065
                                                   1845             1003             1065
                                                   1846             1003             1845 ID_COMPONENT_KEY and ID_PROJECT_KEY are primary keys of PROJECT_INDICATORS_BA. THE_VALUE is a filed I need to edit (in case a row is null, a new row would be created on runtime).
    ID_COMPONENT and ID_MAIN_COMPONENT is a recursive relationship. ID_PROJECT is a foreign key.
    The recursive view link is
    Source            Destination
    IdComponent   IdMainComponent
    IdProject         IdProject
    Query
    (:Bind_IdComponent = ID_MAIN_COMPONENT) AND (:Bind_IdProject = ID_PROJECT)So I build a treetable on my page and the first (root) level looks fine. I can disclose a row and see the second level.
    But when I try to disclose any second level row I get java.lang.IllegalStateException: ADFv: not inside a container.
    Funny is that I can do "right click - disclose all" on any row, and I will see an entire tree without any errors.
    Seems, this messae should signal that there is no PK defined in the View Object, but here is prmary key definition:  <AttrArray Name="KeyAttributes">
        <Item Value="IdComponentKey"/>
        <Item Value="IdProjectKey"/>
      </AttrArray>Tricky is that the tree must show some records where primary keys are null. But still "disclose all" button works fine.
    I also tried a key like:  <AttrArray Name="KeyAttributes">
        <Item Value="IdComponentKey"/>
        <Item Value="IdProjectKey"/>
        <Item Value="IdComponent"/>
        <Item Value="IdProject"/>
      </AttrArray>But that only shows me a root level, no child records.
    Any help wpuld be appreciated.
    Thanks.
    ADF 11.1.2.1
    Found kinda workaround adding NVL to keys:
    SELECT nvl(ProjectIndicators.ID_COMPONENT, 0) AS ID_COMPONENT_KEY,
           nvl(ProjectIndicators.ID_PROJECT, 0) AS ID_PROJECT_KEY, And yet it works... but that seem to deliver me some DML troubles.
    Edited by: ILya Cyclone on Apr 25, 2012 4:54 PM

    Hello,
    I'm building an ADF tree with a recursive entity based query:SELECT ProjectIndicators.ID_COMPONENT AS ID_COMPONENT_KEY,
           ProjectIndicators.ID_PROJECT AS ID_PROJECT_KEY,
           ProjectIndicators.THE_VALUE,
           , res.ID_COMPONENT
           , res.ID_PROJECT
           , res.ID_MAIN_COMPONENT
    from PROJECT_INDICATORS_BA ProjectIndicators
    SELECT Project.Id_Project
           , Component.Id_Component
           , Component.Id_MAIN_COMPONENT
    FROM ...
    WHERE ... and Project.Id_Project = :Bind_IdProject
    ) res
    WHERE ProjectIndicators.Id_Project (+) = res.ID_PROJECT
          AND ProjectIndicators.Id_Component (+) = res.ID_COMPONENTNote there's a *:Bind_IdProject* peremeter inside a subquery.
    Queried data is:ID_COMPONENT_KEY     ID_PROJECT_KEY     THE_VALUE     ID_COMPONENT     ID_PROJECT     ID_MAIN_COMPONENT
                                                   1064             1003     
                                                   1065             1003             1064
                                                   1353             1003             1066
    1646                     1003                             1646             1003             1065
                                                   1586             1003             1066
                                                   1587             1003             1066
    1605                       1003              11             1605              1003             1065
    1625                       1003                          1625             1003             1065
                                                   1845             1003             1065
                                                   1846             1003             1845 ID_COMPONENT_KEY and ID_PROJECT_KEY are primary keys of PROJECT_INDICATORS_BA. THE_VALUE is a filed I need to edit (in case a row is null, a new row would be created on runtime).
    ID_COMPONENT and ID_MAIN_COMPONENT is a recursive relationship. ID_PROJECT is a foreign key.
    The recursive view link is
    Source            Destination
    IdComponent   IdMainComponent
    IdProject         IdProject
    Query
    (:Bind_IdComponent = ID_MAIN_COMPONENT) AND (:Bind_IdProject = ID_PROJECT)So I build a treetable on my page and the first (root) level looks fine. I can disclose a row and see the second level.
    But when I try to disclose any second level row I get java.lang.IllegalStateException: ADFv: not inside a container.
    Funny is that I can do "right click - disclose all" on any row, and I will see an entire tree without any errors.
    Seems, this messae should signal that there is no PK defined in the View Object, but here is prmary key definition:  <AttrArray Name="KeyAttributes">
        <Item Value="IdComponentKey"/>
        <Item Value="IdProjectKey"/>
      </AttrArray>Tricky is that the tree must show some records where primary keys are null. But still "disclose all" button works fine.
    I also tried a key like:  <AttrArray Name="KeyAttributes">
        <Item Value="IdComponentKey"/>
        <Item Value="IdProjectKey"/>
        <Item Value="IdComponent"/>
        <Item Value="IdProject"/>
      </AttrArray>But that only shows me a root level, no child records.
    Any help wpuld be appreciated.
    Thanks.
    ADF 11.1.2.1
    Found kinda workaround adding NVL to keys:
    SELECT nvl(ProjectIndicators.ID_COMPONENT, 0) AS ID_COMPONENT_KEY,
           nvl(ProjectIndicators.ID_PROJECT, 0) AS ID_PROJECT_KEY, And yet it works... but that seem to deliver me some DML troubles.
    Edited by: ILya Cyclone on Apr 25, 2012 4:54 PM

  • How to Programmatically Set the limit (max, min input) of a control inside a cluster?

    I want to programmatically set the limit (max, min input) of a control inside a cluster. (see attached VI).
    The max, min value will be read from a file. The input of the control must be within the range defined by the max and min value.
    Can anyone tell me how to do it?
    Thanks a lot for your kind help.
    Xiaogang

    Accessing the properties of a cluster (or array) is not a trivial operation until you have done it once. It's a two step (at least) process : first, ask for a reference (array of...) to the objects contained in the cluster, then tell LV what kind of object you are adressing.
    See the attachment.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    How to set limit[1].vi ‏52 KB

  • Bringing dynamically created controls into scope

    Normally I can bring controls into scope in a function with
    the line
    var myControl = myControl;
    where myControl is the name of the control.
    If I dynamically create controls (called say cbx1, cbx7 etc.
    where the
    numbers are all different, but not necessarily contiguous)
    and save
    their names in myArray, then myArray[0] will contain the name
    of one of
    my new controls.
    How can I bring this control into scope in my function?
    And is there a way to create, read and change variable
    variables in
    ActionScript?
    Doug

    create an array within your function that's local to your
    function, if that's what you want. what's the purpose,
    though?

  • Blink a control inside a subpanel: is it possible?

    What is the right way to blink a control button inside a subpanel?
    I have done a simple program that loads an external VI (containing a control and an indicator) inside a subpanel: when i try to blink the button, the property node returns TRUE value, but i don't see the control blinking.
    Solved!
    Go to Solution.
    Attachments:
    blink control inside a subpanel.vi ‏19 KB
    OK Button.vi ‏7 KB

    I'm not able to look at the code where I am, but it looks to me as if the vi in the sub-panel is not continuously running, but rather runs once every loop lap, not allowing it to run for a time long enough for the control to blink. 
    If I'm right, make sure the vi in the subpanel runs continuously and start that vi once before going into the calling vi:s loop. Then set the blinking property as you already do now. You will have to read the 'OK led' by property node as well if you need it.
    CLA
    www.dvel.se

  • Create fields on a container

    Is it possible to create fields on a container? I know how to create an alv or insert a graphic, but can I also create fields on a container?

    ALV is a gui control , which means it can be bind with the screen via custom container and container on the screen. Generally most of "modern" controls are created dynamically by instiantating one of delivered class (i.e. cl_gui_alv_grid, cl_salv_table, cl_gui_alv_tree etc).
    On contrary, we have classical controls just called controls . These, on the other hand have to be phisically placed on the screen (like fields, checkboxes, radiobuttons, pushbuttons etc) or can be used on selection screen via parameters or select-options statements. These controls must reside on screen itself (without container). You set them statically (and possibly change their attributes dynamically in loop at screen loop).
    As for the question itself: NO, fields (as part of controls ) can be placed only on the screen or subscreen which you can in turn display dynamically druing program execution (using subscreen area ). No container is involved here.
    Regards
    Marcin

  • Property node of a control inside of cluster inside an array

    I've created a control that has a cluster made of a Boolean, a String and a Numeric.  Then in my front panel I've created an array of these custom controls.  I would like to have access to the property of the controls inside of the cluster within the array.  ie, I want to change the color of the Boolean or make it blink, or "disable and gray" the text box.  I think I'm on the right track, or maybe I'm on the wrong path.  I've attached and example VI (testtray.vi) and the control that I'm using (UUT_Display.ctl).  Please excuse the use of a Flat Sequence Structure, I know it's poor programming practices, but I just wanted to throw something together.
    Any help would be appreciated.
    kevin
    Solved!
    Go to Solution.
    Attachments:
    testTray.vi ‏19 KB
    UUT_Display.ctl ‏5 KB

    I have enclosed a quick and dirty example of replicating the blinking in an array of clusters.  You can turn it on and off, but as we have noted, only for all of the elements.  If you were only showing one element of the array you could change properties based on which element was displayed.  You probably want to see them all.  In that case, you could use a cluster of clusters.  This may be a pain, but I would suggest that you use an array of clusters to do your manipulations.  Use Array->Cluster to convert to a cluster for display purposes.  Then you can manipulate the properties of the cluster.
    My guess is easier said than done, good luck.
    Attachments:
    Blink182.vi ‏98 KB

  • How can I find the coordinates of individual controls inside a custom control?

    I have a custom control that contains 44 smaller custom controls.
    I can get the coordinates of the 44 embedded custom controls by getting the controls[] property of the main control, but I cannot find a way of getting the coordinates of the controls inside each of these smaller custom controls.
    Is there a way of getting at the coordinates of custom controls that are nested several layers deep?
    Erik.

    For future reference and for any LabVIEW users who have older versions here are the Front Panel displays before running the VI along with the Wiring Diagram with each of the four cases for handling the various types of ClassIDs that can contain child controls.  X1, X@, Y1, and Y2 are the coordinates of the top left and bottom right corners of each control.  These coordinates can then  be used to determine which control the mouse is pointing at.
    In my own project I did further evaluation to eliminate all parent controls (controls that contain other controls) and passed along only the controls that were end-nodes (controls that contain no other controls). Also, the control's refnum was stored for later use.
    The bottom picture shows the data gathered during the execution of this VI.
    Thanks again, Mike!

  • Hi How do we create Methods inside the Business objects of Z

    Hi Abapers,
                        How do we create Methods inside the Business objects (z objects) and how *** an import parameter or export parameter  to be defined for the new Methods.
    Regards
    Bhaskar Rao.M

    Hi Bhaskar,
    that ´s not difficult.
    Open your Bus.Obj. in SWO1 with CHANGE/EDIT
    Click on the "Methods" header line and then use the button for "Create".
    If you want to add the method on basis of a function module, choose next in the next pop up. Then the system will offer you the ex/import parameter from the function module. So this is a really simple way.
    If you don´t have a FM, it is a little bit more difficult.
    Choose No on the quetion about a FM, fill in the next pop up  methode name (no blanks allowed).
    Dialogue is for user related method (call screen...) synchronous for methods which have to give back a result directly in to the workflow.
    After completing the screen the method will be displayed as new method at the end of method list. Now add parameters (first click on the method name, then choose parameter button, same functionality to add program to the method).
    Programm:
    Code snip:
    BEGIN_METHOD ZWFCHECKMIRO CHANGING CONTAINER.
    DATA:
          ZBELNR TYPE RBKP-BELNR,
          ZGJAHR TYPE RBKP-GJAHR,
          RESULT TYPE HRP1001-ISTAT,
          BELNR TYPE BKPF-BELNR,
          GJAHR TYPE BKPF-GJAHR,
          BUKRS TYPE BKPF-BUKRS.
    to import parameter
      SWC_GET_ELEMENT CONTAINER 'Zbelnr' ZBELNR.
      SWC_GET_ELEMENT CONTAINER 'Zgjahr' ZGJAHR.
    *(or SWC_GET_TABLE)
    here add the functionality of your method!
    to export parameter
    SWC_SET_ELEMENT CONTAINER 'Result' RESULT.
      SWC_SET_ELEMENT CONTAINER 'Belnr' BELNR.
    *(or SWC_SET_TABLE)
    !!! Important: naming convention!!! Use same writing of parameter names in
    PARAM area (button PARAMETER) and here in code.
    To use your method, change it to implemented after adding your code.
    -> Edit -> Change release status -> object type component -> into implemented
    (Sorry , have a german screen here, possibly terms are a little bit different.
    Hope this helps a little bit.!
    regards
    Dirk

  • Error while creating control file

    hi
    i am getting following error while creating controll file
    QL> shutdown
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area  629145600 bytes
    Fixed Size                  1250548 bytes
    Variable Size             171969292 bytes
    Database Buffers          452984832 bytes
    Redo Buffers                2940928 bytes
    SQL> @c:\study\rose\c.sql
    SP2-0042: unknown command "DATAFILE" - rest of line ignored.
    SP2-0734: unknown command beginning "'C:\ORACLE..." - rest of line ignored.
    SP2-0734: unknown command beginning "'C:\ORACLE..." - rest of line ignored.
    SP2-0734: unknown command beginning "CHARACTER ..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    1  CREATE CONTROLFILE SET DATABASE "ROSE" RESETLOGS  froce logging NOARCHIVELOG
    2      MAXLOGFILES 32
    3      MAXLOGMEMBERS 2
    4      MAXDATAFILES 32
    5      MAXINSTANCES 16
    6      MAXLOGHISTORY 1752
    7  LOGFILE
    8  GROUP 1 'C:\oracle\product\10.2.0\oradata\rose\LOG1ROSE.ORA'  SIZE 50M,
    9    GROUP 2 'C:\oracle\product\10.2.0\oradata\rose\LOG2ROSE.ORA'  SIZE 50M,
    10   GROUP 3 'C:\oracle\product\10.2.0\oradata\rose\LOG06.LOG'  SIZE 25M,
    11*   GROUP 4 'C:\oracle\product\10.2.0\oradata\rose\LOG07.LOG'  SIZE 25M
    SQL>

    CHETAN YADAV wrote:
    hi
    i am getting following error while creating controll file
    QL> shutdown
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area  629145600 bytes
    Fixed Size                  1250548 bytes
    Variable Size             171969292 bytes
    Database Buffers          452984832 bytes
    Redo Buffers                2940928 bytes
    SQL> @c:\study\rose\c.sqlWe can't debug what we can't see. And what we can't see is the contents of "c:\study\rose\c.sql".
    SP2-0042: unknown command "DATAFILE" - rest of line ignored.
    SP2-0734: unknown command beginning "'C:\ORACLE..." - rest of line ignored.
    SP2-0734: unknown command beginning "'C:\ORACLE..." - rest of line ignored.
    SP2-0734: unknown command beginning "CHARACTER ..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    1 CREATE CONTROLFILE SET DATABASE "ROSE" RESETLOGS froce logging NOARCHIVELOG
    2 MAXLOGFILES 32
    3 MAXLOGMEMBERS 2
    4 MAXDATAFILES 32
    5 MAXINSTANCES 16
    6 MAXLOGHISTORY 1752
    7 LOGFILE
    8 GROUP 1 'C:\oracle\product\10.2.0\oradata\rose\LOG1ROSE.ORA' SIZE 50M,
    9 GROUP 2 'C:\oracle\product\10.2.0\oradata\rose\LOG2ROSE.ORA' SIZE 50M,
    10 GROUP 3 'C:\oracle\product\10.2.0\oradata\rose\LOG06.LOG' SIZE 25M,
    11* GROUP 4 'C:\oracle\product\10.2.0\oradata\rose\LOG07.LOG' SIZE 25M
    SQL>

Maybe you are looking for