Library or application for an interactive shell/console in Java Swing?

I would like to let users use a Java application that normally runs interactively in the OS shell, taking input from stdin and responding with output to stdout. I would like to run this same class in an Swing window that resembles the terminal window: showing a prompt and whatever the user types should go to stdin of the class, then showing everything the class writes to stdout or stderr in the same window below. Also, as i the system shell, the input caret should stay in the position where the widow expects input and each input should be terminated by pressig ENTER.
How does one accomplish this in Java in the simplest way? Is there a library or open-source tool that provides this functionality?

johann_p wrote:
georgemc wrote:
Eclipse and NetBeans do this. You could dig out the source for either and have a look. It might be buried quite deep, though.Thank you for that pointer ... I have found a hint about this in Netbeans when I was googling, but that hint also contained a warning about a huge number of dependencies, which made me shy away from it. Well, you wouldn't need to take them all. IDEs are pretty modular.
If it exists, I'd rather go for a tool that comes as a single JAR :)It's really not all that big a deal to do. The reason you probably haven't found a library to do it is it's such a small task, and the majority of the work will be very specific to your app. It's really not much more involved than file I/O. Here's an idea: rather than worrying about re-inventing the wheel, why not just invent the wheel, and release it yourself, as an open-source library for others to use?
Eclipse to my knowledge does not use Swing but their own GUI toolkit, so that would probably introduce even more dependencies and possibly a different look-and-feel, no?Yes, that's true. More to the point, it introduces native dependencies, which complicates matters a bit.

