Can not access a member of class Test with modifiers ""

Hi!
I am trying to get a application into a applet, but I just get this errormessage:
Exception: Java.lang.IllegalAccessException: Class sun.applet.AppletPanel can not access a member of class Test with modifiers ""
Anyone that have any idea whats wrong here?
Best regards Raymond

Post class where the exception was ocurred.

Similar Messages

  • Axis Fault: JavaProvider can not access a member of class Hello with mod.

    Hi,
    I am getting the following Axis Fault with content
    Exception in thread "main" AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.IllegalAccessException: Class org.apache.axis.providers.java.JavaProvider can not access a member of class Hello with modifiers ""
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}hostname:SNR143052
    java.lang.IllegalAccessException: Class org.apache.axis.providers.java.JavaProvider can not access a member of class Hello with modifiers ""
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:633)
         at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement(XMLNSDocumentScannerImpl.java:719)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1685)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
    The client code for the webservice using instant deployment is
    import java.net.URL;
    import javax.xml.rpc.ParameterMode;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import org.apache.axis.encoding.XMLType;
    import org.apache.axis.utils.Options;
    public class ClientHello {
         public ClientHello(){
         public static void main(String[] args) throws Exception{
              Options options = new Options(args);
              String endpoint = "http://localhost:" + options.getPort()+"/WebServices/Hello.jws";
              args = options.getRemainingArgs();
              Service services = new Service();
              Call call = (Call) services.createCall();
              call.setTargetEndpointAddress(new URL(endpoint));
              call.setOperationName(args[0]);
              call.addParameter("op1",XMLType.XSD_STRING,ParameterMode.IN);
              call.setReturnType(XMLType.XSD_STRING);
              System.out.print(args[1]);
              String s = new String(args[1]);
              String result = (String) call.invoke(new Object[]{s});
              System.out.println(result);
    The hello.jws is as follows
    class Hello {
         public String hi(String message){
              return "Hello "+ message;
    I am not sure why the message is substituted with "" instead of the parameter i have sent in args[1].
    Please help me out in this regard.
    Thanks,
    winkidzz

    Thanks swatdba.
    Any idea on how to proceed with implementing Webservices using Websphere MQ?

  • Reflection problem: can not access a member of class java.lang.IllegalAcces

    package org.struts.ets.utility;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import org.struts.bean.FieldTrouble;
    import org.struts.bean.GenericDAOBean;
    public class DynamicObjectCreation
         public static void main(String... args)
              FieldTrouble ft = new FieldTrouble();
              try
                   Class<?> c = ft.getClass();
                   //Class<?> c = FieldTrouble.class;
                   /*Class<?> c = null;
                   try
                        c = Class.forName("org.struts.bean.FieldTrouble");
                   } catch (ClassNotFoundException e)
                        e.printStackTrace();
                   Field f = c.getDeclaredField("var1");
                   //f.setInt(ft, 42); // IllegalArgumentException
                   f.set(ft, new String("A"));
                   System.out.println(ft.getVar1());
                   // production code should handle these exceptions more gracefully
              } catch (NoSuchFieldException x)
                   x.printStackTrace();
              } catch (IllegalAccessException x)
                   x.printStackTrace();
    }// If I put FieldTrouble.java in any other package than the current package I am running this code from. I get the following error:
    java.lang.IllegalAccessException: Class org.struts.ets.utility.DynamicObjectCreation can not access a member of class org.struts.bean.FieldTrouble with modifiers ""
         at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
         at java.lang.reflect.Field.doSecurityCheck(Unknown Source)
         at java.lang.reflect.Field.getFieldAccessor(Unknown Source)
         at java.lang.reflect.Field.set(Unknown Source)
         at org.struts.ets.utility.DynamicObjectCreation.main(DynamicObjectCreation.java:35)
    I tried all possible ways of creating class as:
    Class<?> c = ft.getClass(); OR
    Class<?> c = FieldTrouble.class; OR
                   /*Class<?> c = null;
                   try
                        c = Class.forName("org.struts.bean.FieldTrouble");
                   } catch (ClassNotFoundException e)
                        e.printStackTrace();
    Edited by: ..-__Kris__-.. on Feb 21, 2008 10:26 AM
    Edited by: ..-__Kris__-.. on Feb 21, 2008 10:26 AM

    Any hidden performance or memory issue here?
    Let us consider an object:
    public class SomeObject
         private String fieldA;
         private String fieldB;
         private String fieldC;
         private String fieldD;
         private String fieldE;
         //... say 50 declared fields....
         public SomeObject()
         public SomeObject(String fieldA, String fieldB)
              this.fieldA = fieldA;
              this.fieldB = fieldB;
    // getters and setters..     
    }When I create an object using the constructor with only two fields initialized such as the following code above, and look at what is happening to other fields as shown in the code below, I see that they are also AVAILABLE, now this is important, but they are set to null. What I wanted to know was, if I created an object with many fields, as many as 50 (getDeclaredFields = 50), and used a constructor with only two input fields to initialize an object, I still have 48 other fields available but set as NULL's. When I create more than 100,000 of these objects in a list and send to a .jsp page, I am unable to understand if this has more memory load than when you use a list of another object which has actually has only two declared fields in it. Each of this new object will have only two declared fields, when I say getDeclaredFields() it would return 2.
    This is where I am unable to figure out if this has anything to do with performance or memory, rather, what is the difference between the many possible ways you can initialize an object when there are too many fields which you probably won't use? Either create a new constructor with only two input arguments OR a generic constructor with all fields as input arguments but all those fields which you won't use assigned NULL's OR create another new object with only two declared fields
    SomeObject someObj = new SomeObject("abcd","cdef");
              Field[] fields = someObj.getClass().getDeclaredFields();
              System.out.println("Number of available fields: " + fields.length);
              for(int i = 0 ; i < fields.length ; i++)
                   try
                        fields.setAccessible(true);
                        System.out.println("Field " + i + ", with value: " + fields[i].get(someObj));
                        fields[i].get(someObj);
                   } catch (IllegalArgumentException e)
                        e.printStackTrace();
                   } catch (IllegalAccessException e)
                        e.printStackTrace();
              }Edited by: ..-__Kris__-.. on Mar 23, 2008 5:04 PM
    Edited by: ..-__Kris__-.. on Mar 23, 2008 5:05 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can anyone explain error: can not access a member .. with modifiers ""

    Can anyone explain why this would occur:
    javax.faces.FacesException: Can't instantiate class: 'com.package.MyBean'.. class com.package.MyBean : java.lang.IllegalAccessException: Class java.beans.Beans can not access a member of class com.package.MyBean with modifiers ""

    also if the class is not defined as public
    myClass()
    public myClass()
    i got this when building my custom class loader and it took me sometime to figure this out since my editor generates my class templates I didn't even think to check something as basic as not having a public class - hopefully this saves someone else some trouble

  • Can not access to blackberry balance work files with *.zip extension

    I have a playbook 32 GB running OS 2.1.0.1526.
    For my work e-mail, I used to use playbook often. I downloaded lots of files from my work e-mail. However using native file manager app on playbook, I can only see pictures, videos, music, office, pdf files of the downloaded ones. Other unsupported files are MISSING !!! There are also some zipped files I downloaded. I am sure. But I can not access them !!!
    I tried another way using dsktop manager, but I can not reach the blackberry balance files by PC. 
    I tried some file manager apps from the market but no solution.
    I need that unsupported files, is there a way to reach them ?

    tarumar wrote:
    I have a playbook 32 GB running OS 2.1.0.1526.
    For my work e-mail, I used to use playbook often. I downloaded lots of files from my work e-mail. However using native file manager app on playbook, I can only see pictures, videos, music, office, pdf files of the downloaded ones. Other unsupported files are MISSING !!! There are also some zipped files I downloaded. I am sure. But I can not access them !!!
    I tried another way using dsktop manager, but I can not reach the blackberry balance files by PC. 
    I tried some file manager apps from the market but no solution.
    I need that unsupported files, is there a way to reach them ?
    Have you tried the free Air Browser, and there is also File and Folder (paid) both of which are very good
    Using the Playbook and the Z10 and the Z30 and loving them
    Martin

  • How can I verify my iCloud account if I can not access the primary email account associated with my Apple ID?

    The email address I had set for my Apple ID when I had originally signed up was through my college.  I have been out of college now for a few years and the email account has been deleted. I was trying to set up iCloud on my iPad and iPhone but it says I need to access the account to verify through email.  I have tried to change my Apple ID email to my current email address but it tells me I can not do this either because that email is set up as my rescue email.  How can I change my primary email address for my Apple ID or get my iCloud verified in this situation I'm in?

    Go to http://appleid.apple.com and click 'Manage your account'. You will be able to change the non-Apple email address you use as a login. You will then need to log out and in again on all your devices.

  • Can't access email. Screen is frozen with spinning multi colored circle

    Can not access emails. Screen is frozen with spinning multi colored circle

    press "command+option+esc" to quit the unresponsive program.

  • Can not access the Instance Data of a Singleton class from MBean

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

  • Can not access BIOS after update BIOS

    Can not access BIOS after update X220 BIOS to version 1.19
    Type: 4290-R32
    BIOS: 1.19
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/8duj09uc.txt
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/8duj09uc.iso
    Ask google and try anyway but not work
    - Press ThinkVantage, Press F1, Press Fn+F1
    - Power off, unplug AC, unplug battery, wait 15 miniute, try all again
    - Try to update BIOS again

    That is really weird.
    When you are in Windows, can you test and see if the F1 key is working? If it is working. Shut down the laptop then boot it back up. At the Thinkpad screen, keep spamming the F1 key and see if you are able to boot into BIOS.
    //JameZ
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

  • I have Windows 7 64 bit, I downloaded iTunes 10 64 bit but can not access the iTunes store.  I keep getting I do not have a secure connection, which I do.

    I have Windows 7 (64 bit) and iTunes 10.2.2.12.  I can access the web through Mozilla and Internet Explorer.  But, when I open iTunes I can not access either the iTunes Store or iTunes Help.  I keep getting a message that says the web connection is not secure.  I use a Intel wireless router that is secure.  I have tested my Norton program, but it is not Norton that is blocking iTunes.  What can I do?

    In the course of your troubleshooting to date, have you checked through the following document?
    iTunes: About the "A secure network connection could not be established" alert

  • I can not open Calender. The server responded with an error. Access to account "virgin net" is not permitted. The server responded: "403" to operation CalDAVAAccountRefreshQueueableOperation.

    I can not access Calender.
    Keep getting blocked by message.
    The server responded with error.
    Access to account "virgin net" is not permitted.
    The server responded:
    "403"
    to operation.
    CalDAVAaccountRefreshQueueableOperation.

    Please take each of the following steps that you haven't already tried. Stop when the problem is resolved. Back up all data before making any changes.
    Step 1
    In the Internet Accounts preference pane, delete any calendar accounts you don't use.
    If there's no improvement, delete all calendar accounts and add them back. With an iCloud account, all you have to do is uncheck and recheck the box marked Calendars & Reminders in the iCloud preference pane.
    Step 2   
    You may be trying to access an invited event that you declined, or one that was rescheduled after you accepted it. The error message should give you a clue as to what it is. If the calendar is on iCloud, you can bring up the Calendar on the website and select
              Show Declined Events
    from the popup menu with the gear icon in the upper right corner of the page. The declined events will appear in gray, and one of them should match what's shown the error message. [Credit for this solution to ASC member Psi.]
    Step 3
    If you get the error when trying to accept an invitation in an email attachment, it's because the organizer didn't properly create the event.
    Step 4
    Follow the instructions in this support article. Modify as necessary for a calendar that's not on iCloud.

  • I can not access preview mode in safari

    Choosing file > Preview takes me somewhere else and I can not access preview mode at all. Every time I select preview it takes me to some strange site with att and my first name in it. Very Frustrating.
    I am using the latest upgrade for Muse 2014, so I don't think the version is to blame. Has anyone else had a similar problem, and what did you do to resolve it, and did it work?

    Hi
    When you click on preview, what is the url in the browser? Also, Muse uses the default browser of the OS, so is it possible to change the default browser and test it again to see if it works.

  • I'm having trouble with my macbook pro, I have only had it for three months, when I plugged a camera sd card into the sd slot it isn't appearing anywhere on the computer and i can not access my photographs. can somebody please help me?

    I'm having trouble with my macbook pro, I have only had it for three months, when I plugged a camera sd card into the sd slot it isn't appearing anywhere on the computer and i can not access my photographs. can somebody please help me?

    Shootist007 wrote:
    Clifton I must disagree with you on the above statement. It is my opinion and experience that you should never connect the camera directly to any computer, Mac Windows Whatever.
    It is always best to Remove the memory card from the camera and put it in a card reader, whether an external reader or one built into the computer, to copy images from the card.
    Hi Shootist. I would be interested in hearing some reasoning on this. I almost always use a USB cable to connect my camera to the MBP for transferring pictures, and have moved about 30,000 this way over the last 6 years since my photography went digital. Recently, on the rare occassions when I have only a few to transfer and I was too lazy to go for the cable, I have used the card reader; about half those times I have difficulty getting the MBP to recognise the card. I find I have to press the card very hard into the slot for it to be recognised.
    My rationale is quite possibly wrong, but I feel that the USB connectors are more robust and hard-wearing than the flimsy connectors on an SD card. Also, I haven't measured it, but I think the data transfer is faster with the cable. (I just came across this test, which reports noticeably faster transfer for cable than built-in card reader, but the computer was a PC)
    Chiara, sorry for hijacking your thread.

  • Can not access my Time machine HD after CLEAN install Mountain Lion

    Hi Everyone!
    Thank you in advance for your interest and help, I really appreciate it.
    I recently did a clean Install of Mountain Lion and already did all the updates that appeared. However, before doing these clean install, I did a back up with Time Machine on my external Hard drive. Now I can't access to it, doesn't even appear on my sidebar when I connect it. On the other hand it does appear as connected when I open Disk Utility, but I can not access to it. There I have all my 5 years of University works and classes, photos, and music. This Hard drive is only dedicated for my Mac Backups and nothing more.
    I guess that if I install again Snow Leopard, it will work, but I have to re install everything as my Mac is a Mid or Late 2007 15-inch Macbook pro and it came with the OS before the snow leopard 10.5 or something like that.
    What can I or should I do to access my Hard Drive again?
    Best Regards
    Edd

    Hi Mende,
    Sorry for my late reply but I want to thank you for your help.
    I followed your instructions and now I can access the drive thank you a lot for this. However, now I don't want to restore everything from my last back-up just some files, How can I do this? Also I want to restore My iLife, but the copy I have from the CD that came with my mac doesn't allow to install it, what can I do.
    Take good care, and happy holidays.
    Best Regards
    Edd
    PD. Are you from Spain?

  • Can not access web wifi simble on but can not connect the the internet

    wifi on but can not access internet

    I COULD SOLVE THE PROBLEM!!!  :    CHANGE YOUR ISP
    I it is obvious that we are talking about different issues, but all arise from the same origin. I am a surgeon and fortunately one of my patients is executive manager of one of biggest ISP companies from which I have bought my Internet service for home and my clinic.
    One day I told him the problem and he promised to check it for me. A few days later he called me and discussed the exact problem (unfortunately as I am not I.T professional, I couldn’t understand it well, I can just remember he was talking about MULTIPLEXING incompatibility between Mac security settings and that specific ISP multiplexing settings, He also said they had similar problems with some Linux users. I can remember he relate the problem to cheap ISP hardware, which leads to security issues which  are ignored by Windows Systems but leading to connection blockade in Mac Browsers. That’s why if you PING yahoo.com, you will see everything is OK but your browsers are not working)
    In fact this is a hardware issue which is related to ISP (Internet Service Provider) security and not your Mac.
    The day after, I took my MacBook to some ISP offices and asked them to let me connect to their line just for a test. “ Surprisingly I found out without changing my MacBook’s settings it works well with some ISPs and not with others!! “
    I have two ADSL lines: one at home and one in my clinic. First I changed my home ISP and everything is well at home from the day I did the change. But before changing my clinic’s ISP it worked at home and not at the clinic. Later I changed my clinic’s ISP and afterward never I had any problem.  This proves ( as that manager said also) this problem is related to ISP and not Mac itself and that’s why Apple could not have resolved the problem yet: different ISPs have different issues.
    Here I can make some suggestions:
    1- First, take your MacBook into different ISP offices and find the one which works well (before making the contract and paying money to the ISP, restart the Mac or send it into sleep mode repeatedly to make sure the connection never drops with restart or sleeps)
    2- Change your modem:  Modems as TP-LINK, D-LINK, are not well compatible with Mac.  Apple modems or Linksys are perhaps the best choices (this is not main cause of internet drop, but can affect the performance)
    3- Make sure your neighbor’s Wi-Fi is not exactly on the same channel as you are using (I use iStumbler for finding my neighbor’s channels)
    4- Find best DNS: ask your ISP to provide you most compatible DNS’s for you. Perhaps most known DNSs are 8.8.8.8 and 4.2.2.4.It helps you to browse the Internet more efficiently
    Some people in other forums suggested that upgrading to Mountain Lion has helped them. But It didn't work for my clinic's line. Just changing the ISP at clinic resolved my problem
    BETWEEN THESE 4 SUGGESTIONS, THE FIRST ONE IS THE MAIN SOLUTION AND NO 2-4 CAN HELP THE PERFORMANCE.
    Move on!!!   Change your ISP and let me know if it works!!!!

Maybe you are looking for

  • Please help me to run a submitted job in database

    Hi, Guys: I need your help for a problem: I need to have a job runnning every day midnight to update a column in a table, so I wrote a procedure to do it, submit job as follows: set serveroutput on; declare   n_jobno BINARY_INTEGER; begin   dbms_job.

  • Mac Pro Displays 2013

    I have a new Mac Pro on the way. How exciting. Any way I currently have a 2012 Mac pro with a 5870 and a gtx 120 in it. It is currently driving a 46 inch tv using vga. I also have a 21, 24 and 27 inch displays plugged in using dvi. My question is wil

  • Urgent - need help, Powerpoint images require quicktime???

    Hi guys, I'm a lecturer and I prepared a powerpoint on my G5 to show to students last week. the text loads on the Dell PC they have in the classroom, but the images come up with a message "requires Quicktime and a decompressor". As far as I know thes

  • N97 on usb

    My N97 is working relatively fine, not half the probs other people are having. Annoying thing i've found is : I've set messaging to store on the mass memory. When you connect to your pc with the cable, it changes the memory back to C:, when you unplu

  • Editing in imovie 08

    i need to insert a "arrow", or some symbol into a movie to highlight my son in a highlight tape of high school football. i can't seem to get a character in. i recently purchased final cut express to see if it were easier, but haven't figured that sof