Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Scipi

Pages: 1 ... 51 52 [53] 54 55 ... 139
781
Computer Usage and Setup Help / Re: Re: Monitor problem
« on: August 27, 2012, 11:25:57 am »
Dropbox is installed. However, how would I be able to run the program on the computer if I can't see where to go to run it?

Beyond that, that would be much appreciated!

782
Computer Projects and Ideas / Re: Re: Coding Battles Submissions
« on: August 26, 2012, 11:41:59 pm »
Unfortunately, due to my current computer situation I will not be able to complete and submit my entry in time. I'll finish it when able nonetheless :p

783
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: August 26, 2012, 01:00:13 pm »
3307: It's the only thing you post here.

784
Computer Usage and Setup Help / Re: Monitor problem
« on: August 26, 2012, 10:12:28 am »
Hmm. I've rebooted and unplugged /replugged several times. I'll see if it starts working again later on.

Edit: Even with unplugging and leaving it off a while, it still is not working properly... I think it's running fine just it's not sending video to the screen.

785
Computer Usage and Setup Help / Monitor problem
« on: August 26, 2012, 07:54:05 am »
Ok, I'm having this issue with my computer. Basically the monitor will not come out of sleep mode even if the computer is restarted. I've checked with another monitor and it would have the same problem. The only thing. Before it did that, my computer randomly started freezing up and task manager would not come up. It went to sleep mode and never woke back up. Has anyone else had this issue? I'm using a HP computer with an nvidia gpu. Thanks

786
Gaming Discussion / Re: 100 Games that is hard to 100%
« on: August 26, 2012, 05:19:39 am »
Hmm.

Singularity on the xbox is now pretty much impossible to get every achievement for since it's community is near dead now.

Same for Halo Wars.

787
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: August 24, 2012, 08:59:04 pm »
3298: You play the Original game
* HOMER-16 WON the game

3299: You have pretty good timing with threads

3300: You randomly shout SPARTA!!! At 300 signs

3301: You then shout MACEDONIANS AND ROMANS ARE BETTER!!! afterwards :P

3302: You post random signs

788
Minecraft Discussion / Re: A New Subforum
« on: August 23, 2012, 07:44:56 am »
Hmm, don't know if this is because things are being worked on, but it seems that for this forum karma seems to be entirely disabled. You can't even view total respect below a users avatar.

789
Minecraft Discussion / Re: A New Subforum
« on: August 23, 2012, 06:35:20 am »
It is a ranked match which had gone horribly wrong (for me) where I essentially fed, I had an enemy soraka raging at me with all her mana and the leader.


I like how this bot tried to give a constructive post, but unfortunately, League of Legends has little to do with Minecraft subforums :P

790
General Discussion / Re: How to teach alphabet to your future kids
« on: August 20, 2012, 05:42:56 am »
Reminds me of ABCDeath by Psychostick.

I'd post a vid, but it's quite explicit x.x

791
Computer Programming / Re: Multiple objects
« on: August 17, 2012, 12:32:38 pm »
Quote
his keeps giving me an error "cannot make a static reference to the non-static method setInfoPanelGeneral()". Subsequently, when I make setInfoPanelGeneral static, it makes me make everything else static too. It can very well be that I'm just not writing my code correctly. It works now, but as I haven't made that much progress yet, I am considering rewriting it.

Ah, ok I see

Code: [Select]
static JPanel[] generalTabs = {shipTab, planetsTab, forumTab, ircTab, wikiTab, mtGeneralTab};
 for (int j =0; j < comp.length; j++){
  generalTabs[j] = new JPanel();
 }

Pretty smart, though I would use generalTabs.length instead to ensure each object is initialized.

792
Computer Programming / Re: Multiple objects
« on: August 17, 2012, 06:05:11 am »
You are only creating a single object is why.

In java when you create an object, say,

Code: [Select]
Object o;
All it does is create a reference for that object, but the actual reference is null.

When you do,

Code: [Select]
o = new Object();
This creates the actual object

Code: [Select]
Object o;//null value
o = new Object;//Object is created

So what you need to do is instead of,

Code: [Select]
static JPanel shipTab, planetsTab, forumTab, ircTab, wikiTab, mtGeneralTab = new JPanel();
Try,

Code: [Select]
static JPanel shipTab = new JPanel();
static JPanel planetsTab = new JPanel();
static JPanel forumTab = new JPanel();
static JPanel ircTab = new JPanel();
static JPanel wikiTab = new JPanel();
static JPanel mtGeneralTab = new JPanel();

You also don't need to have each static since your array is static ;)

In fact, do you need static at all if each is being added to the JTabbedPane?

Public may be a better option.

793
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: August 16, 2012, 03:35:42 am »
3254: You doubt people remember your first or second avatar :P

794
Computer Programming / Re: Multiple objects
« on: August 15, 2012, 11:27:34 am »
You could make a loader method that takes an array of objects and adds each to a panel sequentially

Code: [Select]
public void loader(JTabbedPane tabPane, Component[] comp){
    for(int i = 0; i < comp.length; i++){
        if(comp[i] != null && tabPane != null)
            tabPane.add(comp[i]);
    }
}

And that should work for you :D

795
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: August 15, 2012, 10:26:45 am »
3256: You have old goosed stuff still in your profile :P

Pages: 1 ... 51 52 [53] 54 55 ... 139