Selection Mode

Hi,
   In ALV classes/containers, for layout in order to select a particular row ,we use sel_mode = 'A'so that we can also see a small box at the left side.
Without using classes and just using standard  ALV FM's is it possible to do?

yes, you can.
The solution is add a additional column into the ALV report.
Make it be editable. (it's the critical point)
And hide this column, (you can do it by set its fieldcategory).
Hide it because it's no useful for you
Then you will see the small box at the left of side.
As I know, the small box you mentioned will appear automactically in the FM ALV, when it is editable.
Hope it will be helpful
thanks

Similar Messages

  • Get Selections From ALV on Multiple Selection Mode

    Hi,
    How can i get values of selected rows from ALV that has selection '0..n' (multiple selection) ?
    Can somebody help me pls?
    Thanks.

    Hi Nurullah,
    Steps to make multiple rows selectable in ALV:
    1) Create the selection property of the node that you are binding to the DATA node as o..n
    2) Un-check the, "Initialization Lead Selection" checkbox for the node which you are using to bind to the DATA node
    3) In the WDDOINIT method specify the ALV's selection mode as MULTI_NO_LEAD. It is important that you set the selection mode to MULTI_NO_LEAD or else in the end you would be capturing 1 row lesser than the total number of rows the user has selected. This is because 1 of the rows would have the LeadSelection property & our logic wouldnt be reading the data for that row. Check the example code fragment as shown below:
    DATA lo_value TYPE REF TO cl_salv_wd_config_table.
      lo_value = lo_interfacecontroller->get_model( ).
      CALL METHOD lo_value->if_salv_wd_table_settings~set_selection_mode
        EXPORTING
          value = cl_wd_table=>e_selection_mode-MULTI_NO_LEAD.
    Steps to get the multiple rows selected by the user
    In order to get the multiple rows which were selected by the user you will just have to call the get_selected_elements method of if_wd_context_node. So as you can see its no different from how you would get the multiple rows selected by the user in a table ui element. First get the reference of the node which you have used to bind to the ALV & then call this method on it. Check the example code fragment below:
    METHOD get_selected_rows .
      DATA: temp TYPE string.
      DATA: lr_node TYPE REF TO if_wd_context_node,
                wa_temp  TYPE REF TO if_wd_context_element,
                ls_node1 TYPE wd_this->element_node_flighttab,
                lt_node1 TYPE wd_this->elements_node_flighttab.
      lr_node = wd_context->get_child_node( name = 'NODE_FLIGHTTAB' ).
    " This would now contain the references of all the selected rows
      lt_temp = lr_node->get_selected_elements( ).
        LOOP AT lt_temp INTO wa_temp.
    " Use the references to get the exact row data
          CALL METHOD wa_temp->get_static_attributes
            IMPORTING
              static_attributes = ls_node1.
          APPEND ls_node1 TO lt_node1.
          CLEAR ls_node1.
        ENDLOOP.
    ENDMETHOD.
    Hope this helps resolve your problem.
    Regards,
    Uday

  • Retrieve value form Table view when the selection mode is 'NONE'

    Hi,
    I am new to ABAP, Can anyone tell me how to reterieve the records of the tableview, i have the selection mode as 'NONE'. When the button is clicked i need to reterieve all the values from the table and display it in the next screen.
    I am able to diaplay the table values , but i am unable to reterieve the values on Inputprocessing.
    Its very urgent. Please help me
    Regards,
    Jose

    you are able display the table view means, you have the data in internal table.
    you need all the records that are displayed in the table view with out selection. why dont you use that internal table itself, which is displayed as table view.
    vijay

  • JTable about Selection Mode

    I need to implement a new selection mode similar to MULTIPLE_INTERVAL_SELECTION but every time the user clicks on the table the entire column must be selected (or deselected if the column was selected before) and the other columns must stayed selected as If control key was pressed without being pressed! Does anyone know how to figure this out?

    I have figured it out in a different way... The problem is the way the screen is refreshed... do you know a way to solve this issue?
    package mytables;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.DefaultListSelectionModel;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    public class UsingJTable extends JFrame {
        private JPanel panel;
        private JTable table;
        private ListSelectionModel csm;
        JScrollPane scrollPane;
        boolean[] columnIsSelected;
        DefaultListSelectionModel lsm;
        public UsingJTable() {
            table = new JTable( new MyOwnTableModel() );
            table.setRowSelectionAllowed( false );
            table.setColumnSelectionAllowed( true );
            table.setSelectionMode( ListSelectionModel.MULTIPLE_INTERVAL_SELECTION );
            scrollPane = new JScrollPane( table );
            panel = new JPanel();
            panel.setOpaque( true );
            panel.add( scrollPane );
            columnIsSelected = new boolean[ table.getColumnCount()];
            csm = table.getColumnModel().getSelectionModel();
            table.addMouseListener( new MouseAdapter() {
                public void mouseClicked(MouseEvent e)
                    int index = UsingJTable.this.csm.getLeadSelectionIndex();
                    columnIsSelected[ index ] = !columnIsSelected[ index ];
                        if( columnIsSelected[ index ] )
                            table.removeColumnSelectionInterval( index, index );
                            for(int c = 0; c < columnIsSelected.length; c++ )   
                                if( c != index && columnIsSelected[ c ] )
                                    if( csm.isSelectionEmpty() )
                                        table.setColumnSelectionInterval( c, c );
                                    else
                                        table.addColumnSelectionInterval( c, c );  
                            table.addColumnSelectionInterval( index, index );
                        else
                            for(int c = 0; c < columnIsSelected.length; c++ )   
                                if( columnIsSelected[ c ] )
                                    if( csm.isSelectionEmpty() )
                                        table.setColumnSelectionInterval( c, c );
                                    else
                                        table.addColumnSelectionInterval( c, c );
                            if( csm.isSelectionEmpty() )
                                table.setColumnSelectionInterval( index, index );
                            else
                                table.addColumnSelectionInterval( index, index );
                            table.removeColumnSelectionInterval( index, index );
                    for(int c = 0; c < columnIsSelected.length; c++ )
                        System.out.print( columnIsSelected[ c ] + " " );
                    System.out.println();
                    int selectedColumns[] = table.getSelectedColumns();
                    for(int c = 0; c < selectedColumns.length; c++ )
                        System.out.print( selectedColumns[ c ] + " " );
                    System.out.println();
            this.setTitle( "Using JTable" );
            this.getContentPane().add( panel );
            this.setSize( 500, 500);
            this.setVisible( true );
            this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        public static void main( String args[] )
            new UsingJTable();
    }

  • How to always start up in disk select mode?

    How do I do that? Sometimes when I need to start my bootcamp partition to make some changes to Windows, and I just forgot to hold the Option key, I'll just have to wait for it to boot up in Mac OS, and then restart again. How do I just make the computer always start up in disk select mode, so I don't have to hold the Option key?

    the only way to do that is by using rEFIt
    http://refit.sourceforge.net/

  • Goes to 'nothing selected' mode when editing tables entries? (Sometimes)

    When trying to edit entries in table cells pages sometimes flips into 'nothing selected' mode and return to the top of the table leaving the cell entry partially changed. This can happen anytime during the typing of characters to replace other text. Reselecting the cell and editng the text as before will then work!
    There was one occasion when Pages terminated with an error when I was changing the cell contents but when restarted it let me make the changes to the table cell without terminating.

    Pages Version is 5.2.
    The keyboard (cable connect version, not bluetooth) is clean and works OK with all my other apps.
    I use an Apple Magic Trackpad to move cursor and select cell/text etc.

  • Dynamically changing selection mode in component SALV_WD_TABLE

    I want to programmatically change the selection mode in component SALV_WD_TABLE. I've embedded the component in one of my own components. Under one circumstance, I want multiple selection to be possible, under another, I only want single selection capability.
    I've set the context in my component, which is mapped to the SALV_WD_TABLE usage component, so that the relevant node has selection cardinality 0..n. The approach I'd like to take, is to programmatically set the selection cardinality to 0..n in the first scenario, and 0..1 in the second. But I can't figure out how to do that, or even if it's possible!
    Is it possible to set the selection cardinality programmatically - if so, how? If it isn't, is there another way I can achieve the same functionality?
    Thanks
    matt

    Hi,
    You can do that.
    See IF_SALV_WD_TABLE_SETTINGS method set_selection_mode method.
    get the config table like this
    lr_table_settings ?= wd_this->alv_config_table.
    lr_table_settings->set_selection_mode( CL_WD_TABLE=>E_SELECTION_MODE-MULTI ).
    use constants from
    CL_WD_TABLE=>E_SELECTION_MODE-AUTO

  • While I am in a selective mode in cs6 my screen flickers black. How do i fix this?

    This is extremely frustrating while I try to work. It makes my editing time so much longer. Does anyone know how to fix this?

    "in a selective mode in cs6" ??? 32 bit or 64 bit standard or entended  OS config
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Select MOD(rownum,2) gf from a WHERE gf=0

    hi all
    select MOD(rownum,2) gf from a
    where gf=0;
    this query dod't give me rows
    SQL> select MOD(rownum,2) gf from a;
            GF
             1
             0
             1
             0
             1
             0
    6 rows selected.Please correct me
    Thanks And Regards
    Vikas
    Edited by: vikas singhal on May 28, 2011 5:02 PM
    Edited by: vikas singhal on May 28, 2011 5:03 PM

    Hi, Vikas,
    When you define a column alias (such as gf), you can use that alias in the ORDER BY clause, but that's the only place where you can use it in the same query. If you assign the alias in a sub-query, then you can use it anywhere in a super-query, like this:
    WITH     got_gf     AS
         select      MOD (rownum, 2)      AS gf
         from      a
    SELECT     *
    FROM     got_gf
    where      gf     = 0;If the aliased expression is simple, and you don't need to reference it often, then you may find it easier just to repeat the expression, like this:
    select      MOD (rownum, 2)      AS gf
    from      a
    where      MOD (rownum, 2)     = 0;Edited by: Frank Kulash on May 28, 2011 8:04 AM
    Correction: repeating the expression in the WHERE clause doesn't always work when it involves ROWNUM, since ROWNUM depends on how many previous rows satisfied the WHERE clause. In this case, use a sub-query.

  • JTable about selection mode, setting a Color to rows and column.

    I need an application with a table containing Double and String data. When the table is shown the Double data must be shown as selected. I need a special kind of selection mode similar to MULTIPLE_INTERVAL_SELECTION but it must be a mode as if CONTROL was pressed when the user left clicks the table so he or she can select and deselect columns without deselecting those wich have been selected previously... Besides I need to paint columns and rows only if they have certain conditions. This is an example of what I have done so far... The selection mode is what is really important.
    UsingJTable.java
    package mytables;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    import javax.swing.table.TableColumn;
    public class UsingJTable extends JFrame {
    private static final long serialVersionUID = 1L;
    private JPanel panel = null;
    private JTable table = null;
    private JButton[] buttonArray = null;
    private JPanel buttonsPanel = null;
    public UsingJTable() {
    panel = new JPanel(); 
    table = new JTable( new MyOwnTableModel() );
    JScrollPane sPane = new JScrollPane( table ); 
    sPane.setHorizontalScrollBarPolicy( JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED );
    sPane.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED );
    panel.setOpaque( true );
    panel.add( sPane );
    buttonsPanel = new JPanel();
    buttonsPanel.setLayout( new FlowLayout() );
    buttonArray = new JButton[ 5 ];
    for( int i = 0; i < buttonArray.length; i++ ) {
    buttonArray[ i ] = new JButton( "columna " + i );
    buttonArray[ i ].addActionListener( new ColumnListener( i ) );
    buttonsPanel.add( buttonArray[ i ] );
    table.setRowSelectionAllowed( false );
    table.setColumnSelectionAllowed( true );
    ListSelectionModel csm = table.getColumnModel().getSelectionModel();
    csm.setSelectionInterval( 0, table.getColumnCount() );
    csm.removeSelectionInterval( 0, table.getColumnCount() - 3 );
    csm.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION );
    this.setTitle( "Using JTable" );
    this.getContentPane().add( panel );
    this.getContentPane().add( buttonsPanel, BorderLayout.SOUTH );
    this.setSize( 500, 500);
    this.setVisible( true );
    this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    class ColumnListener implements ActionListener {
    private boolean pressed = false;
    private int column = 0;
    public ColumnListener( int col) {
    this.setColumn( col );
    public void actionPerformed(ActionEvent e) {
    TableColumn tColumn = table.getColumnModel().getColumn( column );
    Color c;
    if ( !pressed )
    c = Color.YELLOW;
    else
    c = Color.WHITE;
    table.setVisible( false );
    tColumn.setCellRenderer( new MyCellRenderer( c ) );
    table.setVisible( true );
    pressed = !pressed;
    public int getColumn() {
    return column;
    public void setColumn(int column) {
    this.column = column;
    public static void main( String args[] )
    new UsingJTable();
    } MyOwnTableModel.java
    package mytables;
    import javax.swing.table.AbstractTableModel;
    public class MyOwnTableModel extends AbstractTableModel {
    private static final long serialVersionUID = 1L;
    private Object data[][] = null;
    private String columnNames[] = null;
    private int rowCount = 0;
    private int columnCount = 0;
    public MyOwnTableModel() {
    initData();
    initColumnNames();
    this.setRowCount( data.length );
    this.setColumnCount( columnNames.length );
    public int getColumnCount() {
    return columnCount;
    public int getRowCount() {
    return rowCount;
    public Object getValueAt(int r, int c) {
    return data[ r ][ c ];
    private void initData() {
    data = new Object[4][5];
    data[ 0 ][ 0 ] = new String("Hern�n");
    data[ 0 ][ 1 ] = new String("Amaya");
    data[ 0 ][ 2 ] = new Integer( 23 );
    data[ 0 ][ 3 ] = new Double( 61.5 );
    data[ 0 ][ 4 ] = new Double( 1.71 );
    data[ 1 ][ 0 ] = new String("Mariana");
    data[ 1 ][ 1 ] = new String("Amaya");
    data[ 1 ][ 2 ] = new Integer( 25 );
    data[ 2 ][ 3 ] = new Double( 75 );
    data[ 2 ][ 4 ] = new Double( 1.65 );
    data[ 2 ][ 0 ] = new String("Nicol�s");
    data[ 2 ][ 1 ] = new String("Coniglio");
    data[ 2 ][ 2 ] = new Integer( 23 );
    data[ 2 ][ 3 ] = new Double( 88.5 );
    data[ 2 ][ 4 ] = new Double( 7.85 );
    data[ 3 ][ 0 ] = new String("Juan Pablo");
    data[ 3 ][ 1 ] = new String("Garribia");
    data[ 3 ][ 2 ] = new Integer( 24 );
    data[ 3 ][ 3 ] = new Double( 70.2 );
    data[ 3 ][ 4 ] = new Double( 1.76 );
    private void initColumnNames() {
    columnNames = new String[ 5 ];
    columnNames[ 0 ] = "Nombre";
    columnNames[ 1 ] = "Apellido";
    columnNames[ 2 ] = "Edad";
    columnNames[ 3 ] = "Peso";
    columnNames[ 4 ] = "Altura";
    public String[] getColumnNames() {
    return columnNames;
    public void setColumnNames(String[] columnNames) {
    this.columnNames = columnNames;
    public Object[][] getData() {
    return data;
    public void setData(Object[][] data) {
    this.data = data;
    public void setColumnCount(int columnCount) {
    this.columnCount = columnCount;
    public void setRowCount(int rowCount) {
    this.rowCount = rowCount;
    public Class getColumnClass(int c) {
    return data[0][c].getClass();
    public String getColumnName(int c) {
    return columnNames[ c ];
    } MycellRenderer.java
    package mytables;
    import java.awt.Color;
    import java.awt.Component;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableCellRenderer;
    public class MyCellRenderer extends DefaultTableCellRenderer {
    private static final long serialVersionUID = 1L;
    private Color cellColor = null;
    public MyCellRenderer( Color c )
    setCellColor( c );
    public Component getTableCellRendererComponent
    (JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    // Obtains default cell settings
    Component cell = super.getTableCellRendererComponent ( table, value, isSelected, hasFocus, row, column);
    cell.setBackground( getCellColor());
    return cell;
    public Color getCellColor() {
    return cellColor;
    public void setCellColor(Color cellColor) {
    this.cellColor = cellColor;
    }

    Interesting concept! This is what I have tried and it works, but in the application I need the user to deselect the columns he wants only by left clicking on them... This is the main idea: there will be lots of columns (String and Double data). The user must deselect the Double columns he or she does not want to be processed... Maybe with a boolean array that changes it state if a user left clicks a column... but I suppose this method is called only once to initialize the table, isn't it? Thanks.
    <code>
    table = new JTable( new MyOwnTableModel() ) {
    public boolean isCellSelected(int row, int column) {
    MyOwnTableModel model = (MyOwnTableModel) this.getModel();
    if( model.getColumnClass( column ) == Double.class )
    return true;
    return false;
    </code>

  • How to set the the file selection mode of JFileChooser

    hi,
    i want to set the file selection mode to directories only for JFileChooser class but when i run the code it does not select the folder adn opens the folder instead. i want the user to select a folder from the file system . any ideas?

    Sorry, I misunderstood you question. I thought that you already set it to choose Directories and wondered when you can't select them when you double-click.
    use JFileChooser.setFileSelectionMode(int). This should solve your problem.
    Here is an example:
            JFileChooser jf = new JFileChooser();
            jf.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            jf.showDialog(this, "Select");
            System.out.println(jf.getSelectedFile());
    unformatted
    JFileChooser jf = new JFileChooser();
    jf.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    jf.showDialog(this, "Select");
    System.out.println(jf.getSelectedFile());

  • Missing select mode in Browse button and File Dialog.vi

    The 'Browse options' button next to a path control does not seem to allow an 'Existing file or existing directory' option. This is also the case for the 'select mode' input of the File Dialog vi. The user buttons in these dialogs auto-adapt to the select mode. I want these buttons to appear as 'Open' for files, and 'Select Directory' for folders. Is this missing select mode an oversight of National Instruments and is there a workaround?

    Hey ,
    All you have do is right click on this browse button and go to propertise and select the option of 'Existing file or existing directory' ,this will give you those options in Labview.
    cheers
    vicky

  • Checkedlistbox allows multiple selections with Selection mode set to one

    I have a simple CheckedListBox with three options. I set Selection Mode to One. When I test the form, it allows me to have more than one box checked. I can clear the other two with a program, but my understanding of Selection Mode was that it would not
    allow more than one box to be checked if set on one.

    Option Strict On
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    CheckedListBox1.SelectionMode = SelectionMode.One
    For i = 1 To 10
    CheckedListBox1.Items.Add("Number" & i.ToString)
    Next
    End Sub
    Private Sub CheckedListBox1_ItemCheckChanged(sender As Object, e As ItemCheckEventArgs) Handles CheckedListBox1.ItemCheck
    Dim ItemIndex As Integer = e.Index
    For i = 0 To CheckedListBox1.Items.Count - 1
    If i <> ItemIndex Then
    CheckedListBox1.SetItemCheckState(i, CheckState.Unchecked)
    End If
    Next
    End Sub
    End Class
    La vida loca

  • AbstractTableModel, AbstractListModel and Selection Mode

    Hi,
    I am creating my own custom ListModel by extending the AbstractListModel. I want to set the set the selection mode to SINGLE selection. Anything that makes use of the custom ListModel should by default only be able to select one row at a time, unless they override a method to set the selection to something else. I'm guessing I need to make use of ListSelectionModel.
    I have an interface which will be implemented by AbstractListModel, and the AbstractTableModel too. The selection needs to be set to SINGLE selection for both.
    Can anyone give some ideas - I can't find any examples on ListSelectionModel.
    Thanks.

    Crosspost: http://forum.java.sun.com/thread.jspa?threadID=5195779&tstart=0

  • In scene selection mode, can you make iDVD return to the scene selection menu after playing that scene without continuing to play all the other scenes?

    After selecting one scene from the scene selection menu, the following scenes play automatically, as if it were in "play movie" mode. Is there a way to stop that behavior and have the DVD return to the scene selection menu after playing just the selected scene?

    OK
    So what You want is a "Play All" button resp. a "Play one Chapter at a time" one.
    Then
    BAD News - There are Non ! in iDVD
    GOOD News - it can in part be faked.
    read on
    Play all resp. one chapter at a time
    Play All Button 
    1. There are NO - Play All - button in any version of iDVD
    2. It can be faked in several ways
    • Easiest and most fault proof way is to make a doublet movie containing All and with
    Chapters set to match. It will take up x2 space but is easy to understand and produce.
    Cons: Tried this in iMovie’11 by Exporting out each part as a full Quality QT.mov then Importing back into new events and putting these into a new project (Play All project). Resulting DVD had Audio that was OK (as parts) - BUT the picture was very bad and standing photo were cut of in height. So the Play All movie has to be created from same material and exactly in the same way as the individual parts + then Chapters has to be set to match.
    • It's said that one can put all movies into a Photo/SlideShow and this will also
    give the function of a Play All button - Tested - and ONE HAS TO un-cheque - Scale pictures to TV-Safe area else it will be a black frame all around and a small picture !
    Mike Evangelist1
    You might be able to get close to what you want by using a slideshow in iDVD. (It's not widely known, but you can put videos in a slideshow.) If you set the slide duration to manual, playback will pause after each movie/slide, and you can continue with the 'next' button.
    3. Using another program to do this e.g.. Roxio Toast™ where there is a Play All button option.
    Summary
    a. Making a Play All movie with same care as the individual Part movies - gives a very Good Result
    b. Using Roxio Toast™ - also an usable way to go
    Yours Bengt W

  • Selective Mode Pubshing (See it but NOT Try it, etc.)

    I am trying to publish player content for my partner organization. They would like the "SEE IT" and "PRINT IT" but not the other modes. When I publish, I always get ALL the player modes.
    Looking at the topic properties, it appears as though you can check some rather than all modes. But when I publish, all modes are published regardless.
    I tried to provide a link to only the "SEE IT" content but it required a player package. I tried this out on a machine and ran the installer for the player package. It still brought me to a page with all the other modes on there.
    Surely there must be a way to selectively publish. Cannot find in any resolution in my UPK documentation.
    es
    Edited by: 922588 on Mar 21, 2012 2:59 PM

    Hi es,
    I managed to get my UPK 11 to only show "See It", "Try it" and "Print it". It seems like 'Try it" is hand-in-hand with "See it", so I could therefore not get rid of "Try it".
    As you have done, ensure that "See It/Try it" is selected as the mode for EACH frame within the topic - this is changed in the "Show in" block under the Frame Properties.
    Then, when you publish, you must change some options too. Get to the stage of the publishing wizard where you have the tick boxes available to you to choose what and how to deploy content. Select the "Player and LMS" option, and look at the properties on the right. Under Player Preferences, ensure that the default mode is "See It". On the same properties, further down, there is a section called "Print It" - ensure that the Text Mode "See It/Try It" is selected here.
    Then, on the left again, choose the option that says "Standalone Topic Files" - preview the properties, and again, ensure that the Text Mode under "Print It" is set to "See It/Try It".
    Go ahead and publish - you may get errors as I did, stating that there is no "Do It" mode etc. This is fine.
    Preview the play.exe and then see if that is what you want?
    Best I could come up with - hope it helps somewhat!
    Regards,
    Greig

Maybe you are looking for

  • Hard drive choice - MaxLine Pro 500 or WD Caviar SE16?

    I am looking at four new drives for my MacPro 2.66 which will arrive next week. I will be running Aperture and storing a lot of photographs on the drives as well as using one for back-up. I'm keen on the WD Caviar SE16 as it is supposed to be the qui

  • Question about java thread implementation

    Hi All, I am comparing the performance of the Dining philosopher's problem implemented in Java, Ada, C/Pthread, and the experimental language I have been working on. The algorithm is very simple: let a butler to restrict entry to the eating table, so

  • Crash on library import

    Flash CS4 is crashing every time I attempt to import a collection of jpegs to the library. I've tried small groups (crashes eventually), running in obselete compatibility modes... This seems common (though no fix I've seen actually works) - is there

  • Flash Player installed but not recognized

    I have been prompted to install Flash Player 11 on Amazon.  I attempted to install it from your website.  After following all instructions, it says that Flash Player 11 was successfully installed.  However, when I go back to Amazon (or any other site

  • Smartview Adhoc Analysis Read only

    Hi, we are using Hyperion Planning - basically with Smartview 11.1.2. We have the requirement that users which are able to put in data via webforms (and they should be able to do so Role: Planner) should use Adhoc Smartview Analysis as read only. If