JTable: READ and EDIT uses - a good example?

Hello,
I am looking for a good (complete) example of how to use JTable in READ and EDIT mode. I want to add rows immediately in the JTable and i want to edit a cell also. It is for a use in a production environment.
It is easy to use it to display data but i think it is not really easy to use it in EDIT mode. For the moment, when i need to insert data in the grid, i do it with the help of a dialog box that contains the different fields to insert.
Thanks for the help
JMi

I don't find it easy to use that's why i am looking for a good example - a real one with full read, edit, delete and save modes (+ sort capabilities). OK, it's certainly possible to use it but... it's a question of time. I don't want to spend several hours/days to find that it is not OK. That's all.
JMi

Similar Messages

  • Read and edit a txt file in Air 2.5

    im building an android application, the database i have to use is a txt file, on the device file system
    i tryed many codes from the internet but none of them worked.
    can someone write an example code of how to read and edit this file?
    im a beginner so it would be helpful if you be more detaied....
    thanks.

    Please let me know if it is possible to do like this.
    All suggestions are welcome.Find out yourself by using Google.

  • Read and Edit a PDF File

    Dear Friends,
    I would like to know if it is possible to read and edit the same pdf file using Java. ie my PDF file named "Sample.pdf" has contents like
    First Name = &F_NAME
    Last Name =&L_NAME
    what I want is to parse the Sample.pdf file and look for &F_NAME and replace it with "Jacob" and &L_NAME and replace it with "Abraham" so that the contents within that pdf file look like
    First Name = Jacob
    Last Name =Abraham
    Please let me know if it is possible to do like this. All suggestions are welcome. Thanks in advance.

    Please let me know if it is possible to do like this.
    All suggestions are welcome.Find out yourself by using Google.

  • Will PS express on Win.8.1 read and edit a PSD file?

    Hi, I am trying to find a reliable program to open PSD files for a business card i have had created. I may want to change the verbage around on the template. I searched the microsoft store for programs and PH express came up but did not describe if the program will read and edit PSD files.
    Can anyone provide some feed back on this?
    Or provide another option besides purchasing PS?
    Thank you.

    Updated: i installed PS express and shocker... it doesnt evan acknowledge the PSD file in my folder.
    so i read somewhere that i may be able to edit a PSD with an older version of photshop., but i am running Win. 8.1 ...
    can someone suggest a older more echonomical version of PS that will read and edit PSDs???
    need help... thank you.

  • Can I read and edit microsoft office documents on my iPhone?

    Can I read and edit microsoft office documents on my iPhone?
    such us: word (.doc), excel (.xls), powerpoint (.ppt), etcetc...
    Thanks!
    Jp

    Jay,
    As taken from the [iPhone user manual|http://manuals.info.apple.com/en/iPhoneUserGuide.pdf]:
    You can view attachments in both portrait and landscape orientation. If the format of an attached file isn’t supported by iPhone, you can see the name of the file but you can’t open it. iPhone supports the following email attachment file formats: .doc, .docx, .htm, .html, .pdf, .txt, .xls, .xlsx
    At this time, there is no way to edit documents on the iPhone.
    Hope this helps,
    Jennifer B.

  • Reading and Editing '.pdb' files in Mac OS X

    Does anyone know of a program that will read and edit '.pdb' files in Mac OS X? eReader Pro doesn't allowing editing. Thanks.

    Did you try PalmFileEdit?
    http://www.ecamm.com/mac/palmfileedit/

  • After attempt to install windows 7 via boot camp onto Mac mini, my screen reads "no bootable devise--insert boot devise and press any key.  However, disk still in reader, and not using a Mac keyboard

    After attempt to install windows 7 via boot camp onto Mac mini, my screen reads "no bootable devise--insert boot devise and press any key.  However, disk still in reader, and not using a Mac keyboard

    Reboot your Mac, as soon as you hear the chime press the option/alt key and hold it until the boot manager appears, select OSX to boot from.

  • Export playlist and edit using excel or other editor

    I have a lot of duplicates due to the same songs being downloaded through different albums (i.e. greatest hits, compilations).
    I have used a playlist to display all songs and then I displayed the duplicates using the "duplicates" function. I would like to export the playlist to some other app where I can sort and filter (i.e name and then bit rate) so that I can edit the list to include the "keeper" tracks from the multiple duplicates. I would then like to import this playlist back into Itunes so that I can have a playlist called "keeper tracks".
    Does anyone know how I Can do this? It seems that the playlist is in a UTF-8 type format and it is not showing as individual rows for each track when I try to use an editor.
    Thank you

    Theoretically you can use the Export command and read the XML into Excel. But it is far easier to copy and paste...
    Display the playlist in iTunes, and make sure all the columns that you care about are present. (If any are missing, enable them by going to View > View Options.) Then Edit > Select All, and Edit > Copy.
    Now switch over to Excel and Edit > Paste (or CTRL-V). Everything will show up and will be correctly columnized in Excel. Now you can go to town with sort, filter, etc.

  • EPUB with video and other functionalities - any good examples?

    Dear fellows,
    I'm in search of good examples of Epubs (electronic books or publications) with embedded video and eventually other advances functionalities. Can you mail me or refer me to good examples?
    Many thanks
    Knud Lindholm Lau
    Copenhagen

    Thanks Steve.
    Still as an ignorant: What does this mean for the possibility to read EPUBs sith embedded video and audio? Is Ibook the format of Ipads and and are these the only devices capable of running embedded video right now?
    Yours Knud

  • Need help to read and write using UTF-16LE

    Hello,
    I am in need of yr help.
    In my application i am using UTF-16LE to export and import the data when i am doing immediate.
    And sometimes i need to do the import in an scheduled formate..i.e the export and imort will happend in the specified time.
    But in my application when i am doing scheduled import, they used the URL class to build the URL for that file and copy the data to one temp file to do the event later.
    The importing file is in UTF-16LE formate and i need to write the code for that encoding formate.
    The problem is when i am doing scheduled import i need to copy the data of the file into one temp place and they doing the import.
    When copying the data from one file to the temp i cant use the UTF-16LE encoding into the URL .And if i get the path from the URl and creating the reader and writer its giving the FileNotFound exception.
    Here is the excisting code,
    protected void copyFile(String rootURL, String fileName) {
    URL url = null;
    try {
    url = new URL(rootURL);
    } catch(java.net.MalformedURLException ex) {
    if(url != null) {
    BufferedWriter out = null;
    BufferedReader in = null;
    try {
    out = new BufferedWriter(new FileWriter(fileName));
    in = new BufferedReader(new InputStreamReader(url.openStream()));
    String line;
    do {
    line = in.readLine();
    if(line != null) {
    out.write(line, 0, line.length());
    out.newLine();
    } while(line != null);
    in.close();
    out.close();
    } catch(Exception ex) {
    Here String rootURL is the real file name from where i have to get the data and its UTF-16LE formate.And String fileName is the tem filename and it logical one.
    I think i tried to describe the problem.
    Plz anyone help me.
    Thanks in advance.

    Hello,
    thanks for yr reply...
    I did the as per yr words using StreamWriter but the problem is i need a temp file name to create writer to write into that.
    but its an logical one and its not in real so if i create Streamwriten in that its through FileNotFound exception.
    The only problem is the existing code build using URL and i can change all the lines and its very difficult because its vast amount of data.
    Is anyother way to solve this issue?
    Once again thanks..

  • File Read and Write using File Adapter in Bpel

    In Bpel Process i am using File Adapter ( Schema is Opaque) for read and write the file contents. i am able do successful deployment and read, write function in first time deployment, after that again i tired to run the application, its not going to write the content of file, its only writing the file with out data's or content in that file.
    Please help me...
    Saravanan

    Hi Eric
    In my domain.log file having the following details. In this file im unable to find out what the exact problem. Please look at this and help me.
    <2008-01-22 18:25:42,024> <INFO> <default.collaxa.cube.compiler> validating "C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\.bpel_BPELProcess2_1.1_298e83988d77b6640c33dfeec11ed31b.tmp\BPELProcess2.bpel" ...
    <2008-01-22 18:25:49,850> <INFO> <default.collaxa.cube.engine.deployment> <CubeProcessFactory::generateProcessClass>
    Process "BPELProcess2" (revision "1.1") successfully compiled.
    <2008-01-22 18:25:49,914> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> Loading JCAActivationAgent for {portType=Read_ptt}
    <2008-01-22 18:25:49,914> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::load - Locating Adapter Framework instance: OraBPEL
    <2008-01-22 18:25:49,930> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::load - Done loading JCAActivationAgent for processId='bpel://localhost/default/BPELProcess2~1.1/
    <2008-01-22 18:25:49,930> <INFO> <default.collaxa.cube.engine.deployment> Process "BPELProcess2" (revision "1.1") successfully loaded.
    <2008-01-22 18:26:02,698> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::uninit Shutting down the JCA activation agent, processId='bpel://localhost/default/BPELProcess2~1.0/', activation properties={portType=Read_ptt}
    <2008-01-22 18:26:02,698> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> Adapter Framework instance: OraBPEL - performing endpointDeactivation for portType=Read_ptt, operation=Read
    <2008-01-22 18:26:02,698> <INFO> <default.collaxa.cube.ws> <File Adapter::Outbound> Endpoint De-activation called in adapter for endpoint : D:\MAXIMUS_Project_Softwares\jdevstudiobase10132\jdev\mywork\MyLabs\BPELProcess2\in
    <2008-01-22 18:26:02,698> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::init - Initializing the JCA activation agent, processId='bpel://localhost/default/BPELProcess2~1.1/
    <2008-01-22 18:26:02,698> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::initiateInboundJcaEndpoint - Creating and initializing inbound JCA endpoint for:
    process='bpel://localhost/default/BPELProcess2~1.1/'
    domain='default'
    WSDL location='rd.wsdl'
    portType='Read_ptt'
    operation='Read'
    activation properties={portType=Read_ptt}
    <2008-01-22 18:26:02,698> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> Adapter Framework instance: OraBPEL - endpointActivation for portType=Read_ptt, operation=Read
    <2008-01-22 18:26:02,730> <INFO> <default.collaxa.cube.activation> <File Adapter::Inbound> Endpoint Activation called in File Adapter for endpoint: D:\MAXIMUS_Project_Softwares\jdevstudiobase10132\jdev\mywork\MyLabs\BPELProcess2\in
    <2008-01-22 18:26:02,730> <INFO> <default.collaxa.cube.activation> <AdapterFramework::Inbound> Adapter Framework instance: OraBPEL - successfully completed endpointActivation for portType=Read_ptt, operation=Read
    <2008-01-22 18:26:02,890> <WARN> <default.collaxa.cube.activation> <File Adapter::Inbound> PollWork::run exiting, Worker thread will die
    <2008-01-22 18:26:04,171> <INFO> <default.collaxa.cube.ws> <File Adapter::Outbound> Managed Connection Created
    <2008-01-22 18:26:04,171> <INFO> <default.collaxa.cube.ws> <File Adapter::Outbound> Connection Created
    <2008-01-22 18:26:04,171> <INFO> <default.collaxa.cube.ws> <File Adapter::Outbound> FileInteraction Created

  • Having Truble Reading and Echoing Using PHP in HTML. Possible Variable Scope Problem?

    Hey guys,
       Thanks for your always knowledgable help! Today I am working with displaying text from a text file in an HTML table using PHP. I can't get the data to display properly, I think it has something to do with the scope of the variables, but I am not sure. Here is the code I am struggeling with:
    <table width="357" border="1" cellspacing="0" cellpadding="0">
      <tr>
        <td width="165">Pizza 1</td>
        <td width="186"><? echo  $price['0']; ?></td>
      </tr>
      <tr>
        <td>Burger 1</td>
        <td><? echo $price['1']; ?></td>
      </tr>
      <tr>
        <td>Drink 1</td>
        <td><? echo $price['2']; ?></td>
      </tr>
    </table>
    In the above PHP (not shown) the array $price is filled properly (I tested by echoing each bit line by line) but by the time we get into the HTML it seems the array is empty or it is not liking how I am calling it. Does the scope of a PHP variable end with the closing "?>" tag? Am I missing something? Bellow is the full code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    body {
        background-color: #333;
        color: #FFF;
    </style>
    </head>
    <body>
    <?php
    $menu=fopen("prices.txt","r") or exit("Unable to open file!");
    $price=array();
    $priceposition=null;
    $tempstring;
    //This loop does all of the READING and populating of variables
    while(!feof($menu))
        //Check to see if this is the first pass, if not add one to the array possition
        if ($priceposition==null){
            $priceposition=0;
        else{
        $priceposition++;
        //populate the temparary string
        $tempstring = fgets($menu);
        //Populate the array if the temporary string is not a comment
        if(substr($tempstring,0,2) != "//"){
            $price['$priceposition']= $tempstring;
            echo $price['$priceposition'];
      //End of reading loop
    fclose($menu);
    ?>
    <table width="357" border="1" cellspacing="0" cellpadding="0">
      <tr>
        <td width="165">Pizza 1</td>
        <td width="186"><? echo  $price['0']; ?></td>
      </tr>
      <tr>
        <td>Burger 1</td>
        <td><? echo $price['1']; ?></td>
      </tr>
      <tr>
        <td>Drink 1</td>
        <td><? echo $price['2']; ?></td>
      </tr>
    </table>
    </body>
    </html>
    and you can run the code on my test server here: christianstest.info/phptest/readwritetesting/readtest.php
    thanks guys!

    MurraySummers wrote:
    Try changing this -
    fclose($menu);
    to this -
    fclose($menu);
    echo "<pre>";exit(print_r($price));
    and see what you get.
    Wow, what a great little peice of testing code, thanks! That showed me the problem right away! Is there any way to test your php line by line in Dreamweaver CS6? I am used to computer programing in Visual Studio and Eclipse where they have an option of running code line by line and seing how variables populate and change with each line of code execution. Or is thier a program that can do this for PHP?

  • Urgent: Please help. how to solve the time delay during buffer read and write using vc++

    I need to continuously acquire data from daqmx card, write into a file and at the same time corelate (in terms of time) the data with signals from other instruments. The current problem is that there is time delay during read and write data into buffer,thus causing misalignment of the data from multiple instruments. Is there a way to solve  the delay? or Is there a way to mark the time of the data acquisition in the buffer?  If I know the starting time (e.g. 0) of data acquisition and sampling rate (e.g. 1kHz), can I simply add 1ms to each data sample in the buffer? The current code is shown below.
    void DataCollectionWin::ConnectDAQ()
    DAQmxErrChk(DAQmxCreateTask ("", &taskHandle));
        DAQmxErrChk(DAQmxCreateAIVoltageChan(taskHandle,"Dev1/ai0,Dev1/ai1,Dev1/ai2,Dev1/ai3,Dev1/ai4,Dev1/ai5,Dev1/ai16,Dev1/ai17,Dev1/ai18,Dev1/ai19,Dev1/ai20,Dev1/ai21,Dev1/ai6,Dev1/ai7,Dev1/ai22","",DAQmx_Val_Cfg_Default,-10.0,10.0,DAQmx_Val_Volts,NULL));
      DAQmxErrChk(DAQmxCfgSampClkTiming(taskHandle,"",1000.0,DAQmx_Val_Rising,DAQmx_Val_ContSamps,60000));
      DAQmxErrChk (DAQmxRegisterEveryNSamplesEvent(taskHandle,DAQmx_Val_Acquired_Into_Buffer,50,0,EveryNCallback,NULL));// Every 50 samples the EveryNSamplesEvent will be trigured, to reduce time delay.
      DAQmxErrChk (DAQmxRegisterDoneEvent(taskHandle,0,DoneCallback,NULL));
      DAQmxErrChk (DAQmxStartTask(taskHandle));
    int32 CVICALLBACK EveryNCallback(TaskHandle taskHandle, int32 everyNsamplesEventType, uInt32 nSamples, void *callbackData)
     DAQmxErrChk (DAQmxReadAnalogF64(taskHandle,50,10.0,DAQmx_Val_GroupByScanNumber,data,50*15,&read,NULL));
       //memcpy(l_data,data,6000);
      SetEvent(hEvent);
    l_usstatus_e[0]=g_usstatus[0];// signals from other instruments that need to be corelated with the data from daq cards.
     l_optstatus_e[0]=g_optstatus[0];
     if( read>0 ) // write data into file
       //indicator=1;
     for (i=0;i<read;i++)
     {  //fprintf(datafile,"%d\t",i);
      fprintf(datafile,"%c\t",l_usstatus_s[0]);
      fprintf(datafile,"%c\t",l_usstatus_e[0]);
            fprintf(datafile,"%c\t",l_optstatus_s[0]);
      fprintf(datafile,"%c\t",l_optstatus_e[0]);
              fprintf(datafile,"%.2f\t",data[15*i]);
     //   sprintf( pszTemp, "%f", data[6*i]);
     // pListCtrl->SetItemText(0, 2, pszTemp);
        //pWnd->m_trackinglist.SetItemText(0, 2, pszTemp);
         fprintf(datafile,"%.2f\t",data[15*i+1]);
         fprintf(datafile,"%.2f\t",data[15*i+2]);

    Hello kgy,
    It is a bit of a judgment call. You should just choose the board that you think has the most to do with your issue. For example, this issue was much more focused on setting up your data acquisition task than the Measurement Studio environment/tools, so the MultifunctionDAQ board would have been the best place for it. As for moving your post to another board, I do not believe that is possible.
    Regards,
    Dan King

  • Having issue uploading,viewing and editing using PSE7 & 12

    Hello there!!
    So I was having issues with photos uploading, not uploading into my PSE7, so once it wouldn't upload anymore, I thought okay, maybe it's the program, it's too old or whatnot.  So I bought and downloaded PSE12 *which I really wanted anyway* and I am still having the same issue.  I am totally at a loss here, and I need my program to work to do editing and design work.  SO I hope that someone can help me with this issue.
    Things I am having issues with:
    When trying to upload picture from PSE, it dosen't show up, but it shows as a recently edited file.
    When right clicking on image and then opening using PSE, the program opens, but the photo dosen't.
    I can't drop and drag my images in any folders, as I used to be able to.
    Can anyone assist me with this issue. I feel it might be deeper than the photo editing program.  Thanks!!
    Jess

    Okay here is the copied and pasted info:   However, I've ran every test imaginable and it says that everything is okay and good to go and no updates are needed.
    Adobe Photoshop Elements Version: 12.0 (12.0 (20130903.r.43239)) x32
    Operating System: Windows XP 32-bit
    Version: 5.1 Service Pack 3
    System architecture: AMD CPU Family:15, Model:6, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 2
    Processor speed: 2800 MHz
    Built-in memory: 3839 MB
    Free memory: 676 MB
    Memory available to Photoshop Elements: 3205 MB
    Memory used by Photoshop Elements: 70 %
    Image tile size: 132K
    Image cache levels: 6
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 900, right: 1600
    Video Card Number: 1
    Video Card: ATI Radeon HD 4200
    Driver Version: 8.850.0.0
    Driver Date: 20110419000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atiumdag,atidxx32,a tiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1600 x 900 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 4200
    Video Card Memory: 256 MB
    Application folder: C:\Program Files (x86)\Adobe\Photoshop Elements 12\
    Temporary file path: C:\Users\ARTSIN~1\AppData\Local\Temp\
    Photoshop Elements scratch has async I/O enabled
    Scratch volume(s):
      Startup, 581.5G, 459.2G free
    Required Plug-ins folder: C:\Program Files (x86)\Adobe\Photoshop Elements 12\Required\
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Photoshop Elements 12\Plug-Ins\
    Additional Plug-ins folder: not set
    Installed components:
       ACE.dll   ACE 2013/02/13-10:58:57   66.529615   66.529615
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       adbeapecore.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       adbeapeengine.dll   Adobe APE Engine 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOLS.dll   Adobe Online Services   4.0  
       AdobeOwl.dll   Adobe Owl 2012/06/20-18:39:56   4.1.9   78.509892
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2012/05/03-13:40:03   66.146729   66.146729
       AdobeXMPFiles.dll   Adobe XMP Files 2012/05/03-13:40:03   66.146729   66.146729
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       Adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.2.0.4 (BuildVersion: 2.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       AGM.dll   AGM 2013/02/13-10:58:57   66.529615   66.529615
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,35  
       aif_core.dll   AIF   3.0   1.486530
       aif_ogl.dll   AIF   3.0   1.486530
       amtlib.dll   AMTLib   7.0.0.229 BuildVersion: 7.0; BuildDate: Sat Jul 20 2013 18:34:18)   1.000000
       amtservices.dll   AMTServices   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       ARE.dll   ARE 2013/02/13-10:58:57   66.529615   66.529615
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       AXSLE.dll   AXSLE 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/02/13-10:58:57   66.529615   66.529615
       BIBUtils.dll   BIBUtils 2013/02/13-10:58:57   66.529615   66.529615
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2013/02/13-10:58:57   66.529615   66.529615
       data_flow.dll   AIF   3.0   1.486530
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ems.dll   Elements Organizer   12.0  
       ExtendScript.dll   ExtendScript 2012/04/30-09:03:39   66.504695   66.504695
       FaceDetector.dll   FaceDetector 0000/00/00-00:00:00   2.0.1.1   2.0.1.1
       FileInfo.dll   Adobe XMP FileInfo 2013/08/08-01:01:28   66.153972   66.153972
       filter_graph.dll   AIF   3.0   1.486530
       hydra_filters.dll   AIF   3.0   1.486530
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   1.486530
       image_flow.dll   AIF   3.0   1.486530
       image_runtime.dll   AIF   3.0   1.486530
       JP2KLib.dll   JP2KLib 2012/11/05-11:16:34   66.246493   66.246493
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mozcrt19.dll   Mozilla Custom C Runtime   8.00.0000  
       MPS.dll   MPS 2012/10/12-13:31:12   66.521571   66.521571
       MSVCP100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCP71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       MSVCR100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCR71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       NPSWF32.dll        
       nspr4.dll   Netscape Portable Runtime   4.8.2  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop Elements Editor   12.0  
       platform.DLL   Adobe Help System   1, 0, 0, 1  
       Plugin.dll   Adobe Photoshop Elements Editor   12.0  
       PSArt.dll   Adobe Photoshop Elements Editor   12.0  
       PSViews.dll   Adobe Photoshop Elements Editor   12.0  
       ScCore.dll   ScCore 2012/04/30-09:03:39   66.504695   66.504695
       ScriptUIFlex.dll   ScriptUIFlex 2012/04/30-09:03:39   66.504695   66.504695
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       Tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
    Required plug-ins:
       Accented Edges 12.0
       Angled Strokes 12.0
       Auto Divide 12.0.1
       Average 12.0.2
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 8.0
       Camera Raw Filter 8.0
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Clouds 12.0.4 (12.0.4x001)
       Color Halftone 12.0.2
       Colored Pencil 12.0
       Comic 13.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Correct Camera Distortion 12.0.2
       Craquelure 12.0
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       Difference Clouds 12.0.4 (12.0.4x001)
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x001)
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Novel 13.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       Ink Outlines 12.0
       Lens Blur 12.0
       Lens Flare 12.0.2
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x001)
       Mezzotint 12.0.2
       MMXCore Routines 12.0.4 (12.0.4x001)
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x001)
       Neon Glow 12.0
       Note Paper 12.0
       Ocean Ripple 12.0
       OnEdge 1, 0, 0, 1
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Pen and Ink 13.0
       Photocopy 12.0
       Picture Package Filter 12.0.4 (12.0.4x001)
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x001)
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Polar Coordinates 12.0.4 (12.0.4x001)
       Poster Edges 12.0
       Radial Blur 12.0.2
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.0.4 (12.0.4x001)
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Straighten and Crop Image 12.0.1
       Straighten Image 12.0.1
       Sumi-e 12.0
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       WIA Support 12.0.4 (12.0.4x001)
       Wind 12.0.2
       ZigZag 12.0.2
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Installed TWAIN devices: NONE

  • How can I record and edit using an electronic drum kit to midi on a windows based PC (That I will eventually use in Garageband)?

    Hi there
    I know this isnt really a Garagband question and possibly a little off GB topic, but in the end I will be using the midi file in Garageband so it kind of is
    I'm new to Midi recording so please bare with me.
    I am looking to do the following.
    Have my drummer record from his Session Pro DD505 electronic drum kit (which has a midi out) into his windows based computer via midi (He owns a usb to midi cable), so that he can then email me the midi file, so I can add it to a song in Garageband on my Mac. I will then choose the sound of the drum kit myself from Garageband.
    He needs to be able to correct any errors he has made in the midi file before emailing it me, either by re-recording sections or by moving the incorrect drum notes to the correct beat.
    I guess he would need to be able to hear the song that he is playing along to, and possibly have a click track playing at the same time.
    So I guess what I am looking for is some FREE windows software to be able to record midi drum files into, that can also be used to edit the midi file after. A separate free piece of software could also be used to edit the drum midi files instead though.
    I know that I can correct the midi drum files myself in Garageband, but I would rather my drummer spent the time doing this, not myself.
    I've spent a bit of time googling this today but keep bringing up the wrong things as I'm probably using the wrong search terms.
    So, any ideas?
    thanks

    You will be able to use the Cubase AI4 with any audio interface. Another option is to look for a 30 day demo of software like Reaper http://www.reaper.fm/index.php It won't stop after 30 days... just your concience needs to respond
    Problem is though that if all you want to record is the MIDI then your drummer will also need some drum sounds in the form of a software instrument or a 3rd party VST to load into the recording software. So another program that comes uncrippled but has drum sounds in it is Ableton Live http://www.ableton.com/products However this can be an intimidating piece of software and it also cripples itself after 30 days.

Maybe you are looking for