Receive combobox data to another frame

hi,
  I have combobox in frame 2. how can I receive the selected "string"data when I go in frame 3?
I thing it can't do that. Must I store data in class and I read then when I go in frame 3.

Create a layer for actionscript and have it extend the full length of your timeline.  Then just decalre a variable in frame 1, name it whatever you like...
var comboboxVariable;  // if you know the data type, specify that too
Then that variable will be available anywhere along the timeline.  You can assign it a value in frame 2 when the combobox is used and read its value in frame 3

Similar Messages

  • Receive POST data from another URL and process using Struts

    Hi there
    We have a website and as of now we are receiving some data from another URL which is received as an appended part of the URL. My application uses Struts and we process the received data and send back a response.
    Now my question is, I have been asked to change this behavior because there are more parameters now which cannot be passed through the URL. I am supposed to get the data from the other URL as POST data (as a form) and I have to create a new Struts action to receive this data, process it and send the response back to the requesting URL.
    Please explain me how to do this using some example code snippets.
    Thanks a lot

    Lookup in XI is used to call the target data storage system and get data from there to your mapping programme.
    In XI you can do Lookup in Message Mapping, Java Mapping and in XSLT Mapping. Previously Lookup in XI was system dependent. But now what ever the system are i.e. SAP system or non-sap system(Oracle,MS SQL etc) lookup API are same.
    Overview of Lookup
    - Lookups are used to identify/request the data from mapping program.
    - It interrupt the process and looking for data which was stored in target system.
    - It get that data and comeback to process and continue with that data.
    Types of Lookups in XI
    - JDBC Lookup: JDBC lookup is used for accessing data from database (non SAP).
    - RFC Lookup: RFC lookup is used for accessing the SAP Data.
    - SOAP Lookup: SOAP lookup is used for accessing data from Webservice
    Steps to perform Lookup in Mapping
    Import package com.sap.aii.mapping.lookup.*;
    Create connection to the target Database system.
    // Determine communication channel created in ID
    Channel channel = null;
    channel = LookupService.getChannel("DB-SYSTEM-NAME","DB-CHANNEL-NAME");
    // Get system accessor for the channel.
    DataBaseAccessor accessor = null;
    accessor = LookupService.getDataBaseAccessor(channel);
    Build the Query String.
    Getting Result
    // Execute Query and get the values.
    DataBaseResult resultSet = null;
    resultSet = accessor.execute(Query);

  • Receive LV data from another computer

    Dear
    I would like to write Labview program after receiving some data.
    The data(temperature and humidity) are acquisiting in real time by LV from an independent computer(remote com.).
    Are there some simple methods to share or extract the data like this situation?
    (Hopefully, I don't want to modify much LV code in the remote computer.)
    Thank you in advance. 

    For DataSockets, you have to be running Windows, the DS server doesn't run on other platforms.You have to already have TCP network access between the two machines.
    For this little exercise, the data you want must be in a front panel indicator (or control). If you do more coding, you can send DS data programmatically, but for now, let's assume it's on the panel.
    On the client side (the one you will monitor with), run the DS Server. {Start - Programs - National Instruments - DataSocket - DataSocket Server.
    On the Server side (the one where the data is already there), pop up on the item(s) you want to monitor.
    Choose DATA OPERATIONS - DATASOCKET CONNECTION.
    In the CONNECT TO box, enter "dstp://192.168.0.101/Value1" (without the quotes). Substitute the client IP # for the IP # shown. Substitute a sensible name for the "Value1" part.
    Choose PUBLISH as the connection type, an click ATTACH (or CHANGE if this is not the first time thru).
    You should see a small LED next to the item. You can hide it if you want (VISIBLE ITEMS), but for now leave it there.
    Run the program. The LED should be GREEN, and on the client side, the DS SERVER should show changing numbers, as packets come in.
    On the CLIENT side, you want a similar indicator (same data type) as the one on the server that you are monitoring. You want a WHILE loop with a STOP button and a WAIT function, at least.
    On the front panel, pop up on the indicator, and choose DATA OPERATIONS - DATASOCKET CONNECTION.
    in the CONNECT TO box, enter "dstp://localhost/Value1". You could enter the IP number, but "localhost" covers it, since the DS server is running on this same machine. The "Value1" part must match the name you gave it on the other (server) end.
    Click SUBSCRIBE, and close the dialog.
    Run your client program, and the client's indicator should match the server's.
    Things to be aware of:
    You don't know when the data is updated. When your client program uses the values, it gets the latest values. Maybe they're a mSec old, maybe they're a month old. You don't know.
    If you monitor TWO (or more) indicators, they are not necessarily updated at the same time. If you read them on the client, maybe they correspond, and maybe they don't. It's possible that you read them AFTER it updated #1, and BEFORE it updated #2. You just don't know. If that's a problem, put everything into a cluster, and just update the one value.
    The server will consume system resources (CPU - network time) and net traffic, whether you are listening or not. If your server updates the display 100 times a second, but you only want a value once a second, that's wasteful because the value gets sent over the net 100 times.
    I'm not 100% sure, but I think there's no security with this. Any process with access to the DS server, can ask to be updated and it will be.
    You had asked for a minimum-code-change idea. I believe the above meets that challenge (no code change at all, only DS settings).However, it has drawbacks, and if they outweigh the no-code-changes, then you need to consider either programmatic DataSockets or plain TCP. With those you can control every aspect of communication. Consult the examples for those.
    Message Edited by CoastalMaineBird on 04-01-200704:51 PM
    Message Edited by CoastalMaineBird on 04-01-2007 04:53 PM
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks
    Attachments:
    DataSocket.png ‏41 KB

  • Data from a frame to another (bis)

    Hi,
    I have a first Frame DataPanelCli, when I use the button "Rechercher" in the class ButtonPanelCli, I find the informations of my company in the class FindRecCli. After when I use the button "STRUCTURE", I use the JFrame StructRecCli BUT I CAN NOT show the data coming from my first Frame.
    Here is the programme, could you please help me.
    regards.
    Thierry
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.awt.Container;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.text.*;
    import java.lang.String;
    public class AppClient extends JFrame {
         private DataPanelCli screenvarcli;
         private JTextArea msgout;
         private Connection dbconn;
         public AppClient() {
              //titre fen�tre
              super( " APPLICATION CLIENT");
              // set up GUI environment
              Container p = getContentPane();
              screenvarcli = new DataPanelCli();
              msgout = new JTextArea( 8, 40);
              p.setLayout( new FlowLayout() );
              p.add( new JScrollPane(screenvarcli) );
              p.add( new JScrollPane(msgout) );
              // DB Connection
              try {
                   String url = "jdbc:odbc:Access";
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   // Cr�ation d'une liaison
                   dbconn = DriverManager.getConnection(url, "dba", "sql" );
                   msgout.append("Connection successful !\n");
              catch (ClassNotFoundException cnfex) {
                   cnfex.printStackTrace();
                   msgout.append("Connection unsuccessful\n" +
                        cnfex.toString());
              catch (SQLException sqlex) {
                   sqlex.printStackTrace();
                   msgout.append("Connection unsuccessful\n" +
                        sqlex.toString());
              catch (Exception excp) {
                   excp.printStackTrace();
                   msgout.append(excp.toString());
              // Complete GUI
              ButtonPanelCli controls = new
              ButtonPanelCli(dbconn, screenvarcli, msgout);
              p.add(controls);
    //          RadioButtons rb = new RadioButtons(dbconn, screenvarcli, msgout);
    //          p.add(rb);
              setSize(500,475);
              show();
         public static void main( String args[]) {
              AppClient cli = new AppClient();
              cli.addWindowListener(
                   new WindowAdapter() {
                        public void windowClosing(WindowEvent e) {
                             System.exit(0);
    class DataPanelCli extends JPanel {
         JTextField ICCliFact, INSociete,
              ILAdresseA, ICPostal, ILLocalite, ICPays;
         JLabel LCCliFact, LNSociete,
              LLAdresseA, LCPostal, LLLocalite, LCPays;
         public DataPanelCli() {
              //Label Panel
              JPanel labelPanelCli = new JPanel();
              labelPanelCli.setLayout( new GridLayout(6, 1));
              LNSociete = new JLabel( "Nom ", 0);
              labelPanelCli.add(LNSociete);
              LCCliFact = new JLabel( "Num�ro Client", 0);
              labelPanelCli.add(LCCliFact);
              LLAdresseA = new JLabel( "Adresse ", 0);
              labelPanelCli.add(LLAdresseA);
              LCPostal = new JLabel( "Code Postal ", 0);
              labelPanelCli.add(LCPostal);
              LLLocalite = new JLabel( "Localite ", 0);
              labelPanelCli.add(LLLocalite);
              LCPays = new JLabel( "Pays ", 0);
              labelPanelCli.add(LCPays);
              //TextField Panel
              JPanel screenvarcliPanel = new JPanel();
              screenvarcliPanel.setLayout( new GridLayout(6, 1));
              INSociete = new JTextField("Enter Name - click RECHERCHER", 20);
              screenvarcliPanel.add(INSociete);
              ICCliFact = new JTextField( 20);
              screenvarcliPanel.add(ICCliFact);
              ILAdresseA = new JTextField( 20);
              screenvarcliPanel.add(ILAdresseA);
              ICPostal = new JTextField( 20);
              screenvarcliPanel.add(ICPostal);
              ILLocalite = new JTextField( 20);
              screenvarcliPanel.add(ILLocalite);
              ICPays = new JTextField( 20);
              screenvarcliPanel.add(ICPays);
              // Accessibility Section - relate labels and text fields
              // for use by assistive technologies
              LNSociete.setLabelFor( INSociete);
              LLAdresseA.setLabelFor( ILAdresseA);
              LCPostal.setLabelFor( ICPostal);
              LLLocalite.setLabelFor( ILLocalite);
              LCPays.setLabelFor( ICPays);
              setLayout( new GridLayout( 1, 2));
              add( labelPanelCli);
              add( screenvarcliPanel);
    class ButtonPanelCli extends JPanel {
         public ButtonPanelCli( Connection dbc, DataPanelCli scv, JTextArea msg ) {
              setLayout( new GridLayout( 2 ,0 ));
              JButton findcli = new JButton( "Rechercher" );
              findcli.addActionListener( new FindRecCli( dbc, scv, msg ));
              add( findcli );
              JButton addcli = new JButton( "Ajouter" );
              addcli.addActionListener( new AddRecCli( dbc, scv, msg ));
              add( addcli );
              JButton clearcli = new JButton( "Clear" );
              clearcli.addActionListener( new ClearScreenCli( scv ));
              add( clearcli );
              JButton printcli = new JButton( "Impression" );
    //          printcli.addActionListener( new PrintRecCli( dbc, scv, msg ));
              add( printcli );
              JButton structcli = new JButton( "STRUCTURE" );
              structcli.addActionListener( new StructRecCli( dbc, scv, msg ));
              add( structcli );
              JButton commerccli = new JButton( "COMMERCIAL" );
    //          commerccli.addActionListener( new CommercRecCli( dbc, scv, msg ));
              add( commerccli );
              JButton financli = new JButton( "FINANCIER" );
    //          financli.addActionListener( new FinanRecCli( dbc, scv, msg ));
              add( financli );
    class ClearScreenCli implements ActionListener {
         private DataPanelCli screenvarcli;
         public ClearScreenCli( DataPanelCli scv ) {
              screenvarcli = scv;
         public void actionPerformed( ActionEvent e ) {
              screenvarcli.ICCliFact.setText( "" );
              screenvarcli.INSociete.setText( "" );
              screenvarcli.ILAdresseA.setText( "" );
              screenvarcli.ICPostal.setText( "" );
              screenvarcli.ILLocalite.setText( "" );
              screenvarcli.ICPays.setText( "" );
    // Recherche Ajout Maj record
    // FIND NUMERO CLIENT
    class FindRecCli implements ActionListener {
         private DataPanelCli screenvarcli;
         private JTextArea msgout;
         private Connection dbconn;
         public FindRecCli( Connection dbc, DataPanelCli scv, JTextArea msg ) {
              dbconn = dbc;
              screenvarcli = scv;
              msgout = msg;
         public void actionPerformed( ActionEvent e ) {
              try {
                   String rechnom = new String();
                   rechnom = screenvarcli.INSociete.getText();
              if ( !rechnom.equals( "" )) {
                   Statement statement = dbconn.createStatement();
                   String query = "SELECT * " +
                        "FROM Cli_fact, Adresse " +
                        "WHERE Cli_fact.n_societe_c = '" + rechnom + "' " +
                        "AND c_adresse = c_cli_fact " +
                        "AND c_type_adr = '02'";
    //                    "WHERE n_societe_c = '" +
    //                    rechnom + "' ";
                   msgout.append( "\nSending query " +
                   dbconn.nativeSQL( query ) + "\n" );
                   ResultSet rs = statement.executeQuery( query );
                   display( rs );
                   statement.close();
              else
                   screenvarcli.INSociete.setText( "Entrer le NOM de Soci�t� ");
              catch ( SQLException sqlex ) {
                   msgout.append( sqlex.toString() + sqlex.getMessage() );
         // Display results of query
         public void display( ResultSet rs ) {
              try {
                   rs.next();
                   int recordNumber = rs.getInt( 1);
                   if ( recordNumber != 0 ) {
                        screenvarcli.ICCliFact.setText( String.valueOf(recordNumber) );
                        screenvarcli.INSociete.setText( rs.getString(2));
                        screenvarcli.ILAdresseA.setText( rs.getString(35));
                        screenvarcli.ILLocalite.setText( rs.getString(32));
                        screenvarcli.ICPostal.setText( rs.getString(31));
                        screenvarcli.ICPays.setText( rs.getString(33));
                        msgout.append( "\n Enregistrements trouv�s!!!!!!!\n" );
                   else
                        msgout.append( "\nPas d'enregistrements trouv�s\n" );
              catch ( SQLException sqlex ) {
                   msgout.append( "\n*** Nom de Soci�t� pas dans la data Base ***\n" );
    // ADD CLIENT
    class AddRecCli implements ActionListener {
         private DataPanelCli screenvarcli;
         private JTextArea msgout;
         private Connection dbconn;
         public AddRecCli( Connection dbc, DataPanelCli scv, JTextArea msg ) {
              dbconn = dbc;
              screenvarcli = scv;
              msgout = msg;
         public void actionPerformed( ActionEvent e ) {
              try {
              Statement statement = dbconn.createStatement();
              String rechnom = new String();
              rechnom = screenvarcli.INSociete.getText();
              if ( !rechnom.equals( "" )) {
                   String query = "INSERT INTO cli_fact (" +
                   "n_societe_c) VALUES ('" +
                   screenvarcli.INSociete.getText() + "')";
                   msgout.append( "\nSending query " +
                   dbconn.nativeSQL( query ) + "\n" );
                   int result = statement.executeUpdate( query );
                   if ( result == 1 ) {
                   // read just inserted rec to obtain c_cli_fact field
                   // needed to place STRUCTURE COMMERCIAL FINANCIER
                   msgout.append( "\nInsertion r�ussie\n" );
                   try {
                   query = "SELECT * FROM cli_fact WHERE n_societe_c='" +
                        rechnom + "'";
                   ResultSet rs = statement.executeQuery( query );
                   rs.next();
                   screenvarcli.ICCliFact.setText(String.valueOf(rs.getInt(1)));
                   catch ( SQLException sqlex ) {
                   msgout.append( sqlex.toString() );
              else {
                   msgout.append( "\nInsertion NON r�ussie\n" );
                   screenvarcli.INSociete.setText( "" );
              else
              msgout.append( "\nEntrer au moins le non de soci�t� puis press NOUVEAU\n" );
              statement.close();
              catch ( SQLException sqlex ) {
              msgout.append( sqlex.toString() );
              screenvarcli.INSociete.setText("Nom de soci�t� existe d�j� -- reenter");
    // STRUCTURE
    //class StructRecCli extends JFrame implements ActionListener {
    class StructRecCli implements ActionListener {
         private DataPanelCli screenvarcli;
         private JTextArea msgout;
         private Connection dbconn;
         private boolean firsttime = true;
         public StructRecCli( Connection dbc, DataPanelCli scv, JTextArea msg ) {
              super( " APPLICATION CLIENT STUCTURE " );
              dbconn = dbc;
              screenvarcli = scv;
              msgout = msg;
         public void actionPerformed( ActionEvent e) {
              if (firsttime) {
                   Container cnt = getContentPane();
                   cnt.setLayout( new FlowLayout() );
                   StruCliBox ob = new StruCliBox();
                   cnt.add( ob );
         screenvarcli.INSociete.getText();
                   ButtonPanelStr controls = new
                   ButtonPanelStr(dbconn, screenvarcli, msgout);
                   cnt.add(controls);
                   setSize(500, 475);
                   firsttime = false;
              show();
    class StruCliBox extends JPanel {
         JTextField ICCliFact, INSociete,
              ILAdresseA, ICPostal, ILLocalite, ICPays;
         JLabel LCCliFact, LNSociete,
              LLAdresseA, LCPostal, LLLocalite, LCPays;
         public StruCliBox() {
              //Label Panel
              JPanel s = new JPanel();
              s.setLayout( new GridLayout(6, 1));
              LNSociete = new JLabel( "Nom ", 0);
              s.add(LNSociete);
              LCCliFact = new JLabel( "Num�ro Client", 0);
              s.add(LCCliFact);
              LLAdresseA = new JLabel( "Adresse ", 0);
              s.add(LLAdresseA);
              LCPostal = new JLabel( "Code Postal ", 0);
              s.add(LCPostal);
              LLLocalite = new JLabel( "Localite ", 0);
              s.add(LLLocalite);
              LCPays = new JLabel( "Pays ", 0);
              s.add(LCPays);
              //TextField Panel
              JPanel screenvarcliPanel = new JPanel();
              screenvarcliPanel.setLayout( new GridLayout(6, 1));
              INSociete = new JTextField( 20);
              screenvarcliPanel.add(INSociete);
    //          String rechnom = new String();
    //          screenvarcli.INSociete.getText();
              ICCliFact = new JTextField( 20);
              screenvarcliPanel.add(ICCliFact);
              ILAdresseA = new JTextField( 20);
              screenvarcliPanel.add(ILAdresseA);
              ICPostal = new JTextField( 20);
              screenvarcliPanel.add(ICPostal);
              ILLocalite = new JTextField( 20);
              screenvarcliPanel.add(ILLocalite);
              ICPays = new JTextField( 20);
              screenvarcliPanel.add(ICPays);
              // Accessibility Section - relate labels and text fields
              // for use by assistive technologies
    //          LNSociete.setLabelFor( INSociete);
              LLAdresseA.setLabelFor( ILAdresseA);
              LCPostal.setLabelFor( ICPostal);
              LLLocalite.setLabelFor( ILLocalite);
              LCPays.setLabelFor( ICPays);
              setLayout( new GridLayout( 1, 2));
              add( s);
              add( screenvarcliPanel);
    //          setLayout(new FlowLayout() );
    //          add(s);     
    class ButtonPanelStr extends JPanel {
         public ButtonPanelStr( Connection dbc, DataPanelCli scv, JTextArea msg ) {
              setLayout( new GridLayout( 1 ,0 ));
              JButton addstr = new JButton("Ajouter");
    //          addstr.addActionListener( new AddStructure( dbconn, screenvarcli, msgout, ob));
              add( addstr );
              JButton majstr = new JButton("Mise � jour");
    //          majstr.addActionListener( new MajStructure( dbconn, screenvarcli, msgout, ob));
              add( majstr );
              JButton clestr = new JButton("Clear");
    //          clestr.addActionListener( new CleStructure( dbconn, screenvarcli, msgout, ob));
              add( clestr );
              JButton prnstr = new JButton("Impression");
    //          prnstr.addActionListener( new PrnStructure( dbconn, screenvarcli, msgout, ob));
              add( prnstr );
         // Fermeture de l'application
    //     protected void processWindowEvent(WindowEvent e) {
    //          if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    //               System.exit(0);

    To get data from one frame to another, either create one frame with a reference to the other one so it can discover the data in it, or create a static variable in one of your classes that both frames can access

  • Passing data from one frame to another frame

    hello all, i am having a problem with passing data from one frame from another. I have a main frame when you click on connect button it display the second frame(class) that has 2 text fields and 2 buttons. When i click on connect it check if the data is correct. If the data is correct i want that frame to close and pass the data back to main frame. How can i do that.
    thank you

    hello all, i am having a problem with passing data
    from one frame from another. I have a main frame when
    you click on connect button it display the second
    frame(class) that has 2 text fields and 2 buttons.
    When i click on connect it check if the data is
    correct. If the data is correct i want that frame to
    close and pass the data back to main frame. How can
    i do that.
    thank you
    the original problem sounded like an ideal opportunity to use Modal Dialog. if you want one frame to display another to get user input then you need to stop the method in the main frame from executing until you recieve a valid input.
    you can use your own class and keep all of the components that you have in the connect frame but you would have to extend JDialog instead of JFrame.
    there is a way around it!
    if you must use JFrame for both, then you need to have access to the main frame in the connect frame, maybe pass the pointer to the constructor??
    anyway, when the connect frame is done with its duties, you have to use the pointer to call another method in the main frame that will continue the process. otherwise main frame doesn't know when connect frame is done and by that time, the method in main frame that instantiated the connect frame has long since died.
    also, it allows things to happen in the other window that you may not want to happen until the connect frame is done
    typically users of software start clicking around on things and you could have three or four connect frames going at the same time
    it's really best to use a Modal Dialog, it really can look just like a JFrame!!!!!!!!!!!!!!

  • Retreive data from a frame to another

    Hi All,
    I have a Frame AppCli and in it I have the numcli, namecli, street, tel.....
    I want to send from the Frame AppCli the values numcli and the namecli to another Frame StruCli.
    Can I do this or have I to use another king of class
    regards.
    Thierry

    Yes you can.

  • How can I put more than One ComboBox in the Driving Frame of a Frame Driver

    Hi,
    I am working with a Frame Driver and I want that in the Driving Frame put more than one ComboBox to filter the report, for example, I want to put one combobox for City, another for Year, and another for Month, and when the user select the City, Year and Month and do click in Submit button, then in the Target Frame appears the information for those filters.
    Does anybody know how to do that?
    Thanks a lot.
    Bye,

    Hi,
    It is not possible to have more than one combo in the source frame. This is because frame drivers can take only
    two columns in the sql query, one is the display value and the other the return value.
    Thanks,
    Sharmila

  • E-mail are received as DAT file instad of PDF

    Hi All,
    Please try to assist in this strange topic:
    When I try to send an e-mail via the SBO (press on the envelope button and choose u2018yesu2019 when
    the option u2018Would you like to attach an edited report to the e-mail?u2019 is display), the receiver is received a file with u2018DATu2019 extension and not with PDF extension and the receiver canu2019t open the file.
    I have tried to uninstall the acrobat reader 9 and install instead Foxit 3.1, but the problem still
    persists.
    In addition, I have found the this issue is reproduced only when the customer is using the Hebrew interface of SBO and the PDF file name is in Hebrew.
    When I switched to English interface of SBO, then the PDF file name is in English and the file is received correct (As PDF file).
    Another thing is that when you send the e-mail via the SBO (with the attached PDF) and open it
    on outlook (e.g. 2007), the file is received as DAT file,
    However If you open the e-mail on web mail (e.g. GMAIL), the file is received as correct PDF file, But when you send a regular e-mail (not via the SBO) with the attached PDF file and open it on outlook, the file is received As PDF file.
    Thanks,
    Erez

    I am afraid that there is a syntax or some codes in the interface that make the pdf converted into DAT file. You should ask the technical consultant or someone that developed the interface to make sure about it.
    If not, probably,  there is a problem with your current SAP B1 version. You could try to upgrade to the latest PL version of your current B1 application and then try again this case. if this is happened in the latest version, log a message to SAP Support.
    JimM

  • How second frame transfer data to main frame

    I have main frame,and another frame that appear after user click to button on main frame . The problem is that i don't know how tranfer data that user input in second frame to main frame.
    Thanks to ALL

    your main frame needs to hold a reference to the second frame after its created. then use method calls (or even listeners depending on when you want the main to have the data) to retrieve the data.
    you may need to do some tweaking/redesigning of how your frames work with the data they're displaying.
    Takis

  • I received an ebook from another source. Can I transfer it into my iBook account?

    I received an ebook from another source. Can I transfer it into my iBook account?

    The problem could be that you don't have enough storage on the device itself, not on iCloud.  Go to Settings>General>Usage to see how much "Storage" you have available.  Farther down the list is the available storage on iCloud.
    Also check:
    Go to Settings>iCloud>Storage & Backups>Manage Storage; there, tap the device you need info on and the resulting screen lists Backup Options with which apps store data on iCloud.
    A device needs many MB of storage in order to perform a backup to iCloud.

  • Not Receiving Midi Data on one song

    I have recently recorded 10 songs for a project. All of a sudden, somehow on only one of the songs, I have somehow toggled the midi receive off. The midi information will play back if it is already recorded, but it will no longer receive midi data from the keyboard. It's only on this one song. If I select another song or a new song, it is fine. It receives the data fine. So I know it's not a problem with the overall midi setup.
    I don't have anything muted. Nothing is soloed.
    Obviously, I have toggled some midi in/out command on my keyboard by mistake.
    Any help?

    Can I add JUST the music from the other Mac without destroying the info already on the iPhone?
    Yes.
    I suggest disabling automatic syncing with iTunes when your iPhone is connected to iTunes with any computer, or iTunes includes a global setting for this.
    With the other computer at home, select sync music only for your iPhone sync preferences with iTunes on this computer. With your MBP, deselect sync music for your iPhone sync preferences with iTunes on the MBP.

  • Can a vi. send data to another .vi when ONLY the internet is between?

    I seem to have hit a hurdle.
    - I have one computer behind a Firewall at a university. This computer has a MIO-16E card in it. No administrative privileges to run datasocket server.
    - I have another computer(laptop)with an E series MIO that I have full privileges on, but project requirements only allow me to find wireless connection points so there is only the internet as a medium between the two.
    - If possible, I would like to pass a one way data stream from the university(UT).vi side to the Laptop .vi. By I could accept the dataflow in the other direction.
    Things I have tried: I can do Remote Panel where the UT machine controls the laptop (good); but, if scenario is switched, the laptop cannot use Remote Panel to control the UT .vi. Of course web browsers and User interfaces do very little for me since the DAQ and control signals will be unmanned.
    If someone has experience on how to make one .vi can send data to another .vi using just the internet, I would truly appreciate some advice. And, to be honest, I am solely a hardware individual and have not figured out how/what to setup for this experiment.
    Thanks for your time.

    SDGhwrtech wrote:
    I seem to have hit a hurdle.
    - I have one computer behind a Firewall at a university. This computer has a MIO-16E card in it. No administrative privileges to run datasocket server.
    - I have another computer(laptop)with an E series MIO that I have full privileges on, but project requirements only allow me to find wireless connection points so there is only the internet as a medium between the two.
    - If possible, I would like to pass a one way data stream from the university(UT).vi side to the Laptop .vi. By I could accept the dataflow in the other direction.
    Things I have tried: I can do Remote Panel where the UT machine controls the laptop (good); but, if scenario is switched, the laptop cannot use Remote Panel to control the UT .vi. Of course web browsers and User interfaces do very little for me since the DAQ and control signals will be unmanned.
    If someone has experience on how to make one .vi can send data to another .vi using just the internet, I would truly appreciate some advice. And, to be honest, I am solely a hardware individual and have not figured out how/what to setup for this experiment.
    Thanks for your time.
    If your labtop has a well known IP address/name you could always create a little TCP/IP server in LabVIEW and run it on that computer. Then have the university computer regularly try to connect to that labtop computer and on success start streaming the data you want to the server. The server then will receive the data and do something with it.
    Take a look at the VI examples in examples/comm/tcp.llb. Especially the Simple Data Client.vi and Simple Data Server.vi might be interesting for you.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Receiving RTP data

    I want to receive RTP data and access it directly. Is there a way to somehow store the incoming data stream into a byte array or something like that?
    I have been looking at the AVReceive3.java code, and it automatically sends the datasource to the player. I need to read the data in and pass it to another program. Thanks for any help!

    I don't know if your diagnosis is correct, for shure I have a lot of jitter between two PC using the same java app and playing a RTP broadcast audio.
    But I could not relate it with the speed of the computer, sometimes A plays before B, sometimes after. Problably it is the time to create objects that varies.
    Still looking for a solution....

  • InDesign Data Merge / Image Frame Options

    Hi! I am learning Data Merge and am trying to set-up some product sheets using it. I have done pretty well so far but have an issue with the way images are importing into the different image frames. There are a few different image frames on the layout (main product image, tech drawing, tech icons, etc.), and I need each image frame to have different frame options set.
    So far using the general "Frame Fitting Options" for each has worked for all imported images except for my tech icons (which I can get to import correctly if I choose "Content Placement Options > Fit Frames to Images" from the Data Merge side menu --but when I do this, it applies to all image frames on the page and not just the one selected (which does not work overall).
    Is there another option to get the icon image frames to "Fit Frame to Image" automatically without using the Content Placement Options from the Data merge menu? Is there a way to use the Content Placement Options so it works for individual frames vs all on the layout?
    Any help is much appreciated!
    Liz

    Within the data merge, the frame fitting options apply to all frames that contain variable images, so if you want one variable image to fit image to frame, and another variable image to preserve its size, that cannot be done in the main file, but by manipulating the resulting merge file as P Spier suggests. With Data Merge, there are 8 ways an image can fit inside a frame - see the linked pdf: http://colecandoo.files.wordpress.com/2012/08/framefit.pdf
    This is further complicated when importing ai or pdf images that contain different possible sizes to import (e.g. trim box, bleed box, bounding box, etc). If the "show import options" dialog box is used when placing an image into a data merge file, the settings used in those import options are maintained in the file for the importing of any pdf/ai files via the data merge. What this means is that a data merge containing pdf/ai images can go haywire quickly if the import options change.
    There are some tricks that can be used to control a size of an image in a data merge, provided the images are pdf/ai. If images are being placed by bounding box size in the import options, a way is by drawing a no fill/stroke box behind (or on another layer) of the pdf/ai - this will be used to define the actual size of the image, instead of the top left/bottom right of the image. Similarly, if images are being placed by media box, a similar technique can be used by making the illustrator artboard the size used to define the incoming image size.
    There are also other ways to control the way an image grows/shrinks when importing via the data merge. I have written about that elsewhere, but the trick relies on using making the variable image an anchored object in a larger text frame and controlling its coordinates with text and textbox formatting (e.g. top/bottom/center align; left/right/center, or tab position): Centering “fit frame to images” using InDesign CS6 | Colecandoo!

  • Receiving continous data

    Hi. I want to send data continously from one system to another. At the sender side if i didn't close the outputstream object i am able to send it continously but at the receiver side i am able to receive the data only once. The next time when it tries to receive i get the following exception:
    java.io.EOFException
    I am not closing the input stream object and i am using ObjectOutputStream and ObjectInputStream.
    Can someone suggest a solution as to how i could continously receive data??? Plz reply.

    At the sender side this is what i do
    ObjectOutputStream oos = new ObjectOutputStream(socket.getOutputStream());
    oos.writeObject(x);
    oos.writeObject(y);
    First time the co-ordinates are sent,during the second run I got the exception:
    java.net.SocketException: Connection reset by peer: socket write error
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputSt
    ream.java:1676)
    at java.io.ObjectOutputStream$BlockDataOutputStream.writeByte(ObjectOutp
    utStream.java:1714)
    at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.jav
    a:1391)
    at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:294)
    at Sender2.eventOutput(Sender2.java:115)
    at Sender2.mouseMoved(Sender2.java:96)
    at java.awt.AWTEventMulticaster.mouseMoved(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseMotionEvent(Component.java:5533)
    at javax.swing.JComponent.processMouseMotionEvent(JComponent.java:3111)
    at java.awt.Component.processEvent(Component.java:5257)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3905)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1766)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:234)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Now at the receiver side i use the following piece of code:
    do
    ObjectInputStream ois = new ObjectInputStream(socket.getInputStream());
    Integer x = (Integer) ois.readObject();
    Integer y = (Integer) ois.readObject();
    System.out.println("x: " + x);
    System.out.println("y: " + y);
    //ois.flush();
    i++;
    }while(i<2000);
    and i get the exception:
    java.io.StreamCorruptedException: invalid stream header
    at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:753
    at java.io.ObjectInputStream.<init>(ObjectInputStream.java:268)
    at Receiver.main(Receiver.java:19)
    I need a method to continously send and receive data until the user terminates??? Is there any solution?? Plz suggest.

Maybe you are looking for

  • Synchrnous SOAP Message Scenario

    Hi, I have the following scenario: <b>Sys. A -> (SOAP Request) -> XI Java Proxy -> Sys. B</b> Basically, System A above makes a SOAP Request to XI which in turn passes on the request to System B using a Java Proxy. Now, if the request is successful,

  • Using a library

    Have set up a library which has a spry horizontal menu. Whenever the library item is placed into a new form this is the result: <li><a href="/Library/index.html">Home</a></li> which really messes up all the links. Presently, I do a find and replace a

  • How do I delete a message in outlook that is stuck sending

    how do I delete a message that is stuck sending in microsoft outlook

  • Unable to download because of error "Package File is Invalid"

    I have tried to update my apps nor can I download apps. I've never had this problem before and I made sure I had room on my phone and I even restarted the app. Is anyone else having this trouble and if so how may I go about fixing this?

  • Surface Scan Fail (TechTool Deluxe)

    I thought my problem was fixed, but apparently not... my PowerBook works when I first boot it up, but as I use it for a while (or close it and re-open it), things start freezing. Sometimes it can't find my AirPort connection, either. Anyway, I ran th