I want to take out the podcast from the screen

i just bought the macbook pro and i was just looking up through the apps and i open the podcast capture and the boot camp assistant and i want to take it out of the screen and i can't. How can i do about it?

The normal way to close an application is to drop down the menu entitled the same as the application, top left next to the apple menu, and select 'Quit [appname]'.  Alternatively right-click it's icon in the dock and select 'Quit'.  If an application refuses to quit then drop down the apple menu and select 'Force Quit'.

Similar Messages

  • Take out multiple values from a db and handle them in an applet.

    I have a db with tables. I want to take out several values from them and make them visible in a JFrame (or applet).
    I dont know how to do. I have an app that connects to the db and selects the values and puts the Strings in a Vector. But now then?
    I have looked at examples that retrieve Strings but not vectors, isn't that possible?

    Hi,
    On initialization of your frame you can loop over your vector and display them.
    Now the problem is in what type of component do you want to put your data.
    I can give you an example.
    What you can do is create a String which will contain all the data from
    your vector and set that string to the component.
    Example:
    Vector data;
    String result;
    for(int i=0; i < data.size(); i++) {
    result += (String)data.elementAt(i) + "\n";
    Now you need to put the string into a component which is easy done.
    Let take a textarea component.
    JTextArea txaTest = new JTextArea();
    txtTest.setText(result);
    Now all the data will be shown in the textarea component on your frame.

  • How do I take out the touch pad zoom in/zoom out?

    Hey, I want to take out the two finger zoom that makes everything larger/smaller in Safari that's capable with the newer Macbook Pros. Is there an easy way to do that?

    Hi
    Thanks for the clarification. That "pinch" action is not configurable. It's hardwired into the trackpad function specific to the application you are using.

  • Need help Take out the null values from the ResultSet and Create a XML file

    hi,
    I wrote something which connects to Database and gets the ResultSet. From that ResultSet I am creating
    a XML file. IN my program these are the main two classes Frame1 and ResultSetToXML. ResultSetToXML which
    takes ResultSet & Boolean value in its constructor. I am passing the ResultSet and Boolean value
    from Frame1 class. I am passing the boolean value to get the null values from the ResultSet and then add those
    null values to XML File. When i run the program it works alright and adds the null and not null values to
    the file. But when i pass the boolean value to take out the null values it would not take it out and adds
    the null and not null values.
    Please look at the code i am posing. I am showing step by step where its not adding the null values.
    Any help is always appreciated.
    Thanks in advance.
    ============================================================================
    Frame1 Class
    ============
    public class Frame1 extends JFrame{
    private JPanel contentPane;
    private XQuery xQuery1 = new XQuery();
    private XYLayout xYLayout1 = new XYLayout();
    public Document doc;
    private JButton jButton2 = new JButton();
    private Connection con;
    private Statement stmt;
    private ResultSetToXML rstx;
    //Construct the frame
    public Frame1() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    //Component initialization
    private void jbInit() throws Exception {
    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
    contentPane = (JPanel) this.getContentPane();
    xQuery1.setSql("");
    xQuery1.setUrl("jdbc:odbc:SCANODBC");
    xQuery1.setUserName("SYSDBA");
    xQuery1.setPassword("masterkey");
    xQuery1.setDriver("sun.jdbc.odbc.JdbcOdbcDriver");
    contentPane.setLayout(xYLayout1);
    this.setSize(new Dimension(400, 300));
    this.setTitle("Frame Title");
    xQuery1.setSql("Select * from Pinfo where pid=2 or pid=4");
    jButton2.setText("Get XML from DB");
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    catch(java.lang.ClassNotFoundException ex) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(ex.getMessage());
    try {
    con = DriverManager.getConnection("jdbc:odbc:SCANODBC","SYSDBA", "masterkey");
    stmt = con.createStatement();
    catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    jButton2.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton2_actionPerformed(e);
    contentPane.add(jButton2, new XYConstraints(126, 113, -1, -1));
    //Overridden so we can exit when window is closed
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    void jButton2_actionPerformed(ActionEvent e) {
    try{
    OutputStream out;
    XMLOutputter outputter;
    Element root;
    org.jdom.Document doc;
    root = new Element("PINFO");
    String query = "SELECT * FROM PINFO WHERE PID=2 OR PID=4";
    ResultSet rs = stmt.executeQuery(query);
    /*===========This is where i am passing the ResultSet and boolean=======
    ===========value to either add the null or not null values in the file======*/
    rstx = new ResultSetToXML(rs,true);
    } //end of try
    catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    ======================================================================================
    ResultSetToXML class
    ====================
    public class ResultSetToXML {
    private OutputStream out;
    private Element root;
    private XMLOutputter outputter;
    private Document doc;
    // Constructor
    public ResultSetToXML(ResultSet rs, boolean checkifnull){
    try{
    String tagname="";
    String tagvalue="";
    root = new Element("pinfo");
    while (rs.next()){
    Element users = new Element("Record");
    for(int i=1;i<=rs.getMetaData().getColumnCount(); ++i){
    tagname= rs.getMetaData().getColumnName(i);
    tagvalue=rs.getString(i);
    System.out.println(tagname);
    System.out.println(tagvalue);
    /*============if the boolean value is false it adds the null and not
    null value to the file =====================*/
    /*============else it checks if the value is null or the length is
    less than 0 and does the else clause in the if(checkifnull)===*/
    if(checkifnull){ 
    if((tagvalue == null) || tagvalue.length() < 0 ){
    users.addContent((new Element(tagname).setText(tagvalue)));
    else{
    users.addContent((new Element(tagname).setText(tagvalue)));
    else{
    users.addContent((new Element(tagname).setText(tagvalue)));
    root.addContent(users);
    out=new FileOutputStream("c:/XMLFile.xml");
    doc = new Document(root);
    outputter = new XMLOutputter();
    outputter.output(doc,out);
    catch(IOException ioe){
    System.out.println(ioe);
    catch(SQLException sqle){

    Can someone please help me with this problem
    Thanks.

  • I can not take out the DVD RW disc from the drive PIONEER DVD-RW DVRTS09

    I have a iMac 2010.
    I can not take out the DVD RW disc from the drive PIONEER DVD-RWDVRTS09
    Disk inside the computer. But there is no information about it on the desktop and server tools "Disk Utility"
    What should I do?
    Restart Computer literacy is already done
       Firmware revision: Q90B
       Connection: ATAPI
       Supports recording: Yes (drive supplied Apple)
       Cache: 2000 KB

    Restart computer while holding down continuously on the left click button of the mouse. Continue to hold until the disk is ejected.

  • The operation can't be completed because you don't have permission to access some of the items. ive moved these files from my sd card to the trash, when i take out the sd card the trash empties but then fills up when i put it back in, it wont empty.

    The operation can’t be completed because you don’t have permission to access some of the items. ive moved these files from my sd card to the trash, when i take out the sd card the trash empties but then fills up when i put it back in, it wont empty.

    In the Finder, press the key combination shift-command-C, or select
              Go ▹ Computer
    from the menu bar. A window will open showing all mounted volumes. Select the one in question and open the Info window. What is shown as the Format in the General section?

  • I want to cut out a head from a photo and insert it into another photo again. In the head hair flying in the wind and the blue sky can be seen between the hairs. This blue sky I want to remove, so I can only use the head with hair flying in another photo.

    I want to cut out a head from a photo and insert it into another photo again. In the head hair flying in the wind and the blue sky can be seen between the hairs. This blue sky I want to remove, so I can only use the head with hair flying in another photo. Is it possible to simply delete this blue color of the sky?

    Make your selection and then use Refine Edge.
    See this video tutorial from Bob Gager.
    https://www.youtube.com/watch?v=xrl3Qwg6zSc

  • If you have iPhone4 and can you take out the sim card from iPhone4 and transfer it in to new iPhone4s?

    if you have iPhone4 and can you take out the sim card from iPhone4 and transfer it in to new iPhone4s?

    Under the circumstances this will probably considered a dumb question.
    I currently have a jailbroken unlocked 3GS with a GoPhone plan.  Works great.  I am considering upgrading to a new factory unlocked 4S.  Will I be able to swap in my current SIM card and go?

  • HT201303 How do I take out the credit card from apple Id in IOS6

    How do I take out credit card from apple id from IOS6 when is a free apple id

    Changing Account Information
    http://support.apple.com/kb/HT1918

  • My iTouch is being recognized as a digital camera and cant take out my music from it.

    i have an iphone and an ITouch and also a Ipod nano and and i just got a brand new computer cause my old 1 died. i still have music in my ipod iTouch and iPhone. i want to fill my new laptop with music. but since my iTouch and iPhone are both being read as a digital camera i can only take out photos from both. witch right now i dont care about the photos. my iPod nano on the other hand is being read as a storage device meaning i can take out the music out of the nano. i want to make it so i can also take out my misic from my iTouch and iPhone. in need of assistance. tried a bunch of methods but im tired of it. im im going to need professional help.

    - It is normal and expected for the iPod to be seen as a camera
    - What do you mean " when I put it in hard disk mode"?  iPod touches do not have a disk mode.
    - Does the iPod show in iTunes?  If not try:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • Screen damage and forgot the login password,how can i take out the photos

    my screen damage , totally lost , this iPhone5 is broken 1 year ago,  it has login password and i already forgot the password.i didn't open the icould and backup.  how can i take out my photos from my phone?  the photos is REALLY important for me. and i don't want to replace or fixes it anymore.

    Output of Invoice:
    Billing document (Change Mode) : VF02 --> Enter (takes to main screen) --> on the top line Goto --> Header --> Output  --> maintain output type --> Enter --> back --> Enter printer (in most cases LOCL) --> Enter & SAVE.
    Move out of billing document & revisit Billing Document in change mode(VF02) --> In the initial screen itself, on the top line o to Billing Document --> Output --> Screen / preview > Enter> a screen will pop-up on which printer name is mentioned --> Enter & you will get the preview of Invoice.
    To Configure printer, take assistance from basis consultant.
    Regards,
    Rajesh Banka

  • Can I take out the underlines in photo gallery?

    Can I take out the underlines in photo gallery? I mean the underlines for "Back to Album", "Previous" and "Next". I understand they are functional but I just don't think they look great with the whole composition. Thank you!

    This might work:
    Create a dummy hyperlink on that page and set the color, rollover color and underline options that you want on those links. Click a couple of times on the *Use for New Links on Page* button. Delete the dummy hyperlink and republish. That should change the links you mentioned.
    OT

  • I have two cameras of the same model and want to separate out the photos taken on each one. Is this possible?

    I have a Canon and my husband has a Canon, and they are the same model (mistake!)
    I imported his photos into my library (I'm the keeper of the photos), and now I want to seperate out his photos from mine.
    To make matters worse, the dates are the same (since we travel together) and the file numbers overlap (because the world is out to get us).
    They are thoroughly intermingled, but I'm hoping there is a super geeky way to seperate them.
    Ideas?

    Try to separate the photos by "import session".
    Assuming you can recognize some of the photos you took - perhaps there are some photos showing your husband and some photos showing you - these photos will tell you the import session. All photos you import into the library will be assigned an import session metadata tag, so his photos should have all the same import session tag.
    To show this thag, set the Info panel in the Inspector to "Edit" and add it to your current Metadata view.
    Once you found the Import Session for your husband's photos, create a smart album based on this meta data tag.
    When I import my husband's photos in my library, I use a metadata preset on import, that will assign automatically a keyword, set his copyright, and adds a color code. So I can see at a glance, which photos are my photos and which are his.

  • HT1386 I have a new computer with windows 8.1.  I want to add the 52 Gb of music now on my old ipod to itunes on the computer.  I don't want to wipe out the files on the ipod by syncing to the new computer which has no music files on it yet!  How can I do

    I have a new computer with windows 8.1.  I want to add the 52 Gb of music now on my old ipod to itunes on the computer.  I don't want to wipe out the files on the ipod by syncing to the new computer which has no music files on it yet!  How can I do this?

    Apparently I wasn't clear.  The music on my ipod is but a subset of all the music on my external hard drives.  I want to import only the songs and playlists from my existing ipod into the itunes library on my new computer, which currently has no music or playlists.  How can I do this?

  • Help! How can I take out the mini-disc stuck in mac?

    Help! How can I take out the mini-disc stuck in mac?
    I insert it into the mac, but the OS cannot load the disc and the disc cannot be ejected even i pressed the "eject" button.

    This happened to a family members macbookpro. A mini-cd inserted, couldn't be mounted or ejected by the drive.
    I cut a rectangle from a cereal box about two inches wide and 6 inches long. Abour an inch and half from one end in the middle I cut a notch and bent it down a little.
    I................I
    I................I
    I....I__I....I
    I................I
    I................I
    I................I
    I................I
    I................I
    I................I
    I................I
    I................I
    I................I
    I________I
    I then inserted it slowly into the drive notch down and slowly pulled out. I did this few times and caught the mimi-cd and removed it. The drive has worked flawlessly for several years
    A few days after this happened I was in BestBuy and an Apple rep was there displaying new Apple products. I asked him about it and he said they have a tool that ***** it out.

Maybe you are looking for

  • Safari 6 on Mac Osx 10.7.4

    Hi I have update Safari version and now I have Safari 6 on Mac OsX 10.7.4. I am facing few issues. Please help me resolve these. 1) I cannot see google sitemaps on this. When I open Sitemaps in web master tools, page header and menu loads, but not th

  • Problem in excecuting procedure

    Hi All, I am facing problem in executing one simple procedure. i am excecuting by writing the following code in the SQL editor. execute test_procedure the procedure am using is given below CREATE OR REPLACE procedure test_procedure(para out number )

  • Acrobat Pro 7.0 does not install on Windows 7, how can I get a version that does?

    I recently downloaded and tried installing the non-activation version of Adobe Acrobat Pro 7.0 on my Windows 7 PC.  After researching the installation error I read some posts that Acrobat 7.0 does not install on Windows 7.  What are my options?

  • Popups in fullscreen exclusive?

    My game is running in fullscreen exclusive mode but I need to open the occasional dialog box which new shows in front of the fullscreen main frame. Is there any way of making popups such as Dialogs or other frames appear in fullscreen exclusive mode?

  • Error (-50) synching Aperture photos to iPhone

    Hi, iTunes seems chronically unable to synch some of my Aperture photos to my iPhone. This is not universal, but it happens consistently if I include certain albums in the list to be synched. Basically, the synch proceeds as normal, with the iTunes s