What is the best way to get data from a spreadsheet into an HTML table?

I am using libreoffice, and I have it set to collate all the information I enter and output it to a simple table within the program like this:
http://imageshack.us/a/img717/5144/spreadsheeta.jpg
I want to get this information after sorting it and put it into the following html table within dreamweaver:
http://imageshack.us/a/img28/8872/htmls.jpg
what is the best method for getting the info from A to B?

before:
<table id="tbl-m">
          <tr class="tbl-hd">
            <td class="tbl-pos-width">pos</td>
            <td class="tbl-team-width">team</td>
            <td class="tbl-p-w-d-l-p">pld</td>
            <td class="tbl-p-w-d-l-p">won</td>
            <td class="tbl-p-w-d-l-p">drwn</td>
            <td class="tbl-p-w-d-l-p">lost</td>
            <td class="tbl-p-w-d-l-p">pts</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">1</td>
            <td class="tbl-team-width">Team Name 1</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">2</td>
            <td class="tbl-team-width">Team Name 2</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">3</td>
            <td class="tbl-team-width">Team Name 3</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">4</td>
            <td class="tbl-team-width">Team Name 4</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">5</td>
            <td class="tbl-team-width">Team Name 5</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">6</td>
            <td class="tbl-team-width">Team Name 6</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">7</td>
            <td class="tbl-team-width">Team Name 7</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">8</td>
            <td class="tbl-team-width">Team Name 8</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">9</td>
            <td class="tbl-team-width">Team Name 9</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">10</td>
            <td class="tbl-team-width">Team Name 10</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">11</td>
            <td class="tbl-team-width">Team Name 11</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">12</td>
            <td class="tbl-team-width">Team Name 12</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">13</td>
            <td class="tbl-team-width">Team Name 13</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">14</td>
            <td class="tbl-team-width">Team Name 14</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-b">
            <td class="tbl-pos-width">15</td>
            <td class="tbl-team-width">Team Name 15</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
          <tr class="tbl-row-a">
            <td class="tbl-pos-width">16</td>
            <td class="tbl-team-width">Team Name 16</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
            <td class="tbl-p-w-d-l-p">0</td>
          </tr>
        </table>
after:
<table>
          <tr>
            <td>Pos</td>
            <td>Team</td>
            <td>Pld</td>
            <td>Won</td>
            <td>Drwn</td>
            <td>Lost</td>
            <td>Pts</td>
          </tr>
          <tr>
            <td>1</td>
            <td>Team 1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Team 2</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Team 3</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>4</td>
            <td>Team 4</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>5</td>
            <td>Team 5</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>6</td>
            <td>Team 6</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>7</td>
            <td>Team 7</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>8</td>
            <td>Team 8</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>9</td>
            <td>Team 9</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>10</td>
            <td>Team 10</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>11</td>
            <td>Team 11</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>12</td>
            <td>Team 12</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>13</td>
            <td>Team 13</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>14</td>
            <td>Team 14</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>15</td>
            <td>Team 15</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
          <tr>
            <td>16</td>
            <td>Team 16</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
          </tr>
        </table>