Similar Messages

  • Interaction between Panels in Java Swings

    hai, i m new to Java swings and i dont know how to interact between various panels present in single frame window.the following code is a program in which i need to interact between three panels.Can some one tell me how to do this.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class JP extends JFrame
    JPanel p= new JPanel(new FlowLayout());
    public static void main(String a[])
    JP j= new JP();
    public JP()
    Container c=getContentPane();
    c.setBackground(Color.black);
    JTextField j= new JTextField(20);
    j.setText("Program");
    c.add(j);
    //adding panel1 and panel2
    p.add(new jp1());
    p.add(new jp2());
    c.add(p,BorderLayout.EAST);
    setVisible(true);
    pack();
    class jp1 extends JPanel implements ActionListener
    JTextField jtf1;
    public jp1()
    JButton b1=new JButton("Connect");
    b1.addActionListener(this);
    b1.setActionCommand("Connect");
    add(b1);
    JButton b2=new JButton("Disconnect");
    b2.addActionListener(this);
    b2.setActionCommand("Disconnect");
    add(b2);
    jtf1=new JTextField(30);
    jtf1.setText("hai");
    add(jtf1);
    public void actionPerformed(ActionEvent ae)
    String str1=ae.getActionCommand();
    System.out.println(str1);
    jtf1.setText(str1);
    class jp2 extends JPanel implements ItemListener
    public jp2()
    JCheckBox cb1=new JCheckBox("Pt-Pt");
    cb1.setSelected(true);
    cb1.addItemListener(this);
    add(cb1);
    JCheckBox cb2=new JCheckBox("Multipoint");
    cb2.setSelected(true);
    cb2.addItemListener(this);
    add(cb2);
    public void itemStateChanged(ItemEvent ie)
    JCheckBox str2=(JCheckBox)ie.getItem();
    System.out.println(str2.getText());
    I need to display details in the main frame "JP" when performing some actions on panel1(jp1) and panel2(jp2)....
    Plz help me with this.....
    Thanks to all.

    Rodney_McKay thanks for ur reply.
    i have aligned the code and the details i need are given below...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class JP extends JFrame
         JPanel p= new JPanel(new FlowLayout());
         public static void main(String a[])
              JP j= new JP();
         public JP()
              Container c=getContentPane();
              c.setBackground(Color.black);
              JTextField j= new JTextField(20);
              j.setText("Program");
              c.add(j);
              //adding panel1 and panel2
              p.add(new jp1());
              p.add(new jp2());
              c.add(p,BorderLayout.EAST);
              setVisible(true);
              pack();
    class jp1 extends JPanel implements ActionListener
         JTextField jtf1;
         public jp1()
              JButton b1=new JButton("Connect");
              b1.addActionListener(this);
              b1.setActionCommand("Connect");
              add(b1);
              JButton b2=new JButton("Disconnect");
              b2.addActionListener(this);
              b2.setActionCommand("Disconnect");
              add(b2);
              jtf1=new JTextField(30);
              jtf1.setText("hai");
              add(jtf1);
         public void actionPerformed(ActionEvent ae)
              String str1=ae.getActionCommand();
              System.out.println(str1);
              jtf1.setText(str1); // Code required to settext in textbox of main panel
    class jp2 extends JPanel implements ItemListener
         public jp2()
              JCheckBox cb1=new JCheckBox("Pt-Pt");
              cb1.setSelected(true);
              cb1.addItemListener(this);
              add(cb1);
              JCheckBox cb2=new JCheckBox("Multipoint");
              cb2.setSelected(true);
              cb2.addItemListener(this);
              add(cb2);
         public void itemStateChanged(ItemEvent ie)
              JCheckBox str2=(JCheckBox)ie.getItem();
              System.out.println(str2.getText()); // Code required to settext in textbox of main panel
    };When i click the button in panel1 the message should be displayed in the textbox of main panel.
    Similarly the panel2 event should display a message in main panel.
    i will try with inner class, u also give me any possible solutions.

  • Example application for bapi interaction

    Hi Experts,
       Can anyone provide me with an example web-dynpro application that interacts with a BAPI and returns a result with  more than one line items.I want to learn how multiline detail records  are passed and handled in web-dynpro SAP interaction.
    regards

    Hallo Murat,
    the above links are no permalinks which makes them error-prone.
    Look at the Adaptive RFC Tutorials Number listed in the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#backend">Web Dynpro Feature2Sample Matrix</a>:
    - <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/f0b0e990-0201-0010-cc96-d7ecd2e51715">adaptive RFC Model, BAPIs</a>
    - <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/20b6e990-0201-0010-5095-f3a465de5f30">adaptive RFC Model, transaction handling</a>
    Best regards, Bertram

  • Sample application for connecting to model in WD java

    Hi ,
    Can any one help me out how to connect to model to access sql as i am very new to webdynpro java.

    Hi Vijayalakshmi,
                               Check these
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/webdynpro/wd%20java/wdjava%20tutorials%207.0/using%20ejbs%20in%20web%20dynpro%20applications.pdf
    Check this for sample applications & tutorials
    https://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#20
    regards
    Sumit

  • ZCI for Adobe Interactive Forms in WebDynpro Java

    Hi experts,
    Can i use Zero Client Installation (ZCI) forms in WebDynpro Java.
    I am not using ABAP at all & i want to avoid ACF installation on client side.
    I am using :
    SAP NWDS 2004s SP12
    Adobe lifecycle Designer 7.1
    Message was edited by:
            Virag Shinde

    Hello Virag Shinde,
    ACF is supported with all the SPs across the Netweaver 7.0 stack and we will continue to support that except the fact that no further development will happen in that area. ZCI is the future of Interactive Forms solution by SAP.
    Following two notes would be helpful to get started with ZCI:
    <b>1042394: Updating Interactive Form template with ZCI capability</b>
    <b>1055911: Creating ZCI based interactive Forms in Web Dynpro for Java</b>
    Best Regards,
    Krish

  • How do you make console apps the default application for a file type?

    I have a console movie player, mplayer, that I like a lot. I've compiled it from source on my intel core2 macbook pro and it works fine. There is no gui, but to play movie files you open up a terminal and type the command mplayer /path/to/file. I would like mplayer to play a movie file automatically when I double click on the file, but I can't seem to figure out how to do it. I tried setting it in the file info dialogue, but when I go to the path of the binary I want, it is not selected. How can I set a console app as my default application for my file type?

    there is a GUI mplayer for OS X. why don't you use it instead of the command line one?
    if you insist on using the command line mplayer then the only way to do this is to put a GUI wrapper on it. this can be done with automator or apple script for example. but really, why don't you just use the GUI mplayer?

  • HP preloaded software error 1311 for Adobe XI application library or file for Help missing

    Operating system HP2011s/x, Pavilion P7-1026b, PC Desk/ Windows 7 w/64 bits w/PC bundle.  Preloaded Adobe XI software from HP not working properly the pop-up errors are as follows:
    (1) Error 1311  (2) verify operation failure (3) a required application library or file for Help is missing. Please, need help in correcting.  Thanks.

    Please download and install the free Abode Reader XI from Adode's website by clicking on this "Adobe Reader XI (11.0.03) Download" link. This will provide you with a slightly newer version than what was previously install on your computer.
    Additionally, it is in your best interest to create your personal set of HP Recovery Discs before a major disaster occurs with your computer. Please see "Creating Recovery Discs or Saving a Recovery Image to a USB Flash Drive (Windows 7)" for instructions on create either Recovery Discs or USB Recovery media, if given the option.
    Please send KUDOS
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Error while creating application for PHP in eclipse plug-in

    Hi,
    I am trying to create an application for PHP but got an error " Template creation failed". It used to be working before. Can anyone help?
    http://uploadpic.org/v.php?img=9FmTmCZNWM
    Thank.
    Regards,
    Hardik

    Hi Hardik,
    According to the log file, the service proxy generation failed, since the command execution for calling the OData SDK proxy generation was failed.
    As a first step I would suggest verifying that the PHP server is properly configured with the OData SDK library (as explained in the SDK's user guide).
    There is also an explanation in our documentation troubleshooting section (PHP Toolkit Troubleshooting - Proxy Generation Failed).
    Then a PHP proxy can be generated for the service using our PHP plugin, as a simple check that the problem was solved.
    If the problem continues, I would suggest saving the service metadata into a local xml file and try executing the proxy generation command directly (using command-line):
    C:\xampp\php\php C:\OData_PHP_SDK\framework\PHPDataSvcUtil.php /metadata=<Absolute-Path-To-Metadata-XML-File> /out=<Absolute-Path-To-Desired-PHP-Output-File>
    The command output printed to console may help us understanding more regarding what causes the problem.
    Thanks,
    Rotem

  • Application for the post of an ORACLE DBA

    =================================================================
    ============
    ARUNKUMAR RAGHAVAN MSc,BEd,PGDMCH,(MBA)
    =================================================================
    ============
    CURRICULUM VITAE
    Covering letter
         From
    Arunkumar.R, email : [email protected],
    [email protected]
    No 16 /9 Nagendra nagar,
    Velachery main road, checkpost,
    Near jaya hospital,
    Chennai -600 042.
    Respected Sir / Madam,
    SUB : Application for the post of      
    ORACLE DBA / DBO - Reg
    I wish to submit the following few lines for your kind
    consideration.
    I feel more comfortable and satisfactory with this type of job
    as
    I am keen to serve as an employee of your esteemed organization,
    which has an intellectually stimulating and emotionally
    satisfying environment.
    I assure that, I will do my duty to the fullest satisfaction of
    my
    higher officials, colleagues and to the best of my knowledge and
    belief.
    I am attaching my CV, first 2 pages of my first book &#8211;&#8220;ORACLE
    ARCHITECTURE MADE EASY&#8221;, and a newsletter about Penta Media
    Graphics Ltd, my present employer.
    Expecting the favour of your earliest reply.
    Thanking you with respectful regard,
    Yours truly,
    (ARUNKUMAR.R)
    =================================================================
    ============
    CAREER OBJECTIVE
    1.     To be a dependable ORACLE DBA and to deploy an
    efficient DATA WAREHOUSE and DATA MART.
    2.     To write unique books on ORACLE DBA and DATA WAREHOUSING
    for enthusiastic learning
    Experience summary
    q     Five years and six months of overall experience in
    Software Industry.
    q     Over 24 months of work experience in the administering,
    and maintaining the Oracle Database of sizes 3 GB
    q     Training and authoring books, CBT&#8217;s,WBT&#8217;s for Oracle DBA
    and
    Data Warehousing .
    Technical skills
    Hardware               IBM PC, MAC
    Operating Systems          WINDOWS NT, 95/98/2K, MS-DOS,
    LINUX, MAC-OS
    RDBMS                    ORACLE 8I, DBASE, FoxPro,
    MSACCESS
    Internet Tools          HTML, IIS, FrontPage
    Responsibilities at PENTAMEDIA GRAPHICS LTD,
    (formerly known as PENTFOUR SOFTWARE EXPORTS LTD, SEI-CMM LEVEL
    4 COMPANY )
    1. Maintaining an "Oracle Pre-Production Database" of size 3 GB.
    2. In charge of the CBT's on Data Warehousing & ORACLE
    DBA.
    3. Installing and upgrading the Oracle server (Oracle 7.3,
    Oracle 8.0,
         ORACLE 8i,) and application tools.
    3.     Allocating system storage and planning future storage
    requirements
    for the database system.
    5. Creating Tablespaces for the different group of
    projects namely
         SOFTWARE, ENGINEERING, MANAGEMENT, and SCHOOL PROJECTS.
    6. Creating tables, views and modifying the database
    structure, as
         necessary, required by Project Leaders and Programmers.
    7. Enrolling users and maintaining system security and
    controlling and
         monitoring user access to the database.
    8. Backing up and restoring the database.
    Specific Achievements
    1. CBT's and WBT's authored (Reference:
    www.pentalearn.com )
    * Data Warehousing for beginners
    * Data Warehousing - Intermediate
    * Stepping into ORACLE DBA
    * ORACLE DBA - Security
    * ORACLE DBA - Backup & Recovery
    * Step by Step - ORACLE DBA
    * OCP GUIDE - Architecture & Administration
    Under Production
    * OCP GUIDE - Backup & Recovery
         2. Book's authored (Under compilation)
    * ORACLE ARCHITECTURE MADE EASY.
    * Learn ORACLE DBA in 23 days.
    4.     Knowledge of documentation and procedures for SEI CMM -
    ISO &#8211;
         QUALITY AUDITS.
    4. Academic Project - (Reference: [email protected])
    o Title           ORACLE QUESTION BANK
    o Outline           Training software for OCP
                   (Oracle Certified Professional)
    o Period           DEC 1998 - JAN 1999
    o Software           VB 5.0, M.S.ACCESS
         5. Awards :
    State first & district first in Vivekananda Academy
    of cultural
    Studies
    =================================================================
    ============
    Employment History
         1. Company Name           :     Pentamedia
    Graphics ltd
    Title          :     instructional designer
    Level           :     Senior Executive
    Specialization :     IT/Computer Systems/Software
    Function      :     Professional /
    Consultant / Specialist
    Industry :     Computer / Information
    Technology (Software)
    Date Joined :     12 oct 1999
    Duties           :     Responsible for CBT&#8217;s,
    WBT&#8217;s on DATA
                        WAREHOUSING & ORACLE DBA.
                        project guide for TEAM
    members.
                        Developed 5 training
    software.
                        Maintaining "ORACLE-
    PRODUCTION DATABASE"
                             of size 3GB.
    Reason for leaving:     working currently
    2. Company Name      :     S.A.International ltd
    Title           :     training officer
    Level           :     Senior Executive
    Specialization :     IT/Computer Systems/Software
    Function      :     Lecturer / Teacher /
    Trainer
    Industry :     Computer / Information
    Technology (Software)
    Date Joined :     08 Aug 1997
    Date Left      :     09 Sep 1999
    Duties :     At S.A.INTERNATIONAL LTD,(A joint
    venture company of ELCOT, GOVT OF TAMILNADU UNDERTAKING)
    Responsible for all training programmes.
                             Project guide
    for all college students.
                        Senior Faculty
    for "ORACLE DBA" classes.
    Accomplishment :     Wrote student guides on office
    2000                               and on ORACLE DBA
                        Developed 3 training
    software.
    Reason for
                   leaving      :     To get more
    experience on ORACLE DATABASE
                        MAINTENANCE
    3. Company Name      :     G.K.M.college of
    engineering & technology
    Title           :     lecturer
    Level           :     Junior Executive
    Specialization      :     Education
    Function      :     Lecturer / Teacher /
    Trainer
    Industry      :     Education
    Date Joined :     06 May 1996
    Date Left      :     09 Aug 1997
    Duties           :     Incharge of computer
    science department,
                        Conducting classes and
    all academic                                    
         activities.
    Accomplishment :     Wrote 2 student guides on office
    1997                                    and on
    ORACLE DBA.
    Reason for
                   leaving      :     To get more
    experience on ORACLE DBA
                        Activities
    4. Company Name      :     Infra computers pvt ltd
    Title           :     Asst.technical manager
    Level           :     Junior Executive
    Specialization :     Training & Development
    Function      :     Executive
    Industry      :     Computer / Information
    Technology
    Date Joined :     30 Apr 1995
    Date Left      :     06 Jun 1996
    Duties           :     Monitor the day to day
    operations of the
    SOFTWARE/HARDWARE SERVICE DEPARTMENT. Monitor the DEPARTMENT
    STOCK and cash flow position, Meeting executives for Business
    development activities
    Accomplishment :     Joined the Company since August 1994
    as Asst TECHNICAL MANAGER. Promoted to TECHNICAL MANAGER in july
    1996.
    Reason for
                   leaving      :     To study M.B.A
    (master business
                        Administration)
    ORACLE DBA SKILLS SELF EVALUATION FORM
    Oracle: SQL and PL/SQL Skills:          
                                       rate
    from
                                  0 = None
    through 5 = Guru
    Creating and maintaining database objects               3
    Store, retrieve, and manipulating data               3
    Create PL/SQL blocks of application code               1
    Familiarity with PL/SQL packages                    1
    Familiarity with PL/SQL tables and records          0
    Calling PL/SQL functions from within SQL statements     0
    Building reusable code                         
         0
    Crafting code that automatically adapts to changes     
         in data structures                         
         0
    Writing SQL inside PL/SQL programs               
         0
    Reading and writing operating system files          3
    Executing host commands and C programs               0
    Issuing database alerts                         
         1
    Analyzing memory utilization in your session          2
    Debugging and tracing program execution               1
    Manipulating raw data and large objects               1
    Building your own packages                    
         1
    Oracle Enterprise Manager Skills:               
                                       rate
    from
                                  0 = None
    through 5 = Guru
    Install Oracle Enterprise Manager                    5
    Administer and monitor Oracle database environments     5
    Oracle Enterprise Manager architecture               3
    Setup a console for your own environment               3
    Implement job and event based system management          3
    Understand the integration of shared administrator
         responsibilities                         
              3
         Tuning Pack                              
         1
    (which comprise Oracle Expert, Tablespace Manager
              and SQL Analyze)
    Diagnostic Pack                              
         0
    (which comprise Oracle Trace and Data Viewer,
         Performance Manager,
    Capacity Planner,and Top Sessions)
    Change Management Pack                         
         0
    (which comprise Database Alter, Capture, Diff,
         Propagate, Quick Change, and Plan Manager)
    Database Administration/ Backup and Recovery Skills:     
                                       rate
    from
                                  0 = None
    through 5 = Guru
    Familiarity with Oracle7 database environments          5
    Familiarity with Oracle8 database environments          5
    Set up, maintain, and troubleshoot database          4
    Plan and implement database backup and recovery
         strategies                              
              4
    Understanding of backup, restore and recovery
         operations                              
              4
    Oracle8 Recovery Manager                         4
    Network Administration Skills:                    
                                       rate from
                                  0 = None
    through 5 = Guru
    Familiarity with Oracle7 Server                    5
    Familiarity with Oracle8 Server                    5
    Familiarity with architecture of Net8               4
    Establishing connections between peers               5
    Client and a server node using various
         naming methods                              
         4
    Configuring middle tier systems                    0
    Familiarity with Names Server                    
         1
    Familiarity with Connection Manager               
         3
    Memory, I/O, physical structure and
    resource contention                         2
    Familiarity with dynamic performance views          4
    Familiarity with initialization parameters          5
    Familiarity with diagnostics and tuning guidelines     3
    Data Modeling and Relational Database Design Skills:     
                                       Arun's
    rate from
                                  0 = None
    through 5 = Guru
    Knowledge with entity-relationship models               2
    Knowledge of normalization and relational           
         database design                              
         1
    Defining business information requirements          3
    Creating entity-relationship models               
         3
    Transforming requirements into an initial
         database designs                         
              3
    Personal Strengths :
              INVOLVEMENT alone gives PERFORMANCE. With my
    spiritual base &
         MOTIVATION, I am confident that I will reach the
    pinnacle
    in the field of ORACLE DBA. I hope my right thinking &
    Hardworking nature will make me successful.
    Current Communication Address
              Address :     16/9, nagendra nagar, velachery
    main road,
                   near jaya hospital, chennai-42
                   chennai, 600042 India
    Tel [home]      :     91-44-2552406
    Tel [office]:     91-44-4839854
    Tel [mobile]:
         Email     :     [email protected],
    [email protected]
    Permanent Address
         Address      :     s/o N.Raghavan, laksminayackan
    patty(po)
                   thevaram(via), theni(dt), pin
    625530
                   laxminayakan patty,
                   625530 India
    Tel      :     91-4454-54739
    Email     :     [email protected], [email protected]
    Personal Particulars
    Date of Birth           :     05 Aug 1971
    Gender                :     Male
    Nationality           :     India
    Marital Status           :     married
         Permanent Residence of     :      India
              Passport Number          :     T465022
              Valid Upto                    Jan 2005
    EDUCATIONAL QUALIFICATION
    COURSE      UNIVERSITY/BOARD           Yr.of PASSING
         CLASS & %
    S.S.L.C      TAMILNADU SECONDARY           MAR 1986
         FIRST 85.40
    H.S.C      TAMILNADU HIGER SECONDARY     APR 1988
         FIRST 68.90
    B.Sc           MADURAI KAMARAJ UNIVERSITY      APR 1991
         FIRST 68.63
    (PHYSICS)      VIVEKANANDA COLLEGE
    M.Sc           MADURAI KAMARAJ UNIVERSITY     APR 1994
         FIRST 70.40
    (PHYSICS)
    BEd           MADURAI KAMARAJ UNIVERSITY      NOV 1995
         SECOND 52.20
    TECHNICAL QUALIFICATION
    COURSE           UNIVERSITY/INSTITUTION           Yr.of
    PASSING %
    PGDMCH#           St.JOSEPH'S COLLEGE           JULY
    1995 59.70
                   BHARATHIDASAN UNIVERSITY
    DPCS*           @ DOE & TC.T.S- NCVT TRADE      SEP 1996
    79.47
                   (AICTE^ APPROVED)
    # POST GRADUATE DIPLOMA IN MICROPROCESSOR AND COMPUTER
    HARDWARE
    * DATA PREPARATION AND COMPUTER HARDWARE
    @ DIRECTORATE OF EMPLOYMENT & TRAINING CRAFTSMEN TRAINING
    SCHEME
    ^ ALL INDIA COUNCIL OF TECHNICAL EDUCATION
    PROFESSIONAL
    TRAINING UNDERGONE
    Completed 'ORACLE DBA' Course at RADIANT SOFTWARE PVT LTD,
    WEST MABALAM,
    CHENNAI -33.
    Language Proficiency :
    Languages -          Proficiency (1=worst - 10=best)
                        Spoken               
         Written
    English          5                    6
    Tamil               9               
         9
    Supplementary
    If and when employed by the company
    Willing to Travel               :          yes
    Willing to be Relocated          :          yes
    Possess Own Transport     :          T465022 Valid
    Upto                    Jan 2005
    Expected Monthly Salary          :     
         Negotiable
    Availability               :     
         Immediately
    =================================================================
    ============

    Sorry, but according to Apple, iTunes Store: All Sales Are Final
    You can avoid accidental purchases.
    From the iTunes menu bar click iTunes / Preferences then select the Parental tab.
    Select:  iTunes Store
    Click OK.

  • How do I get The ipad locked to run only one application for customers (perhaps a webapp)

    how do I get The ipad locked to run only one application for customers (just one web app, or video- instructions, or just safari). What I really want is that my customers to only use one app that has all my services. It is an interactive app so I would not like them to go surfing elsewhere while they are in my store.
    Is it possible to do this on the iPad ?

    Try this:
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    checkbox - clusters_MOD.vi ‏23 KB

  • FM Radio Application for Windows 8

    I am trying to develop a simple FM Radio Application for Windows 8 phones. I found one class but it says it will not work for devices targeting windows 8. Can some one please help. 
    https://msdn.microsoft.com/en-us/library/windows/apps/microsoft.devices.radio.fmradio(v=vs.105).aspx

    It's been a long time since I last answered an FM radio question so I might be forgetting some details but basically...
    In Windows Phone 7 timeframe the FM radio hardware was part of the requirements but for Windows Phone 8 FM radio hardware was optional and, in fact, the FM Radio drivers were not available until build 8.0.10322.
    I cannot recall if the restriction regarding FMRadio API for Windows Phone 8 targeted applications mentioned in the MSDN documentation, is enforced during submission to the store but I know it is possible to use the APIs in a Windows Phone 8 targeted project
    during development (...requires: ID_CAP_MEDIALIB_AUDIO I believe.)
    Eric Fleck, Windows Store and Windows Phone Developer Support. If you would like to provide feedback or suggestions for future improvements to the Windows Phone SDK please go to http://wpdev.uservoice.com/ where you can post your suggestions and/or cast
    your votes for existing suggestions.

  • Lost all photos on my iPhoto and get the ERROR WRITING TO DISK when trying to reload from Time Machine. iPhoto cannot import your photos because there was a problem writing to the volume containing your iPHOTO LIBRARY  . Looking for solution.

    Lost all photos on my iPhoto and get the ERROR WRITING TO DISK when trying to reload from Time Machine. iPhoto cannot import your photos because there was a problem writing to the volume containing your iPHOTO LIBRARY  . Looking for solution.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash, if possible.
    Triple-click anywhere in the line below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) 2>&- | wc -l | pbcopy
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    The output of the command will be a number. It's automatically copied to the Clipboard. Please paste it into a reply.
    The Terminal window doesn't show the output. Please don't copy anything from there.

  • Best application for Standard Def DVD creation?

    I have a bunch of MiniDV tapes shot in standard def that I want to make into DVDs for my family. I want to preserve as much picture quality as possible during the process and will be using transitions, overlays, and credits.
    I have used iMovie 08 and abandoned it because I needed dynamic chapter markers. I am now ready to edit the next DVD in the 'series', and with the advent of iMovie 09 and the availability of Final Cut Express at a reasonable price, I am trying to decide which way to go. I also have a copy of iMovie HD 6 which I used for my previous DVD.
    From reading the reviews of iMovie 09 I am pretty confident that I would be happy with it functionally, but not if it costs me in picture quality. I noticed on my first effort using iMovie HD 6 and iDVD, that the DVD picture was not as sharp as the video viewed directly from the camera. Did I do something wrong, or is that a "feature" of iMovie? Would FCE be better?
    My only concern with FCE apart from spending money that I may not need to spend, is the talk of a steep learning curve. With two little kids at home I don't have a lot of spare time. That said, I'd rather spend the time and get a sharp looking DVD than get a mediocre one quickly.
    Thanks for any advice.
    -John

    skalicki` wrote:
    What do you mean by "dynamic chapter markers"?
    I meant the ability to define the precise location of the chapter within the movie, such that when exported to iDVD the menu allows you to jump to any point you have defined in the movie. By "dynamic" I mean they may be placed at random locations, rather than fixed intervals. iMovie 08 deleted the ability to add chapter markers, iDVD allows only fixed interval chapters (which seems useless to me), as does Toast. I tried the work-around of using Garage Band, but it fails on larger projects. I've read that iMovie 09 has restored the ability to add chapter markers where you want, but if I'm going to shell out more cash I might as well get the package that will get me the best picture too (within reason).
    In any video application, for Chapter markers you simply place them in the application, then edit them in iDVD, DVD Studio Pro, etc.
    Not in iMovie 08/iDVD, but now that you mention it, how does DVD Studio Pro compare to iDVD? I'm mostly focused on picture quality.
    Do you mean better animated titles that you could use within the program? For this FCE is much better, because you don't need to work with the premade things, you can create and animate your own from the ground up.
    That will be fun. Not what I was talking about, but a nice feature. I know that FCE will have lots of capability that iMovie doesn't (by design), that's just gravy.
    I have used iMovie HD 6 to place chapters where I wanted them in my last DVD project, I didn't have much trouble working with it although it is a bit more "professional grade" than iMovie (I know, not saying much). How do the two compare for learning curve/user friendliness? I would like to say that I'd get a book to read on FCE but the truth is that on an average day I don't have time to watch the news let alone read a book.
    In my opinion, FCE is definitely worth the investment and once you learn it you will never want to go back to iMovie!
    Thanks, just the fact that the output is higher quality is a big pull for me. I think I'm going to take the plunge.
    Now for the next question: FCE 4 or 3.5?
    -John

  • Iphoto 9.5 won't import photos from iPhoto 7.5.  Library will not update using the iPhoto library upgraded application.

    iphoto 9.5 won't import photos from iPhoto 7.5.  Library will not update using the iPhoto library upgrader application.  Repeatedly says it can't locate photos even when told to cancel.  I think the photos in question are in Nikon RAW format.

    iPhoto 9.5 immediately tries to "upgrade" my library using the upgrader.
    iPhoto 9.5 asks you to run the upgrader to prepare the library for 9.5. It then will update the library to its format.
    You need to do the following:
    1 - go to your Applications/Utilities folder and double click on the iPhoto Library Upgrader 1.1 application. 
    2 - select Choose Library, navigate to your iPhoto library, select it and let the upgrader do its thing.
    3 - launch iPhoto 9.5 to open and finish the conversion of the library.
    OT

  • Black screen is in interactive and interactive text (console) mode

    I want to install Solaris 10 on HP Proliant DL380 G5. After installing drivers for Smart Array (from CPQary3.iso) I can't see this:
    "Starting Solaris Interactive (graphical user interface) Installation.
    You must respond to the first question within 30 seconds or the installer
    proceeds in a non-window environment (console mode)".
    The screen now is black in both modes: interactive and interactive text (console)
    If I don't install CPQary3 then graphical user interface works good, but "No disks found" :)
    What can I do with it?
    Edited by: Blutang on Jan 14, 2009 2:07 AM

    well the problem has been solved...hope this may help others having this issue.
    i basically just let the battery run out, then connected the ipod to my laptop and voila...it reset and all is well again...
    pretty random, but glad it is all working again.

Maybe you are looking for