Could someone help with issue please

Hello
I have posted this issue twice. I desperately need help with this.
I have installed j2sdk 1.4.1 first and then installed SunONE Community Edition on my XP Home Edition laptop. I am able to write and run programs. But when I close SunONE, it crashes XP. I cannot bring up the task bar to kill the processes or does the CTRL+ALT+DEL work.
The same problem happens when I tried with Netbean 3.5.

I can't give you an answer, but I can help you find one:
o) You don't need to say hello, we assume that you're there seeing as you made the post
o) Don't cross / multi post
o) Use a better title - pretty much everyone here wants help with an issue
o) http://www.google.com
http://www.mektrix.2ya.com/answers.html

Similar Messages

  • Could someone help with a software to create android apps on mac

    Hi
    Could someone help with a software to create android apps on mac.
    Thanks

    Found this on the Google:
    http://beta.appinventor.mit.edu/learn/setup/setupmac.html
    Know nothing of it.

  • My Ipad reboots over and over again could someone help with my problem?

    My Ipad reboots over and over again, could someone help with my problem?

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo.

  • Could someone help with me

    I am using BB8820, when I reinstalled my computer system, one problem occurred to my blackberry desktop manager.  when I connect my BB to computer,there is no response with blackberry desktop manager. And when I open the BB device manager ,it showed me that LIBBBLAUNCHAGENT.DLL is to be needed. So I do not  have  LIBBBLAUNCHAGENT.DLL in my computer.
    Could someone pls tell me where can I download this file? I would really appreciate.

    I have the same issue after updating Blackberry Desktop software......can anyone help please?
    iPhone for fun, Blackberry for Work........
    I'm not looking for Kudos but if my post helped then give me the Kudos and maybe it will help others

  • Could someone help with some pathfinding game code using Director please?

    Hey guys, i`m new to director and am trying to create a very basic graffiti game with pathfinding code. any links to online tutorials or code sites would be much appreciated! thanks in advance!

    I don't understand how pathfinding relates to graffiti, but here is a Lingo implementation of the A* algorithm

  • Could someone help with question about PNG export from Illustrator?

    I am having issues with PNG exports from Illustrator not opening up once exported.

    ANd exactly sorry, this is useless. You have not provided any details about your export settings, version of AI, system info, how you are trying to view and so on. Just saying that it doesn't work is simply not good enough.
    Mylenium

  • I recently decided to have my e-mail go to BT mail, but after using it I would prefer to go back and use "mail" from dashboard. Not being an expert of any degree, could someone help guide me please? Regards

    Recently moved e-mail to BT. Would now like to revert to "mail" from dashboard. I'm not sure of steps I need to take, can anyone guide me through it please? Thanks

    An Alias would be an email address that is delivered to a different account's inbox.
    For instance if you have  [email protected] and have [email protected] Then [email protected] would be an alias if mails from that address arrive at the icloud address.
    If you want to add a completely different account, with a spearate inbox, like an account in hotmail and one in say yahoo mail. Then as has been pointed out, you need to go into the  Settings Icon, Tap on Mail, Contacts, Calendars, and then on add account. The iPad has several services preconfigured, you can tap on one of those from the list to setup an email for that service. Such as Hotmail, Gmail etc...
    Or you can tap on other to add a personal pop3 or imap type email like from your office, or your school.

  • Could someone help with recursion?

    Make change for a dollar amount 0 - 999 using $100 bills, $20 bills, $5 bills and $1 bills with the total number of bills being as small as possible using a recursive algorithm. Now writing this non-recursivly is super easy, however the assignment calls for a recursive impementation. I can not for the life of me figure it out. I know the problem with my algorithm is that I keep making new instances of Change, but i can't figure out a way to keep track of the previos instances and combine totals. Heres what I have so far
    * Change for a dollar amount.
    *require:
    * 0 <= amount && amount <= 999
    static public Change changeFor(int amount){
    Change c = new Change();
    if (amount == 0 ){
    c.setHundreds(0);
    c.setTwenties(0);
    c.setFives(0);
    c.setOnes(0);
    if (amount == 100){
    c.setHundreds(1);
    }else if(amount >100){
    c.setHundreds(c.hundreds() +1);
    return changeFor(amount%100);
    if (amount == 20){
    c.setTwenties(1);
    }else if(amount > 20){
    c.setTwenties(c.twenties() +1);
    return changeFor(amount%20);
    if (amount == 5){
    c.setFives(1);
    }else if(amount >5){
    c.setFives(c.fives() +1);
    return changeFor(amount%5);
    if (amount == 1){
    c.setOnes(1);
    }else if (amount >1){
    c.setOnes(amount);
    return c;
    return c;
    The method must be static. any help would be greatly apreciated.
    Joey

    Thanks for the help but im still not there yet. the assignment also says to define a class Change with properties for the number of 100 bills, 20 bills 5 bills and 1 bills. I can't access these variables from a static method. The only solution I can see is to make a new Change instance in my method, but since i can't pass the old change instance into the method i can't see how its possible to keep track of the count of each bill. I was able to make the algorithm work recursivly in 2 ways. One of the ways i removed the static scope. The other way was to make the Change properties for the number of bills static. Both ways are not good enough, heres why. The professor wants the method to work with his tester file that looks like this:
    for (int amount = 0; amount <= 999; amount = amount + 77)
    System.out.println("Change for dollar amount " + amount + " is " + Change.changeFor(amount));
    Therefor when i make the scope of the property values static, this loops keeps adding the old bill numbers from the pervious amount to the new bill numbers, which really throws off the count =P. When the method is not static, the compiler catches a fit because there was no instance of Change created in the tester file. heres a working version of the static method with static property values:
    * Change for a dollar amount.
    *require:
    * 0 <= amount && amount <= 999
    public static Change changeFor(int amount){
    if (amount >= 100){
    amount-=100;
    hundreds+=1;
    return changeFor(amount);
    if (amount >= 20){
    amount-=20;
    twenties+=1;
    return changeFor(amount);
    if (amount >= 5){
    amount-=5;
    fives+=1;
    return changeFor(amount);
    if (amount >= 1){
    amount-=1;
    ones+=1;
    return changeFor(amount);
    and the class defines static private int hundreds, twenties, fives, ones;
    the non-static versions of the method is about the same except i use this.object instead of the static scope properties. any help more help is apreciated greatly and thanks to those who have helped some so far.
    joey

  • Hi, could someone help with append message TextArea????

    // a program by me
    // a class MailOrder
    // java core packages
    import java.text.NumberFormat;
    import java.util.Locale;
    // java extension packages
    import javax.swing.JTextArea;
    import javax.swing.JOptionPane;
    public class MailOrder {
    public static void main( String args[] )
    int product;
    double amount, product1 = 2.98, product2 = 4.50, product3 = 9.98, product4 = 4.49, product5 = 6.87;
    String input;
    // create DecimalFormat to format floating-point numbers
    // with two digit to the right of the decimal point
    NumberFormat moneyFormat =
    NumberFormat.getCurrencyInstance( Locale.US );
    JTextArea outputTextArea = new JTextArea();
    input = JOptionPane.showInputDialog(
    "Enter the product number" );
    product = Integer.parseInt( input );
    switch ( product ) {
    case 1:
    amount = product1;
    case 2:
    amount = product2;
    case 3:
    amount = product3;
    case 4:
    amount = product4;
    case5:
    amount = product5;
    case6:
    amount = product1 * product2 * product3 * product4 * product5;
    break;
    outputTextArea.append( product + "\t" +
    moneyFormat.format( amount ) + "\n" );
    } // end switch structure
    JOptionPane.showMessageDialog(null, outputTextArea,
    "The total retail prices", JOptionPane.INFORMATION_MESSAGE );
    System.exit( 0 );
    If anyone can explay why the append code aren't working.
    The compiler displays this message.
    unreachable statement
    outputTextArea.append( product + "\t" +
    ^
    Tnx
    regards
    giuseppe

    Hi,
    You need to put the statement
    outputTextArea.append( product + "\t" + moneyFormat.format( amount ) + "\n" );
    outside the switch case loop and then initialise amount variable.
    -Amol

  • I have  Mac os x 106. When I try to send an attachment with email it won't send.  Please could someone help? Thank you.

    I have a Mac OS X 10.6 When I try to send an attachment with email it won't send - keeps saying 'fail'.  Please could someone help? Thank you.

    Hi lllaass! I replied to your post with the information you required but haven't heard from you since. If you don't, or can't help any further please would you let me know. Thanks.

  • Hi bought DocumentsToGo Suite, I can't see the programme with my I Tunes and my Ipad; could someone help me please ?

    Hi, I bought the programme DocumentsToGo-Suite; I don't find where the software was loaded with my ITunes ; could someone help me , please ?

    This link may be of help -
    http://download.dataviz.com/pdf/quickstartbooklets/DXTG9-GSM_E.pdf

  • Hello.. I try to make copy an audio track(AIFF-C audio) on another dvd but I can't. I was try to made an ''burn folder'' with the audio track but did burn it.   Please could someone help me?

    Hello.. I try to make copy an audio track(AIFF-C audio) on another dvd but I can't. I was try to made an ''burn folder'' with the audio track but did burn it.   Please could someone help me?

    You appear to be having a hardware problem. Make an appointment at the Genius Bar of your nearest Apple Store to get a diagnosis.

  • Hi could someone help me please ? Ive just bought the new ipad and want to put some movies on it. I have already converted some movies using handbrake and tried to transfer them to my ipad and it just wont work. ive tried drag and drop and everything

    Hi could someone help me please ? Ive just bought the new ipad and want to put some movies on it. I have already converted some movies using handbrake and tried to transfer them to my ipad and it just wont work. ive tried drag and drop and everything

    bluztoo wrote:
    Haven't really used any of them including VLC - actually use netflix on the ipad more than anything. I was able to drop an mp4 into imovie on my ipad and see it there. This was something I had shot as avhcd and converted with turbo.264. Played fine. Probably not what you want for a movie player though.
    Well, turbo.264 is indeed very nice to have - even for converting full-sized movies. (Nevertheless, TechRadar's latest roundup (see http://www.techradar.com/news/software/applications/6-of-the-best-video-converte rs-for-mac-1074303 ; also linked from another roundup at http://www.iphonelife.com/blog/87/benchmark-excellent-multimedia-converter-handb rake-vs-commercial-apps ) has shown it's still worse than HandBrake in most respects.)
    All H.264 files (assuming they are H.264 level 4.1 or lower) are compatible with the built-in Videos app.
    bluztoo wrote:
    Those of you who use other players, what do you reccomend? Just curious.
    It entirely depends on your needs. The top players (AVPlayerHD / ProPlayer, It's Playing, GoodPlayer) all have different strengths and weaknesses. I myself use It's Playing the most as I convert everything into MP4 and simply love the DSP's (brightness / volume / saturation boosting). (Its software decoders are definitely worse than those of AVPlayerHD / ProPlayer; however, MP4's are played back from hardware.)

  • Could someone help me with comparing the contents of 2 folders?

    I'm trying to compare my iTunes music folder which is located in it's default location with a external USB hard drive. I was reading this article on how to do it using Terminal but I have NO CLUE on what to type in the command line. I'm clueless on this! Could someone help me with the commands I need to compare the 2 folders? I've included the link about what I'm trying to accomplish.
    http://www.macworld.com/article/132219/2008/02/termfoldercomp.html

    I tell you how. But remember that Terminal isn't a good place to be kicking around if you're not sure of what your doing. You can issue many commands as root that are irreversible. Tread very carefully, or get yourself a good GUI utility that can do that.
    It's asking you to cd (change directory to the folder that your files for comparison are in.
    So, you type, cd (leave a space) then you can just drag the folder to the Terminal and it will fill in the rest of the path.
    Then press Return
    Then type this at the prompt:
    diff -rq folder1 folder2
    (replacing "folder1 folder2 with the name of your folders. Leave spaces where indicated.
    Press return.
    -mj

  • Background image seems to be applied twice Can someone help with this CSS issue....

    Can someone help with this CSS issue....
    http://66.162.81.144/cms400min/default.aspx
    If you view the main page you will see that our background is
    2 shades of
    orange.. if you look at the line that divides those colors to
    the right and
    left you wil notice that the line is higher
    if you notice that it seems that there is another background
    on top of the
    first one..its the only thing i can think of..
    the only place where the image is being referenced is in this
    CSS style
    html, body
    min-height:100%;
    margin-bottom:1px;
    text-align:center;
    background-repeat:no-repeat;
    background-image:url(images/Background-Color2.jpg);
    background-color:#F74902;
    background-position:center;
    background-attachment:fixed;
    Is there something wrong with the above CSS that could or
    would cause this?
    is it because im applying the image to both the HTML and
    BODY?
    ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
    2008

    You've attached the background to both the html and the body.
    I would do this:
    html, body {
    min-height:100%;
    margin-bottom:1px;
    body{
    text-align:center;
    background-repeat:no-repeat;
    background-image:url(images/Background-Color2.jpg);
    background-color:#F74902;
    background-position:center;
    background-attachment:fixed;
    Having said that the image doesn't look any higher on the
    right than the
    left to me in Firefox. Is it just an optical illusion?
    Daniel wrote:
    > Can someone help with this CSS issue....
    >
    >
    http://66.162.81.144/cms400min/default.aspx
    >
    > If you view the main page you will see that our
    background is 2 shades of
    > orange.. if you look at the line that divides those
    colors to the right and
    > left you wil notice that the line is higher
    >
    > if you notice that it seems that there is another
    background on top of the
    > first one..its the only thing i can think of..
    >
    > the only place where the image is being referenced is in
    this CSS style
    >
    > html, body
    >
    > {
    >
    > min-height:100%;
    >
    > margin-bottom:1px;
    >
    > text-align:center;
    >
    > background-repeat:no-repeat;
    >
    > background-image:url(images/Background-Color2.jpg);
    >
    > background-color:#F74902;
    >
    > background-position:center;
    >
    > background-attachment:fixed;
    >
    >
    > }
    >
    > Is there something wrong with the above CSS that could
    or would cause this?
    > is it because im applying the image to both the HTML and
    BODY?
    >

Maybe you are looking for

  • How to create a new column in BEx Analyzer

    Hello, I have 12 characteristics and 7 Key figures in my Query. This includes RKF and CKF. I'm executing the query in BEx Analyzer. Now I want to include a new column which will be a replica of another Key figure column. How to do this? Regards, Arif

  • Forget my itunes security questions answer and rescue email address too....

    My 30 bucks is stucked help plz anybody can....

  • Oracle not installing in WINDOWS 2003 SERVER

    I cound not able to install oracle 10g in windows 2003 server. But its working fine in windows xp. I dont know for what reson its not installing. Once autoexec.exe is started, Its showing a black screen with please wait...... But after 10seconds its

  • Unable to configure the router.

    I bought a router today and I'm having some trouble getting it working. Iinserted the CD and followed the on-screen installation settings including unplugging the modem/router, then plugging it back in, etc. I got to step 11 "Set the Router's Adminis

  • Umlaut getting lost

    Hi experts! I have to read a german catalogue as xml into an internal table. I have to make some minor changes to the file(write and translate tags , so I converted it into a string (str_gaeb), then I parse it to xml. The string still contains all um