RunTime to keep the Thread running until it is closed

I wish to open a PDF file in Acrobat Reader from a JMenuItem in swing application. Until the PDF file is open, I want that particular JMenuItem to be inactive (setEnabled(false)). Once the PDF file is closed, that JMenuItem will become active again (setEnabled(true)).
I will find the answer if I can keep the "cmd.exe" running until servletjsp.pdf is closed in the following class. Please advise!
import java.io.*;
class Runner2{
public static void main(String args[]){
Runtime r = Runtime.getRuntime();
try {
r.exec("cmd.exe /c start servletjsp.pdf");
catch(IOException e) {
e.printStackTrace();
}

I wish to open a PDF file in Acrobat Reader from a
JMenuItem in swing application. Until the PDF file is
open, I want that particular JMenuItem to be inactive
(setEnabled(false)). Once the PDF file is closed, that
JMenuItem will become active again (setEnabled(true)).
I will find the answer if I can keep the "cmd.exe"
running until servletjsp.pdf is closed in the
following class. Please advise!
try this.
import java.io.*;
class Runner2{
public static void main(String args[]){
Runtime r = Runtime.getRuntime();
try {
Process process = r.exec("cmd.exe /c start servletjsp.pdf");
process.waitFor();
catch(IOException e) {
e.printStackTrace();
}

Similar Messages

  • How to force the display to sleep, while keeping the computer running?

    I'm running some compression and transcoding programs on my iMac G5 (iSight) that keeps the CPU at 100% for hours at a time. My Energy Saver prefernces is set to sleep the display after a few minutes, but never to sleep the computer or the hard disk.
    Like I'd expect with such a high CPU load, my computer's screen does not go to sleep.
    Is there a program or command line utility that I can run to force my screen to go to sleep, but keep the computer running?
    iMac G5 17" (iSight)   Mac OS X (10.4.5)  

    To put your display only to sleep;
    Go to System Preferences, click on 'energy saver', check the 'Put the display to sleep when the computer is inactive for' box, and then set the time. Note; this just puts the display to sleep, not the whole computer. Your hard disk will keep running. I find this much more convienent than putting the computer in 'full sheep'. It wakes up much quicker without some of the hassle some computers display coming up from full sleep.

  • How to patch clustered SOA domain keeping the domain running?

    Hi All,
    We want to patch SOA 11.1.1.3.0 to SOA 11.1.1.6.0. The SOA 11.1.1.3.0 environment is a clustered environment( 2-node cluster). Also database schemas are present in RAC database.
    I know the patching process but my concern is I have to patch production environment and we have to minimize the downtime. Can we patch a WebLogic + SOA domain keeping the environment running ?
    Please suggest.
    Regards,
    Roshni Shankar

    Hi Roshni,
    Check this:
    http://docs.oracle.com/cd/E16764_01/core.1111/e10106/busreq.htm
    It says, During the rolling patching of a cluster, each server in the cluster is individually patched and restarted while the other servers in the cluster continue to host your application
    Always keep a backup before applying a patchset to your environment.
    Thanks,
    Sharmela

  • Getting all the threads running in one JVM from another JVM ...

    I want to get all the threads running in one JVM from another JVM.
    Is it possible ?
    namanc

    I am going to write a java application that prints all the java application running at the background. And this application has a control over all the threads. means killing the threads, restart the thread etc
    namanc

  • Graphic issue but goes away if I keep the fans running

    So I have a graphics problem where I end up with lines covering the screen and screwed up video, however I am now certain this is due to overheating however I am not able to get new thermal paste for a week or two because of shipping. I am asking you if there is a way to keep the fans running at maximum output as when I have booted up the mac from a firewire drive, the graphic issues go away, but as soon as the fans start to die down it comes back within seconds.
    Thanks

    The graphics issue may well not be lack of thermal paste, but a failing logic board. Have you run Apple Hardware Test or Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk.

  • How to keep the MB powered on with Lid closed

    How to keep the MB powered on with Lid closed and no monitor connected?

    You can't. And you shouldn't due to heating issues.
    There are however 'hacks' that allow you to bypass
    this.
    http://www.alxsoft.com/mac/sleepless.html
    http://semaja2.net/insomniaxinfo/
    Blackbook C2D   Mac OS X
    (10.4.10)   120Gig, 1Gig, Superdrive.
    This may be true of overheating, but ONLY in the iBooks and very old laptops, if you think about it what is the difference between native clamshell mode (Using the monitor/keyboard etc) and the hacked clamshell mode? does plugging a screen in to the laptop some how create more ventilation :S
    This rumor is really really wrong, and as stated only affected the old machines which were not capable of native clamshell mode, but of course we keep the warnings there because we dont want to be sued if some idiot places it in there laptop bag while rendering a movie.
    PS. If anyone can give me evidence to prove otherwise i will add it to the investigation that im slowly compiling to "bust" this annoying myth

  • I have check  the thread running but i cant get where s the problem

    hai there
    this s the code in which i m getting this warning, can you tell what s the problem with this
    * Start creates the thread to do the MessageConnection receive
    * text.
    * It should return immediately to keep the dispatcher
    * from hanging.
    public void receiving() {
    /** SMS connection to be read. */
    String smsConnection = "sms://:" + smsPort;
    System.out.println("smsConnection" +smsConnection);
    /** Open the message connection. */
    if (smsconn == null) {
    try {
    smsconn = (MessageConnection) Connector.open(smsConnection);
    smsconn.setMessageListener(this);
    } catch (IOException ioe) {
    ioe.printStackTrace();
    /** Initialize the text if we were started manually. */
    connections = PushRegistry.listConnections(true);
    if (connections == null || connections.length == 0) {
    content.setString("Waiting for SMS on port " + smsPort + "...");
    display.setCurrent(resumeScreen);
    done = false;
    thread = new Thread(this);
    thread.start();
    * Notification that a message arrived.
    * @param conn the connection with messages available
    public void notifyIncomingMessage(MessageConnection conn) {
    if (thread == null) {
    done = false;
    thread = new Thread(this);
    thread.start();
    /** Message reading thread. */
    public void run() {
    /** Check for sms connection. */
    try {
    msg = smsconn.receive();
    if (msg != null) {
    senderAddress = msg.getAddress();
    content.setTitle("From: " + senderAddress);
    if (msg instanceof TextMessage) {
    content.setString(((TextMessage)msg).getPayloadText());
    } else {
    StringBuffer buf = new StringBuffer();
    byte[] data = ((BinaryMessage)msg).getPayloadData();
    for (int i = 0; i < data.length; i++) {
    int intData = (int)data & 0xFF;
    if (intData < 0x10) {
    buf.append("0");
    buf.append(Integer.toHexString(intData));
    buf.append(' ');
    content.setString(buf.toString());
    content.addCommand(replyCommand);
    display.setCurrent(content);
    } catch (IOException e) {
    // e.printStackTrace();
    thankz

    Welcome to Apple Support Communities
    It's possible that you meet hardware requirements, but OS X Mountain Lion is only compatible with some computer models. In the case of the MacBook, it requires a Late 2008 Aluminum or Early 2009 one. See > http://www.apple.com/osx/specs
    Also, note that Mountain Lion requires 2 GB of memory, so if your Mac model is supported, open  > About this Mac, and see if you have 2 GB or more of RAM

  • Keeping the server running

    Is there a way to keep just server class up or it's up as long as other application uses that. What I mean I whote that:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.ServerSocket;
    import javax.swing.Timer;
    public class MyServer extends ServerSocket implements ActionListener {
         public MyServer() throws IOException {
              super(4444, 0, InetAddress.getByName("localhost"));
              Timer timer = new Timer(100, this);
              timer.start();
         public void actionPerformed(ActionEvent e) {
              if (this.isClosed()) {
                   System.out.println("Ups! We're closed");
                   System.exit(1);
         public static void main(String args[]) {
              try {
                   new MyServer();
              } catch (IOException ioe) {
                   ioe.printStackTrace();
                   System.exit(1);
    }and I want it to run separately. Just launch it and it should run until it's killed. How to do that?

    Okay I've come up with such solution:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.ServerSocket;
    import javax.swing.Timer;
    public class MyServer extends ServerSocket implements ActionListener {
         private static final int ALIVE=1;
         private static final int DEAD=0;
         private static int state=ALIVE;
         public MyServer() throws IOException {
              super(4444, 0, InetAddress.getByName("localhost"));
              Timer timer = new Timer(100, this);
              timer.start();
         public void actionPerformed(ActionEvent e) {
              if (this.isClosed()) {
                   System.out.println("Ups! We're closed");
                   System.exit(1);
         public static int getState(){
              return state;
         public static void kill(){
              state=DEAD;
         public static void main(String args[]) {
              try {
                   MyServer server = new MyServer();
                   while (server.getState()==ALIVE){
                        Thread.sleep(100);
              } catch (IOException ioe) {
                   ioe.printStackTrace();
                   System.exit(1);
              } catch (InterruptedException ie){
                   ie.printStackTrace();
                   System.exit(1);
    }Anyone has better one?

  • Mail: How can I keep the thread twirled down?

    I like Mail's conversations feature, but I keep losing visual track of sub-emails. How can I keep the conversation thread twirled-down so I can see all the entries in a conversation? Is there a pref to keep them all listed? (not hidden by a "4>" button).

    Sorry, Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • Keeping The System Running Well

    This is a rather vague post but basically are there any applications or tests (either 3rd party or native) that can test if my mac is running smoothly? I have not been impressed or noticed any difference since the switch to 10.6 and I have even had issues with crashes, shutting down, and speed. Thanks for your help.

    HI Tyler,
    Several things come to mind...
    Boot from your install disc and run Disk Utility. If it finds errors on the startup disk, Disk Utility can repair them.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    *(Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)*
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. *Make sure there is always 10% to 15% free disk space*
    You can also boot from your install disc and run the Apple Hardware Test, instructions Here.
    Go here for hlep to Maintain Mac OS X
    The most important thing you can do is back up your important data in case you should have to reformat the drive.
    Carolyn

  • To kill a connection (and the thread running it)

    As a last resort to deal with potential hanging in the DB (Sybase), I'd like to
    find a way to stop the processing. I'm willing to violate some rule, such as calling
    Thread.stop. But that doesn't seem to drop the connection. Any suggestion how
    I can drop that connection? Thanks. /Bill

    Joe, as you know I also posted at Sybase/jdbc. I'm reposting the last post here
    for the benefits of anyone else might be interested in the thread.
    I tried out cancel and it essentially did the same thing as set timeout, except
    the time is more precise since the application controls it. Set timeout is more
    economical to operate though. I'll probably take one of these, which do solve
    half of the problem, for the time being until something better comes along. Unfortunately,
    though, the other half causes more problems because when that happens, other executions
    will pile on and get blocked as well.
    Joseph Weinstein <[email protected]> wrote:
    >
    >
    Bill wrote:
    As a last resort to deal with potential hanging in the DB (Sybase),I'd like to
    find a way to stop the processing. I'm willing to violate some rule,such as calling
    Thread.stop. But that doesn't seem to drop the connection. Any suggestionhow
    I can drop that connection? Thanks. /BillKilling the thread is bad for the server, because it only creates a fixed
    number of
    execute-threads to do user work... The things you should try are:
    1 - Call cancel() on the jdbc statement that is hanging. Call connection.close()
    on the connection. This requires having access to those objects from
    another
    thread.
    2 - Find out the spid of the hung DBMS session (either record it ahead
    of time or
    query the DBMS with another connection) and use T-SQL to kill that DBMS
    session.
    3 - Try resetting the pool.
    Joe

  • How to open a message popup and keep the sequence running ?

    I have some steps in my sequence to initialize communication ports that takes a few seconds. As i have the trace off i want to display a message popup to tell the user that the sequence is doing the init. After the init steps are done i want to close the popup out of the sequence without pressing any button.
    Is there a possibility in TestStand to do this ?
    The normal Message popup stays until a key is pressed and even pauses the sequence while active.
    Thank for help.

    You could call your message popup in a subsequence as new execution and terminate this execution programmatically after your init steps have finished.
    In order to do this you have to specify (module) the sequence call step that calls your subsequence:
    -Multithreading and Remote Execution = Run in a New Execution
    -Settings: Initally Hidden and Tracing disable, Restartable, Close Window when done, Wait for Execution to complete: Do not wait, Process Model Option: Do not use a Process Model
    -Store an Object Reference to the New Execution in: e.g. Locals.ExecutionRef
    After your Init steps you insert a ActvieX/COM Action Step that terminates the new execution:
    -Object Reference: Locals.ExecutionRef
    -Automation Server: NI TestStand API 3.1
    -Object Class: Execution
    -Call Method or Access Property: Call Method
    -Method: Terminate
    This will terminate your new execution showing the message popup.

  • Regarding the thread running more than 24 hours

    The below is the query executed from oracle side and is running more than 24 hours and not yet over. And multiple threads are running.
    SELECT COUNT(*)
    FROM snurk_cmms_csht009_rfs,
    snurk_cmms_csht008_rfs,
    snurk_cmms_csht001_rfs
    WHERE snurk_cmms_csht001_rfs.cd_plant = snurk_cmms_csht008_rfs.cd_plant (+)
    AND snurk_cmms_csht001_rfs.no_rfs = snurk_cmms_csht008_rfs.no_rfs (+)
    AND snurk_cmms_csht008_rfs.cd_plant = snurk_cmms_csht009_rfs.cd_plant (+)
    AND snurk_cmms_csht008_rfs.no_rfs = snurk_cmms_csht009_rfs.no_rfs (+)
    AND snurk_cmms_csht008_rfs.ct_misc_item = snurk_cmms_csht009_rfs.ct_misc_item (+)
    AND (snurk_cmms_csht009_rfs.ct_misc_item_page = 1
    OR snurk_cmms_csht009_rfs.ct_misc_item_page IS NULL);
    snurk_cmms_csht009_rfs,snurk_cmms_csht008_rfs,snurk_cmms_csht001_rfs are synonyms for views that are pointing to DB2 tables with the help of dblink.
    The dba saying that the where clause in the above select is not sent to the db2 side so creating a cartesian product and asking us to add something in the where clause.
    Thread detail
    ENCLAVE DETAIL INFORMATION
    PLAN
    Thread: Plan=DISTSERV Connid=SERVER Corrid=G422001E Authid=CPPRXPS
    Dist : Type=DATABASE ACCESS, Luwid=H36A45B9.A712.C8ADB744CDC6=132705
    Location : 19.106.69.185
    enc
    ENCLAVE TOKEN: F0001B77B8 Enclave Type: Original Indep
    Owning System: SYB1 Owning Job: DB27DIST
    WLM Mode: Goal Enclave CPU Time 01:26:00.935
    THREAD DETAIL
    PLAN
    Thread: Plan=DISTSERV Connid=SERVER Corrid=G422001E Authid=CPPRXPS
    Dist : Type=DATABASE ACCESS, Luwid=H36A45B9.A712.C8ADB744CDC6=132705
    Location : 19.106.69.185
    act
    Thread Activity User Defined Functions
    DB2 Status = WAIT-REMREQ TCB Time (SQL) = 00:00:00.000
    MVS Status = Wait for TCB Time = 00:00:00.000
    Total Elapsed Time = 01-17:00 Elapsed Time = 00:00:00.000
    CP CPU Utilization = 00.7% Elapsed Time (SQL) = 00:00:00.000
    Total CP CPU Time = N/A SQL Events = 0
    IIP CPU Time = 00:00:00.000
    Total Parallel Tasks = 0
    Current Parallel Tasks= 0
    SQL CALL BEING EXECUTED
    PLAN
    Thread: Plan=DISTSERV Connid=SERVER Corrid=G422001E Authid=CPPRXPS
    Dist : Type=DATABASE ACCESS, Luwid=H36A45B9.A712.C8ADB744CDC6=132705
    Location : 19.106.69.185
    call
    SQL call is active, call information is as follows :
    Thread Status = WAIT-REMREQ SQL Request Type = DYNAMIC
    Total SQL Reqs = 3589969 SQL Call Type = FETCH
    SQL DBRM Name = GDRDA11 SQL Statement Number = 00000
    Collection ID = SDCSDRDA
    SELECT A1."CD_PLANT", A1."NO_RFS", A2."CD_PLANT", A2."NO_RFS", A2."CD_PL
    ANT", A2."NO_RFS", A2."CT_MISC_ITEM" FROM "MMDBDP7"."CSHT001_RFS" A1, "M
    MDBDP7"."CSHT008_RFS_MISC" A2
    Please suggest on what to be added in the where clause.
    thanks,
    Vinodh

    We cannot create a view in db2 side because of security reasons. I tried to run the query as below.
    SELECT count(a),count(b),count(c) FROM
    (Select cd_plant,no_rfs,ct_misc_item, ct_misc_item_page from snurk_cmms_csht009_rfs) a,
    (Select cd_plant,no_rfs,ct_misc_item from snurk_cmms_csht008_rfs) b,
    (Select cd_plant,no_rfs from snurk_cmms_csht001_rfs ) c
    Where c.cd_plant = b.cd_plant (+)
    AND c.no_rfs = b.no_rfs (+)
    AND b.cd_plant = a.cd_plant (+)
    AND b.no_rfs = a.no_rfs (+)
    AND b.ct_misc_item = a.ct_misc_item (+)
    AND (a.ct_misc_item_page = 1
    OR a.ct_misc_item_page IS NULL)
    I am getting the error as below:
    ERROR at line 4:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from FAST_SNURK_CMMS
    How to troubleshoot this.
    thanks,
    Vinodh

  • Will subsequent calls to an object running in a thread run in the thread?

    Hi,
    If I start a thread with an empty run method and then make a call to the object that I started in the thread, will the method call run in the other thread? For example:
    class ThreadClass implements Runnable {
        public void someMethod() {
        public void run() {
    class ThreadCaller {
        private ThreadClass threadClass;
        public ThreadCaller() {
            threadClass = new ThreadClass();
            Thread thread = new Thread(threadClass);
            thread.start();
        public blah() {
            threadClass.someMethod();
    }Will the method call in blah() run in the same thread as ThreadCaller, or will it run in the thread that was started in ThreadCaller's constructor?
    Thanks,
    Dan

    Djaunl wrote:
    vanilla_lorax wrote:
    Djaunl wrote:
    Is there a way to keep the thread alive until the object that started the thread is terminated,Objects don't get terminated. What do you mean?I want the thread to stay alive indefinitely until I arbitrarily terminate it makes more sense. The thread will stay alive until its run method completes. The canonical approaches are
    public void run() {
      while (!Thread.interrupted()) { // NOT isInterrupted()
        // do stuff
        // if you need to catch InterruptedException, do this:
        try {
        catch (InterruptedException exc) {
          Thread.currentThread().interrupt();
    }And then from another thread, call theAboveThread.interrupt() when it's time to stop. Read the docs in interrupt(), interrupted(), the interrupt flag, etc.
    OR
    while (!done()) {
      // do stuff
    }and then another thread calls setDone(true) or somesuch when it's time to stop. Note that all access to done--both get and set--must be synchronized, or done must be declared volatile. Also note that you may still have to handle interrupts, so you may have some repeated code with this approach--testing both done() and interrupted().
    Let me give the end-goal of this.
    Currently, I have a "main" thread which the user can input commands into, and another thread which occasionally runs in the background. When I want something to run in the background, I just create a new thread. However, I figured it'd be more efficient to have one thread running in the background to do something as opposed to spawning hundreds of new threads to do the same task over and over. If the task happens VERY frequently and what it does is VERY small and quick, then the overhead of thread creation may make this a valid approach. Otherwise, don't overcomplicate it. Since you're new to threads, first get it working where you spawn one thread for each background task. Then move on to thread pooling. Look into ThreadPoolExecutor and related classes.
    http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html

  • How to pass the caught exception in Thread.run back to the main program?

    I have following three Java files (simplified from a real world application I am developing, see files at the end of this posting):
    1. ThreadTest.java: The main program that invokes the Manager.run()
    2. Manager.java: The manager that creates a thread to execute the Agent.run() for each agent
    3. Agnet.java: The run() method can throw Exception
    My goal is twofold:
    1. To execute the run() method of an Agent in a thread (the reason for this is there are many Agents all managed by a Manager)
    2. To catch the exception thrown by Agent.run() in the main program, ThreadTest.main() -- so the main program can alert the exceptions
    My problem:
    Bottomline: I cannot pass the exception thrown by Agent.run() in the Thread.run() back to the main program.
    Explanation:
    The signature of Thread.run() (or Runnable.run()) is
    public void run();
    Since it does not have a throws clause, so I have to try/catch the Agent.run(), and rethrow a RuntimeException or Error. However, this RuntimeException or Error will not be caught by the main program.
    One work-around:
    Subclass the ThreadGroup, override the ThreaGroup.uncaughtException() methods, and spawn the threads of this group. However, I have to duplicate the logging and exception alerts in the uncaughtException() in addition to those already in the main program. This makes the design a bit ugly.
    Any suggestions? Am I doing this right?
    Thanks,
    Xiao-Li "Lee" Yang
    Three Java Files:
    // Agent.java
    public class Agent {
    public void run() throws Exception {
    throw new Exception("Test Exception"); // Agent can throw execptions
    // Manager.java
    public class Manager {
    public void run() throws Exception {
    try {         // <===  This try/catch is virtually useless: it does not catch the RuntimeException
    int numberOfAgents = 1;
    for (int i = 0; i < numberOfAgents; i++) {
    Thread t = new
    Thread("" + i) {
    public void run() {
    try {
    new Agent().run();
    } catch (Exception e) {
    throw new RuntimeException(e); // <=== has to be RuntimeException or Error
    t.start();
    } catch (Exception e) {
    throw new Exception(e); // <== never got here
    // ThreadTest.java
    public class ThreadTest {
    public static void main(String[] args) {   
    try {
    Manager manager = new Manager();
    manager.run();
    } catch (Throwable t) {
    System.out.println("Caught!"); // <== never got here
    t.printStackTrace();

    The problem is, where could you catch it anyway?
    try {
    thread.start();
    catch(SomeException e) {
    A thread runs in a separate, er, thread, that the catch(SomeException) isn't running within. Get it?
    Actually the Thread class (or maybe ThreadGroup or whatever) is the one responsible for invoking the thread's run() method, within a new thread. It is the one that would have to catch and deal with the exception - but how would it? You can't tell it what to do with it, it (Thread/ThreadGroup) is not your code.

Maybe you are looking for

  • HOW TO: Create a JSP Edit Record Form Using BC4J Data Tags

    This is a JDeveloper Tech Note found on the OTN Documentation page. This note describes the use of the BC4J data tags to create row edit/submit JSP pages. Here is the link: http://technet.oracle.com/docs/products/jdev/technotes/datatag_input/Edit_For

  • Payment type is missing the "none" button

    I have an iPod touch.  Logged on to my apple account through itunes, I wanted to put none for my account payment and the "none" button is there on the payment information page.  Now I can't even download my updates on my ipod.

  • Entourage crashing FCP?

    Has anyone else reached the conclusion that running Entourage in the background while using FCP Log and Capture results in a couple kinds of crashes? In one case, capture stops and I get an error report saying the deck or tape has a problem, sometime

  • 16GB RAM

    Just bought the new 27" Quad Core iMac with 2TB HD and 16 GB of RAM. I am definitely seeing a speed improvement over my 4 year old Mac Book Pro, but I'm not sure if it is using all of the RAM available. A lot of the time I am rendering or exporting w

  • Difference between ALV and Table control

    Hi folks, i want to know the major differences between AlV and table controls. i know that table control is designed in screen painter, but i want to know the major diff between Table control and ALV. helpful answers will be rewarded. Regards, Naveen