Seems to be okay but something woring in terms of performance (about GUI)

I have worked on some code on my textbook. I think everything seems to be fine but something is wrong.
I tried to figure out this code but unfortunately I couldn't.
'doTraitTest' facilitator doesn't act at all.
Please give me any advice and thanks in advance.
Here is the code that gave me a headache.
// A simple psychometric-like type tool
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class TypeIndicator {
// class constants
private final int WINDOW_WIDTH = 400;
private final int WINDOW_HEIGHT = 325;
private final int TEXT_WIDTH = 30;
private final String LEGEND =
"A series of preferences are asked. The responses are "
+ "used to determine a personality type profile. The tool "
+ "is primitive and is meant for fun. You should not make "
+ "any decisions based on its analysis. ";
// instance GUI variable
private JFrame window = new JFrame("Type Indicator");
private JTextArea legendArea = new JTextArea(LEGEND, 4, TEXT_WIDTH);
private JTextArea resultArea = new JTextArea();
private JTextField statementPad = new JTextField("", TEXT_WIDTH);
private JRadioButton trueButton = new JRadioButton("True ");
private JRadioButton falseButton = new JRadioButton("False");
private JRadioButton hiddenButton = new JRadioButton("False");
private ButtonGroup buttonGroup = new ButtonGroup();
// instant test variables
private boolean introvert;
private boolean senser;
private boolean thinker;
private boolean judger;
public static void main(String [] args){
TypeIndicator testInstrument = new TypeIndicator();
// Typeindicator():default constructor
public TypeIndicator () {
configureAndDisplayGUI();
introvert = isIntroversionDominant();
senser = isSensingDominant();
thinker = isThinkingDominant();
judger = isJudgingDominant();
presentResults();
// configureAndDisplayGUI(): set up the GUI
private void configureAndDisplayGUI (){
// configure elements
window.setSize(WINDOW_WIDTH, WINDOW_HEIGHT);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
legendArea.setEditable(false);
legendArea.setLineWrap(true);
legendArea.setWrapStyleWord(true);
legendArea.setBackground(window.getBackground());
statementPad.setVisible(false);
statementPad.setEditable(false);
statementPad.setHorizontalAlignment(SwingConstants.CENTER);
statementPad.setBackground(window.getBackground());
trueButton.setVisible(false);
falseButton.setVisible(false);
buttonGroup.add(trueButton);
buttonGroup.add(falseButton);
resultArea.setEditable(false);
resultArea.setBackground(window.getBackground());
// add elements to window's content pane
window.setLayout(new FlowLayout());
window.add(legendArea);
window.add(statementPad);
window.add(trueButton);
window.add(falseButton);
window.add(resultArea);
// ready to display GUI
window.setVisible(true);
//isIntroversionDominant():is introversion dominant to extroversion
private boolean isIntroversionDominant() {
String s1 = "I prefer renting a video to going to a party.";
String s2 = "I am happy when house guests leave.";
String s3 = "Meeting new people makes me tense.";
String s4 = "I enjoy being alone.";
String s5 = "Crowd suck the life out of me.";
return doTraitTest (s1, s2, s3, s4, s5);
private boolean isSensingDominant() {
String s1 = "Facts are more interesting than ideas";
String s2 = "I need the details more than the big picture.";
String s3 = "I always measure, I never estimate";
String s4 = "Seeing is believing";
String s5 = "If you cannot touch it, it's not real.";
return doTraitTest (s1, s2, s3, s4, s5);
private boolean isThinkingDominant() {
String s1 = "I prefer page 1 to the comics in a newspaper";
String s2 = "I think therefore I am.";
String s3 = "I am not an emotional person";
String s4 = "Tears will not cause me to change my mind";
String s5 = "I'd rather be Data than Troi";
return doTraitTest (s1, s2, s3, s4, s5);
private boolean isJudgingDominant() {
String s1 = "It is easy to make a decision";
String s2 = "My first impressions are usually right";
String s3 = "Wrong decisions are better than none.";
String s4 = "I seldom have second thougths";
String s5 = "Uncertainty makes me uncomfortable";
return doTraitTest (s1, s2, s3, s4, s5);
// doTraitTest(): test for dominant response for a type category
private boolean doTraitTest(String s1, String s2, String s3,
String s4, String s5) {
// create running totals for responses
int choiceTrue = 0;
int choiceFalse = 0;
// pose queries and get responses
if (getTrueorFalseResponse(s1)) {
++choiceTrue;
else {
++choiceFalse;
if (getTrueorFalseResponse(s2)){
++choiceTrue;
else {
++choiceFalse;
if (getTrueorFalseResponse(s3)){
++choiceTrue;
else {
++choiceFalse;
if (getTrueorFalseResponse(s4)){
++choiceTrue;
else {
++choiceFalse;
if (getTrueorFalseResponse(s5)){
++choiceTrue;
else {
++choiceFalse;
// produce test result
return choiceTrue > choiceFalse;
// getTrueorFalseResponse(); pose a statement and get response
private boolean getTrueorFalseResponse(String statement) {
statementPad.setText(statement);
hiddenButton.setSelected(true);
statementPad.setVisible(true);
trueButton.setVisible(true);
falseButton.setVisible(true);
for(; ;) {
if(trueButton.isSelected() || falseButton.isSelected()){
break;
statementPad.setVisible(false);
trueButton.setVisible(false);
falseButton.setVisible(false);
return trueButton.isSelected();
// presentResult(): display testing results
private void presentResults() {
// setup text
String result = "Your type is \n"
+ " "
+ ((introvert) ? "I" : "E")
+ ((senser) ? "S": "N")
+ ((thinker) ? "T": "F")
+ ((judger) ? "J": "P")
+ "\n"
+ "where\n"
+ "* E = extroversion \n"
+ "* I = introversion \n"
+ "* S = sensing \n"
+ "* N = intuitive \n"
+ "* T = thinking \n"
+ "* F = feeling \n"
+ "* J = judgment \n"
+ "* P = perception \n"
+ "\n"
+ " Thank you for trying the tool";
// display test and quit button
resultArea.setText(result);
window.setVisible(true);

Sorry about it. Hope this is better for you to read.
// A simple psychometric-like type tool
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class TypeIndicator {
    // class constants
    private final int WINDOW_WIDTH = 400;
    private final int WINDOW_HEIGHT = 325;
    private final int TEXT_WIDTH = 30;
    private final String LEGEND =
    "A series of preferences are asked. The responses are "
    + "used to determine a personality type profile. The tool "
    + "is primitive and is meant for fun. You should not make "
    + "any decisions based on its analysis. ";
    // instance GUI variable
    private JFrame window = new JFrame("Type Indicator");
    private JTextArea legendArea = new JTextArea(LEGEND, 4, TEXT_WIDTH); //parameters : String, rows, and columns
    private JTextArea resultArea = new JTextArea();
    private JTextField statementPad = new JTextField("", TEXT_WIDTH);
    private JRadioButton trueButton = new JRadioButton("True ");
    private JRadioButton falseButton = new JRadioButton("False");
    private JRadioButton hiddenButton = new JRadioButton("False");
    private ButtonGroup buttonGroup = new ButtonGroup();
    // instant test variables
    private boolean introvert;
    private boolean senser;
    private boolean thinker;
    private boolean judger;
    public static void main(String [] args){
        TypeIndicator testInstrument = new TypeIndicator();
    // Typeindicator():default constructor
    public TypeIndicator () {
        configureAndDisplayGUI();
        introvert = isIntroversionDominant();
        senser = isSensingDominant();
        thinker = isThinkingDominant();
        judger = isJudgingDominant();
        presentResults();
    // configureAndDisplayGUI(): set up the GUI
    private void configureAndDisplayGUI (){
        // configure elements
        window.setSize(WINDOW_WIDTH, WINDOW_HEIGHT);
        window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        legendArea.setEditable(false);
        legendArea.setLineWrap(true);
        legendArea.setWrapStyleWord(true);
        legendArea.setBackground(window.getBackground());
        statementPad.setVisible(false);
        statementPad.setEditable(false);
        statementPad.setHorizontalAlignment(SwingConstants.CENTER);
        statementPad.setBackground(window.getBackground());
        trueButton.setVisible(false);
        falseButton.setVisible(false);
        buttonGroup.add(trueButton);
        buttonGroup.add(falseButton);
        resultArea.setEditable(false);
        resultArea.setBackground(window.getBackground());
        // add elements to window's content pane
        window.setLayout(new FlowLayout());
        window.add(legendArea);
        window.add(statementPad);
        window.add(trueButton);
        window.add(falseButton);
        window.add(resultArea);
        // ready to display GUI
        window.setVisible(true);
    //isIntroversionDominant():is introversion dominant to extroversion
    private boolean isIntroversionDominant() {
        String s1 = "I prefer renting a video to going to a party.";
        String s2 = "I am happy when house guests leave.";
        String s3 = "Meeting new people makes me tense.";
        String s4 = "I enjoy being alone.";
        String s5 = "Crowd suck the life out of me.";
        return doTraitTest (s1, s2, s3, s4, s5);
    private boolean isSensingDominant() {
        String s1 = "Facts are more interesting than ideas";
        String s2 = "I need the details more than the big picture.";
        String s3 = "I always measure, I never estimate";
        String s4 = "Seeing is believing";
        String s5 = "If you cannot touch it, it's not real.";
        return doTraitTest (s1, s2, s3, s4, s5);
    private boolean isThinkingDominant() {
        String s1 = "I prefer page 1 to the comics in a newspaper";
        String s2 = "I think therefore I am.";
        String s3 = "I am not an emotional person";
        String s4 = "Tears will not cause me to change my mind";
        String s5 = "I'd rather be Data than Troi";
        return doTraitTest (s1, s2, s3, s4, s5);
    private boolean isJudgingDominant() {
        String s1 = "It is easy to make a decision";
        String s2 = "My first impressions are usually right";
        String s3 = "Wrong decisions are better than none.";
        String s4 = "I seldom have second thougths";
        String s5 = "Uncertainty makes me uncomfortable";
        return doTraitTest (s1, s2, s3, s4, s5);
    // doTraitTest(): test for dominant response for a type category
    private boolean doTraitTest(String s1, String s2, String s3,
    String s4, String s5) {
        // create running totals for responses
        int choiceTrue = 0;
        int choiceFalse = 0;
        // pose queries and get responses
        if (getTrueorFalseResponse(s1)) {
            ++choiceTrue;
        else {
            ++choiceFalse;
        if (getTrueorFalseResponse(s2)){
            ++choiceTrue;
        else {
            ++choiceFalse;
        if (getTrueorFalseResponse(s3)){
            ++choiceTrue;
        else {
            ++choiceFalse;
        if (getTrueorFalseResponse(s4)){
            ++choiceTrue;
        else {
            ++choiceFalse;
        if (getTrueorFalseResponse(s5)){
            ++choiceTrue;
        else {
            ++choiceFalse;
        // produce test result
        return choiceTrue > choiceFalse;
        // getTrueorFalseResponse(); pose a statement and get response
        private boolean getTrueorFalseResponse(String statement) {
            statementPad.setText(statement);
            hiddenButton.setSelected(true);
            statementPad.setVisible(true);
            trueButton.setVisible(true);
            falseButton.setVisible(true);
            for(; ;) {
                if(trueButton.isSelected() || falseButton.isSelected()){
                    break;
            statementPad.setVisible(false);
            trueButton.setVisible(false);
            falseButton.setVisible(false);
            return trueButton.isSelected();
        // presentResult(): display testing results
        private void presentResults() {
            // setup text
            String result = "Your type is \n"
            + "   "
            + ((introvert) ? "I" : "E")
            + ((senser) ? "S": "N")
            + ((thinker) ? "T": "F")
            + ((judger) ? "J": "P")
            + "\n"
            + "where\n"
            + "* E = extroversion \n"
            + "* I = introversion \n"
            + "* S = sensing \n"
            + "* N = intuitive \n"
            + "* T = thinking \n"
            + "* F = feeling \n"
            + "* J = judgment \n"
            + "* P = perception \n"
            + "\n"
            + " Thank you for trying the tool";
            // display test and quit button
            resultArea.setText(result);
            window.setVisible(true);
}

Similar Messages

  • ATV seems to work okay but the experience not making it for me.

    I am a very new atv user but 24 hours have passed and I have yet to actually watch anything. The scale of time investment is terrible. To convert a dvd I already own to play on ATV took hours and then syncing took even more time. I decided to download a season of the wire from itunes and it's taking something like 2hrs per episode. It's starting out with mid season episodes first so I can't even watch from the beginning. I have to wait for the rest of the season to download. That should be tomorrow.
    Furthermore, I have an HD video camera and would like to be able to view my files from the camera (AVCHD) and they wont work either without a lengthy conversion process.
    I can always see the ATV in my itunes so I don't have that problem. I have turned on the TV to find the shiny silver apple logo that wont go away. I have also been able to update the ATV software too.
    Does ATV do anything quickly? So far everything is about waiting, waiting, waiting. Can anyone clue me into what I am supposed to be getting out of this. I can stream an audio file out of the TV. Big deal.
    I received the ATV as a gift from my girlfriend and I decided I would give it a shot. I love tivo and I like itunes. I was expect too much to have something like a combined experience. I am considering giving it up if I can't come up with something useful that it can do.
    Any advice as to how I can get this device to provide some immediate payoff and not just an opportunity to figure out what I might want to watch tomorrow.
    Thanks, KMA
    P.S.
    Why not put a DVD player in this unit? At least it would give me something to do while wait 2 hours to download a 1 hr SD program.

    I am using a wired network connection for the ATV. It's connected directly to the modem/router by a 1 meter cable. I'm not sure how I can improve my network experience with regard to download performance. I could upgrade my DSL to a higher speed but that would cost more per month and I'm not sure I want to pay that.
    I am using my Macbook Pro 15" with a core duo 2 gig processor. It's wirelessly connected to the network. I have a much, much more powerful PC that I could use to convert DVD's but it's at my recording studio and requires leaving the house and lots of planning for when it's not being used.
    " "I can stream an audio file out of the TV." How does one do that?" I'm sure with over 3000 posts on this forum you are more clever than that. You know what I mean. If you don't, I'm talking about playing a song in itunes and having the audio reproduced over the home theater/TV/monitor speakers by selecting ATV in
    the "Choose which speakers to use" dialogue box.
    "Read up on ATV and accept what it provides."
    I have been reading about what ATV can do. I am willing to make some changes if there is a payoff. Currently it has very specific proprietary requirements that do not lend itself to ease of use. It is definitely not an ipod for video content. I can play nearly every type of audio format at nearly any sample rate on my ipod with little trouble. The video codec and encoding requirements of ATV are extremely restrictive in how it can be used outside of purchasing content from the itunes store. In that way it is narrowing my viewing options significantly. I'm not sure if I should be willing to "accept" that.
    KMA

  • I have .me and .mac email accounts on my iPhone 4. I thought I had successfully transitioned from MobileMe to iCloud, but something must be wrong. iCloud seems to work fine on my computer and, with the exception of two email accounts, seems to be fine on

    I have .me and .mac email accounts on my iPhone 4. I thought I had successfully transitioned from MobileMe to iCloud, but something must be wrong. iCloud seems to work fine on my computer and, with the exception of two email accounts, seems to be fine on my phone. Can/should I delete the accounts on my phone and start over? It is somewhat of a nuisance to have two email accounts and double the amount of emails. The only thing different about the two iCloud accounts is the email addresses. Thanks.

    Well, seems I managed to unscrew this...I deleted my iCloud mail account and reinstalled it on my phone. That got rid of the duplicate .me/.mac email accounts.

  • So I updated to OS X Maverick(s) and backuped my harddrive and got a new one installed, everything seems okay but some things are missing in my settings like the software update icon. Does anyone know how I can get it back?

    So I updated to OS X Maverick(s) and backuped my harddrive and got a new one installed, everything seems okay but some things are missing in my settings like the software update icon. Does anyone know how I can get it back?

    Okay so I asked someone from apple and they said that the software update icon is gone but its functions have been merged with the app store icon on the settings menu. Crisis averted haha!

  • We're sorry, but something seems to be wrong on our end. Please try again later. If the problem pers

    my customer is getting a error message as "We're sorry, but something seems to be wrong on our end. Please try again later. If the problem pers----"

     

  • Disk Utiltiy in Mac OS X reports okay, but OS 9 says bad

    In Mac OS X 10.4.9, I check my Classic (OS 9) hard drive and it says everything is okay.
    Then when I boot into OS 9 (on separate HD), and run Disk First Aid, it reports something like "invalid btree header 0,0." I tried to fix, and it reports "fixed okay" but when I run the check again, it fails with same problem.
    So, which program is correct? Should I be worried?
    Should I copy everything off OS 9 HD into Mac OS X HD, reformat , and copy everything back?

    Yes, I know about DW as a last resort, as I've used it in the past when the hard drive is un-mountable...
    Anyways, I decided to simply copy my OS 9 files into my Mac OS X folder, re-format my OS 9 HD using Disk Utility and checking "install OS 9 driver" and zero-out data... then I copied my OS 9 files back into that HD.
    Then I rebooted into OS 9, and ran DFA and it says "seems okay," no more "invalid btree header." So looks okay now.
    Now the next/real question is... how does that error happen in the first place?
    I've read that you should only use DFA (disk first aid) on OS 9 HDs, and DU (disk utility) on Mac OS X HD... I know about not using DFA on OS X (HFS-journaled, etc), but didnt realize it might be a problem to use DU on OS 9 to repair/verify, etc...
    I guess I should just stop doing that and use either DU or DFA for with its intended OS HD partition.
    Andrew

  • Personalization preview okay but doesn't show for end user

    Hi,
    I've built a folder structure for iviews, pages, worksets, and roles and then delta linked across the standard ESS iviews into my new iview folder. I've done the same with the pages and then updated the page with the copied iview and from there built up the worksets and roles.
    I've then gone into the role down to a page, previewed it and made some personalisation changes to field labels. This all seems to work fine but then the personalization changes are not being seen when I go and view the ess screens direct (either with an end-user logon or with my admin user viewing the screens direct).
    All users are assigned the role through which I've made the personlisation changes.
    Am I missing something. My understanding is that the personalisation changes in the role will be seen by all those that use the role i.e. ESS role within com.xyz.
    Are there other things I can check?
    Any help much appreciated.
    We're on NW 7.0 EHP1.
    Regards
    Phil

    Hi Gopal,
    Thanks for your response. Unfortunately no personalization at any level is showing from an end-user view.
    One thought.... are changes required to the "URL of PCD Page" in the homepage framework to point at the new role location?
    For example the personal information page points at resource EMPLOYEE_PERSINFO_ERP2005_PAG which currently has a PCD location set as:  ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_personal_information/
    com.sap.pct.erp.ess.area_personal_information
    I've not read anywhere that this needs to change (to point at com_<companyname>) , but maybe it does?

  • Email seems to be sent, but it doesn't arrive. No 'unable to send' message, sent items and draft folders are empty. The mail disappears.

    Email seems to be sent, but it doesn't arrive. No 'unable to send' message, sent items and draft folders are empty. The mail disappears. I tried to fully turn off the iPad and have it restart. But it doesn't go off. I keep seeing the small white 'turning wheel' untill the battery is gone. After that, it works again (and so does the e-mail). This happens about every week. What can I do?

    *there's no reason to be paranoid*
    Says Mulder .
    Anyway, as I mentioned, I don't use any sync-able email, just a very plain-jane POP email provider. iSync reports no devices and has nothing in its log, which matches my never having installed anything in need of syncing.
    The thing is, if Mail says its sending something when nothing was ever sent, that's a largish bug whether it is actually sending something or isn't, and there isn't really enough info here to know which of those are the case. Maybe Mail just displays "Sending" because an attempt to do something reasonable is timing out, maybe it does an innocuous and normal POP thing using very confusing nomenclature, or maybe it's really trying to send something which has a wrong flag or something. There isn't really enough info to know what is going on, so I was hoping someone could identify the symptoms.

  • Hi, i can't hear any sounds from my pad when i'm recording video what seems to happen? but it has sounds in songs from downloaded files.i just can't record sounds..

    hi, i can't hear any sounds from my pad when i'm recording video what seems to happen? but it has sounds in songs from downloaded files.i just can't record sounds..

    Hey ErikSimon, I kept troubleshooting my problem last night and when I loaded my samples an alternate way, actually the longer way, it worked. I think I have gremlins in the system or something, but I got it working again. I was having the issue when I tried loading the samples via these instructions that were mentioned in SFLogicninja's Youtube video @ 3:07
    http://www.youtube.com/user/SFLogicNinja#p/u/8/7YjgKLZ2jpY
    They are good instructions, but the Logic gods weren't smiling on me last night. Really weird and frustrating at the same time. Thanks anyways.

  • Download of a rented movie seems to go OK, but ends with: we could not complete your itunes store request. an unknown error occurred 5103

    When downloading a rented movie, download seems to go OK, but ends with We could not complete your iTunes Store request.  An unknown error occurred 5203, please try again later.  This has been going on for days so I assume it is something wrong with my computer set up.  I have tried a number of configuration changes recommended on line with no change in results.

    Perhaps try the "Error 3001," "-42110," or "5103" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Ipone or ipod is not detected by itunes unless itunes is updated to a newer version. however whenever i restart my computer it seems itunes uninstalls itself or something. in order to sync anything to my phone i have to reinstall itunes. help please

    both my iphone or ipod is not detected by itunes unless itunes is updated/reinstalled. however whenever i restart my computer it seems itunes uninstalls itself or something and in order to detect my phone it needs to be reinstalled all over again. why is itunes uninstalling itself on my mac when it is restarted?

    snow leopard.
    Okay. In that case try the following document:
    Mac OS X v10.6: iOS device not recognized in iTunes after restart

  • Adobe digital editions - Install okay but doesn't want to open?

    Hi, I downloaded ADE on my computer, the installation is okay, but when i try to open it, a window opens saying something like (my message is in french) : "Adobe Digital editions 4.0 encountered a probleme and must close. Please let Microsoft know". And then i clicked on "send the errors' message".
    I tried to install it via Chrome, explorer, mozilla, same thing.
    I bought an ebook on the chapitre.com's website and can't open it without ADE.
    Could anyone help me?
    Thanks!

    I think your question should go in the Digital Editions forum,
    http://forums.adobe.com/community/adobe_digital_editions

  • When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • I am using the big date calendar template and when I submit it to apple for printing I lose the name of two months. These names are not text boxes. I see the names when I send it in but something happens during the transmission to apple. It was suggested

    I am using the big date calendar template in iPhoto. I am on Lion 10.7.2, macbook air. The names of the months are on each calendar page but something happens when I send the data to Apple. The names are part of the template. They are not text boxes. I lose two names on the calendar after it is sent to Apple. Apple suggested I make a pdf file of my calendar before sending it in and check to make sure every name shows. I did this with a calendar I just sent in. The calendar was correct. All names of the months were showing. After sending the data two month names disappeard because when it arrived by mail, it was incorrect. Apple looked at my calendar via a pdf file and it was incorrect.  This is second time this has happened. I called Apple and they had me delete several folders in the Library folder, some preferences and do a complete reinstall of iPhoto.  I have not yet remade the defective calendar. I am wondering if anyone else has had this problem?
    kathy

    Control-click on the background of the view all pages window and select "Preview Calendar" from the contextual menu.
    You can also save the pdf as a file to compare to the printed calendar.  If the two names are visible in the pdf file then the printed copy should show them.  Contact Apple for a refund.  Apple Print Products - Apple Store (U.S.)

  • My G Drive will not show up on my desktop for use. It did yesterday. It is not full and currently the light turns on and seems to be running but will not show up on my desktop. What can I do?

    My G Drive will not show up on my desktop for use. It did yesterday. It is not full and currently the light turns on and seems to be running but will not show up on my desktop. What can I do?

    1. verify on another Mac first. and another port.
    2. very likely dead SATA card
    read about it here:
    Your dead external hard drive is likely fine! Great hope for your 'faulty' external HD

Maybe you are looking for

  • I keep getting a message saying "Canon Quick Menu has stopped working".

    To be honest it has always said this since I installed the drivers for my Pixma MG3550. But as I have only done printing to date, I wasn't too bothered. Now I want to scan something and can't do it. I've been on and downloaded the latest drivers too.

  • How to enable a font family for SAPScript

    We want to enable a font family "JPMINCHO" so that we can use it in our SAPscript. When we are trying it from SAP Script font maintenance (SE73) is not allowing us to enable it. Our SAP version is ECC 6 on DB2. Can anyone suggest " how to enable a fo

  • Billed for SMS to +44 778 620-****

    I have been billed for 36 SMS's to 44778620****. According to some internet references, it is the number iMessage uses to activate itself. Indeed not a number I have sent any SMS's to. So it appears the bug (feature?) I had getting my ported (Vodacom

  • The iPhone 5 is terrible...want to return!!!

    I bought my iPhone 5 in December and I spent a ridiculous amount of money for it...even buying it at discount! Since then, my data has been exponential and I end up owing over a hundred dollars plus in data overage charges! I was told to turn of the

  • U330 Diagnostics Program and Keyboard Sensor Issues

    I'm sorry if this has been posted before but I've been searching for awhile now and can't find it. I was wondering if there was any type of diagnostics program for the U330 to test my cpu, fans and the general hardware.  Also i was wondering if anyon