Similar Messages

  • What is the best way to transfer data from a PC to an iMac?

    What is the best way to transfer data from a PC to an iMac?

    If you know how to set up a computer-to-computer Ethernet network, then you can give that a try, but a hard drive will be faster than Ethernet unless you don't have a lot to transfer.
    Mac OS X 10.6 Help- Creating a computer-to-computer network

  • What is the best way to import pictures from Lightroom 5 into FCP X

    What is the  best way to transfer pictures from Lightroom 5 into Final Cut Pro X?

    There is no one best way.  If, for instance, you want to be able to zoom into the picture with a Ken Burns effect then you may want to save out a very high res version that will be larger than your video resolution. Just use Lightroom to export a jpg file wherever you want it. You could export it into the Events folder and then choose not to copy it when you import it within FCPx. You could import the picture into iPhoto and then access it directly from within FCPx. Those are two simple, "regular" ways to get it into FCPx but if you are not going to Ken Burns the image by zooming into it and such you will want to crop it in Lightroom to the same size you will be using ie if you are making 720HD video then crop the image to that size and proportion before you export it from Lightroom.

  • What is the best way to get data to a user interface?

    Hi,
    I'm using labview 6i. I have an application with a handful of "core" vi's that actually run my application, doing the data acquisition, analysis, and control. I am currently using these same vi's for my user interface. I also have a number of vi's that contain menu's for configuring the "core" vi's. My questions is, what is the best way to seperate the "core" vi's from the user interface vi's. Global's, data socket, control references, others?
    Thanks for the help.

    Hi Sal,
    I have been a strong advocate of control refnums ever since LV 6i hit the streets. I recomend you look into using them to provide this conectivity.
    You could accomplish this by using a variation on the following.
    In your UI, create refnums for each of the controls or indicators that must be monitored or updated. Pass the appropriate refnums to each of the "core.i's" at program init time. Inside each of the core.vi's, use property nodes to read the control's values when appropriate and similarly for display purposes. (Note: Not all boolean mechanical actions are compatible with this technique. In those case you will have to explicitly write false values after find the control to be true or vise versa).
    By using this technique, you can keep the UI diagrams clea
    n. Depending on your app. the UI diagram could consist of the init's I mentioned above, and a while loop that watches if it's time to exit.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • What is the best way to save data from GPIB Device in a file?

    HI!
    I have a Keithley SourceMeter and want to save readings in a File along with settings on the front panel and timestamps plus several other infos. What is the best way to do this? Which file type? Any recommendations or hints could help me?
    Thanks

    Hi Andy,
    There are 3 main file formats that you can consider writing your data out to in LabVIEW:
    ASCII
    Binary
    Datalog
    ASCII
    ASCII files are useful because every operating system and almost every application can read/write ASCII format files. Use ASCII files when:
    Other users or applications will need to access the data file.
    You will not need to perform random access file I/O
    File I/O speed is not crucial
    Disk space is not crucial
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write to Text File.vi and Read from Text File.vi
    Binary
    Binary byte stream files are more specific to data storage and retrieval. Use b
    inary files when:
    File I/O will remain in LabVIEW only -- no other applications will be needing to write/read that file. There is no standard formatting for binary files and thus other applications or operating systems may be unable to read the file.
    Files are smaller than ASCII files
    Easier and faster random access to data
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write Binary File.vi and Read Binary File.vi
    Datalog
    When to use datalog:
    If you need to record data with a mixture of types, it can be cumbersome to convert everything to ASCII or to keep track of the binary formatting.
    Datalog format is binary and internal to LabVIEW, so again only use this format if no other applications or operating systems will be needing to perform file I/O on the file.
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write Datalog File
    Example.vi and Read Datalog File Example.vi
    Good luck!
    Kileen C.
    Applications Engineer
    National Instruments

  • What is the best way to retrive data from a Global Variable?

    Here is what I want to do,
    I have several PC's that run different types of tests. I want to use a global variable, running on a single PC, that acts like a sever that can be accessed by the other PC's in my lab. This Global variable will store the hostnames of the different PC's that are currently running each test, along with a description of the test.  Then, a user can access this Global variable to read the different values and select the PC and connect to it's desktop using Remote Desktop in Windows.
    Is it possible to write data to the Global variable that is running on the single PC?
    What is the best way to do this? Does anyone have a sample VI?
    What is the best way to then read the data from the Global variable?
    (I will probably use an array\cluster to store the hostnames.) 

    Another pre-LV8 idea...
    A functional global can be accessed using VI-Server and called using "call by reference".
    This approach harnesses the TCP functionality built into the VI-Server to manage the conncetion.
    This can be pretty quick and (if the functional global is written correctly) will support buffered- mixed data types. (Try to do that with the Shared Variable  ).
    Just another idea,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • What is the best way to move data from one array to another

    I'm going to be moving data from one array to a larger array on the same RAID but different controller. (I have some extra extra drives I'm also going to be installing Retrospect so I can't just restore from a backup.)
    The RAID has 450GB of production files, fonts etc.
    What is the best way to move the data over?
    I saw that someone had suggested using ditto. Would that be better than MacMV?
    I also own Bru LE so I could use that.
    Any advice would be appreciated.
    Thanks,
    Paul

    Ditto is a great option -- probably the best.
    ditto -rsrc src_folder /Volumes/targetvolume/targetfolder

  • What is the best way to import photos from iPhoto 9 into PSE 11?

    I just installed PSE 11 and I would like to move the pictures from my iPhoto 9 Library in to PSE 11.
    What is the best way to accomplish this as far as accuracy of data?
    Thank you!
    Len

    There is a direct option in Organizer which lets you import from iPhoto. This is under Import dropdown menu in left panel.
    If you are importing from iPhoto'09, your Tags, Albums Events, captions, star rating would also get imported apart from your media. This works differently for iPhoto'011 where you can get only the media to the Organizer,
    Just a couple of things to know:
    1. If in iPhoto preferences, you have chosen to create copies of your photos in iPhoto library and your library hence refers to the media store inside the library package, then on importing from iPhoto, Organizer would create copies of all those media under your pictures folder. That means, it would not corrupt your iPhoto package or modify it in any way.
    2. However, if in iPhoto, you are organizing by using references to original location on your Hard drive i.e. you are not creating copies of media in iPhoto library then on importing from iPhoto to Organizer, the Organizer would also use the same references and would not create copies of the media.
    Hope that helps!
    ~V

  • Moving from 13" MBP to 15" MBP...  What is the best way to get data moved over?

    I have a 13" MBP Mid-2009 model, upgrading to a 15" MBP Late-2011 model.  Both are on Lion OS 10.7.3.  I use Time Machine to back up the old machine.  If I use Migration Assistant, is a recovery from the Time Machine Backup taken on the 13" MBP over to the 15" MBP the best way to bring over all of the Apps and Data?  I know that the 13" has different HW drivers, so am unsure if the recovery will overwrite these drivers on the new 15" MBP.  Just trying to make sure that I do not mess up the new system, but have not been able to find out if Time Machine will preserve the critical OS files during the recovery.
    Thanks all!

    Some suggest you use Setup Assistant when you first turn the new MBP on.
    I have never used it to transfer any data from one computer to another, from Mac or PC to new Mac.
    I simply don't trust it, never had on any platform.
    I find it easier for me to just network computers together and copy data over. That way only the data I want is copied to the new computer. I can make all the interface changes myself.
    Oh as eww says do NOT use a TM backup from the older Mac to move data over to the new one. You could possibly be looking at reinstalling the OS on the new unit.

  • What is the best way to append data from one field to another?

    I have the following table, table1:
    Name Null? Type
    MAIL_ID NOT NULL NUMBER(10)
    LAST_NAME VARCHAR2(45)
    FIRST_NAME VARCHAR2(45)
    MIDDLE_INITIAL VARCHAR2(1)
    ADDRESS_1 VARCHAR2(45)
    CITY VARCHAR2(35)
    STATE VARCHAR2(2)
    ZIP VARCHAR2(10)
    REMARKS VARCHAR2(200)
    The table has duplicate entries that need to be removed. The records that will be removed need the
    data in the Remarks column appended to the Remarks data of the record that is not deleted.
    For example, the following listing shows a sample of the duplicate records.
    Mail ID Last Name First Name M Address City St ZIP Remarks
    189 BROWN STEPHEN 6706 MOESER LN EL CERRITO CA 94530-2909 Sf7#s124,f16#d7996(NML)[Cl#117][Ml#1649][NMf1#d288][NCf9#d319][SNl#e62]
    211023 BROWN STEPHEN B 6706 MOESER LN EL CERRITO CA 94530 RLl#a12047[IDl#i398]
    287796 BROWN STEPHEN B 6706 MOESER LN EL CERRITO CA 94530 SNl#e1163
    The following listing shows how the kept record should appear after the duplicate records are deleted.
    Mail ID Last Name First Name M Address City St ZIP Remarks
    189 BROWN STEPHEN 6706 MOESER LN EL CERRITO CA 94530-2909 Sf7#s124,f16#d7996(NML)[Cl#117][Ml#1649][NMf1#d288][NCf9#d319][SNl#e62]RLl#a12047[IDl#i398]SNl#e1163
    I have the process of deleting duplicates working but have yet to determine the best way to move
    the Remarks data from the deleted records to the preserved record.
    I know there are probably various ways to approach this.
    Any suggestions will be greatly appreciated!
    Here is the sql for deleting duplicates.
    DELETE FROM table1
    WHERE mail_id in (SELECT mail_id FROM table1
              where not first_name = 'Null' and
    not last_name = 'Null' and
              not city = 'Null' and
              not state = 'Null'and
    not last_name = 'Anon'
              minus
              select min(mail_id) from table1
              group by first_name, last_name, city, state, address_1, organization, title);
    THANKS in advance!!!!

    Here's quick and dirty example probably a better way to do it, but this is what I came up with quickly.
    My table looks like this:
    MAIL_ID LAST FIRST PHONE REMARKS
    123 Ruff Shawn 555-555-5555 Called 10-10-04
    135 Ruff Shawn 555-555-5555 Called 10-12-04
    201 Ruff Shawn 555-555-5555 Called 10-19-04
    The code below will concatenate the remarks column from the rows, and delete the 135 and 201 rows, then update the 123 row with the concatenated remarks.
    declare
    l_remarks varchar2(500);
    l_min_mail_id number;
    begin
    select min(mail_id) into l_min_mail_id
    from test
    group by last, first, phone;
    select remarks into l_remarks from test where mail_id = l_min_mail_id;
    for i in (select mail_id, remarks from test
         where last = 'Ruff'
              and first = 'Shawn'
              and phone = '555-555-5555'
              and mail_id <> l_min_mail_id)
    loop
    l_remarks := l_remarks||','||i.remarks;
    delete from test where mail_id = i.mail_id;
    end loop;
    update test set remarks = l_remarks where mail_id = l_min_mail_id;
    commit;
    end;
    Hope this helps.

  • What is the best way to get PATHS from one Photoshop psd file to another?

    Hi! New on the site, and I signed up specifically to ask the best way to import one .psd file into another, including the paths on the paths palette.
    Almost all of my Photoshop drawings make heavy use of vector paths, which I then stroke using using PS natural-media brushes and the "stroke paths" function (usually with "simulate pressure" checked.) Also, my .psd files tend to be, um, HUGE... and I typically break up a whole drawing into separate PS files and then assemble all of them into one final finished graphic.
    I have no trouble moving raster stuff from file to file. Just put all the layers I want to transfer into a group and drag the group to the other .psd. Works fine, including layer masks. But I have not found a good way to get vector paths from the Paths palette of one .psd to another. Of course I can select paths and copy them to the Win clipboard, switch to the other .psd, and paste them back in. The drawback to that method is that I lose the correct size relation between the results of previously done "stroke paths" operations (on raster layers) and the paths that generated them. Sometimes the copied-in paths are way too large, sometimes way too small, never Just Right.
    As I'm sure most of you know, if you resize an entire Photoshop document from within PS, any paths it contains are correctly resized along with everything else. That's no longer true after grouped raster layers are dragged over to another document but paths are copied and pasted in. The size connection is lost. (Location placement, too.)
    I WANT those paths! After I bring a piece of a drawing into the full final drawing, what looked good when I was working on it separately often doesn't look right any longer and I want to re-stroke those paths using different brush diameter, opacity, etc., or maybe even a completely different brush.
    I've tried bring outside .psd files in as smart objects with the Place command but either that doesn't work or I'm not doing it right. Using Place, the paths in the Placed document don't come in at all.
    I'll be very grateful for any hints or strategies any of you knowledgeable folks can give me. Thanks very much!
    Jim
    Note, PS CS3 extended on Win 7 pro.

    Denny
    1. Connect the two macs - firewire, ethernet, sneakernet as suits you - and copy the iPhoto Library Folder from Old Machine to New Machine. Drag it from Home/Pictures to the same location on the new machine.
    2. Because all the files 'belong' to the account on the old machine, you have to update the file permissions: hence Download BatchMod from
    http://macchampion.com/arbysoft/
    And apply it to the iPhoto Library Folder using the settings found here:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/BatChmod.png
    (Credit to Old Toad for this one).
    Note: This must be run on the new machine after copying the files over.
    3. Then launch iPhoto on the new machine.
    Regards
    TD

  • What is the best way to get audio from a regular cd into logic?

    I need to get some music of a regular music CD into Logic. When doing something like this on a PC I'd get some third party software to rip the CD and convert into audio files that I'd use in the Daw. What is the simplest way on a Mac?

    1. insert CD (der...)
    2. open iTunes and click 'inport cd'
    3. when the tracks are finished inporting drag them into a play list (just to keep things tidy.)
    4. select the tracks you want in logic.
    5. drag the tracks where you want them in logic
    note: when you drag the tracks in logic will create an overview for the tracks, this could take a while depending on the length of the son.
    hope this helps.

  • Which is the best way to get data from user difine tables with condition

    Hi everyone,
    I would like using SBO DIAPI to get UDT data rows, there is a method of UserTable.getbykey can get one row information, but I like to get a list of rows from UDT, and the get list have its condition such as: field1="Type_A" ect.
    also I want to avoid using doquery get data from DB, because there is direct access DB potential Suspect.
    I am using SBO 2005 PL09 & visual studio(VB.net) 2005 and I only using DIAPI do not using UIAPI.
    Thanks for any advice.
    Kathy

    Hi Kathy,
    Unfortunately SBObob.GetObjectKeyBySingleValue only works for the B1 business objects as listed in the documentation.
    So, when you don't know the keys (= Code) of the records you want to get from your UDT - there's no way around using Recordset object's DoQuery method!
    Sorry,
    Frank

  • How is the best way to send data from local database into remote database ?

    Hi all,
    I need to send data from local Oracle database into remote oracle database. Both sites connected via 128 kbps frame relay connection.
    The sending need to be done once a week, can be done nightly.
    How is the best way to do this ?
    Thank you very much,
    xtanto

    How is the best way to do this ?How much are you planning to send?
    You can use COPY command. Ensure that you have valid database link between two databases.
    Available options are:
    create - creates a new table. errors out if the destination table exists.
    replace - drop the destination table and re-creates with data.
    insert - inserts data if the destination table exists.
    append– appends data into an existing table.
    use set arraysize 5000 -The arraysize specifies the number of rows that SQL*Plus will retrieve from the database at one time.
    copy from scott/tiger@ORCL to scott/tiger@ORCL92 create new_emp using select * from emp;

  • What is the best way to move data from an old G3 to a new iMac?

    The G3 does not recognize a USB flash drive. Will an external hard drive work if we have software to install drivers?

    Use an ethernet cable to connect the two computers, and set up file sharing. After that copying files from one computer to the other is exactly like copying from one hard drive to another:
    http://docs.info.apple.com/article.html?artnum=106658

Maybe you are looking for

  • How to synch edited files on local machine to mobile me?

    Hi, I am trying to edit html on an iweb site and I have figured out (by reading here) how to edit the files by publishing the site to a local folder in my machine however, I don't know how to upload those changes to the mobile me. When I change the p

  • T-40 USB Port

    Can I replace USB ports on my T 40 ,model 2373? . When I plug in any device(,memory stick,GPS receiver etc.) getting msg' Windows doesn't recognize this device.This is happening when device is plug in before boot up. But if laptop is already running

  • How to remove the Payment Draft

    Hi, Would I know how to remove the Incoming/outgoing payment draft by DI commands? i try to use oInPay.remove but it doest work. Thanks! Edited by: Bowie Ho on May 27, 2010 4:52 AM

  • Download issue...why can't I do it?

    Why can't I download the ipod nano manual or even view it I've tried several times today....what is going on?

  • Oracle Alert Event

    Hello , I can use :new or :old in ORACLE Alert sql statement ???? if not , how can i get reference to the value for the new record inserted ... Please advice , Thanks,