Search:

Type: Posts; User: clydefrog

Page 1 of 3 1 2 3

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    1,731

    Re: General Question; Need Ideas

    hmmm, interesting idea; i hadnt considered that, that might be able to get me started. thanks :)

    anyone else?
  2. Thread: Fuctions

    by clydefrog
    Replies
    4
    Views
    1,446

    Re: Fuctions

    This probably doesnt do it justice, but a simple way to envision it is as an input/output box. You're passing in some sort of value, performing actions on it, and then returning an output (unless you...
  3. Replies
    2
    Views
    1,731

    General Question; Need Ideas

    Hi,

    I beginning work on a personal project but before i began and dove blindly into this, i like to get some opinions from more experienced users. I'm not asking for code, just ideas or techniques...
  4. Re: Some legal questions about programming (intellectual property)

    great post.

    I agree in terms of quality, but i havent played any games in the recent years thats made me gone "Wow! Amazing! This game will surely influence the genre and set a new standard!" Most...
  5. Replies
    8
    Views
    1,481

    Very simple GUI problem

    Hi,

    I'm having an issue with my GUI, where 2 of the buttons appear to be overlapping. I'm trying to get the buttons to span multiple columns. It works on the other 2 buttons, but not on this one;...
  6. Replies
    10
    Views
    1,951

    Re: Puzzle Game. Need some help

    like for example i call a method A and pass in my 7 linkedlists. Then within that method, i call another method B. Is it possible to access variables defined in method A from method B without having...
  7. Replies
    10
    Views
    1,951

    Re: Puzzle Game. Need some help

    interesting suggestion, thank you.

    The way my professor wants it, to be able to enter your OWN hexagons; thats not a problem. I'm just hard coding it for now, to see if i can get it to work. But...
  8. Replies
    10
    Views
    1,951

    Re: Puzzle Game. Need some help

    Oh.

    1. It will output all the sides of the hexes; there are 7 hexes. it prints them in a row. example: [1][6][4][2][5][3] this is one hex

    2. No errors

    3 and 4. well, i'm stuck on how i...
  9. Replies
    10
    Views
    1,951

    Re: Puzzle Game. Need some help

    that is an SSCCE i believe.

    What do want me to change?
  10. Replies
    10
    Views
    1,951

    Puzzle Game. Need some help

    hi

    So i'm doing this project for school but i'm quite literally at a standstill. Let me just briefly tell you what the puzzle is supposed to do, because honestly its really weird.

    Its based off...
  11. Replies
    7
    Views
    2,015

    Re: Singly Circular Linked List Error

    Sorry i didnt reply sooner, i had to leave the house for a few hours.

    wtf? Yeah it was the toString() method, it appears to be working correctly now. lol thank you so much.

    Now just another...
  12. Replies
    7
    Views
    2,015

    Re: Singly Circular Linked List Error

    well i tried tracing it out on paper, but i'm not sure i did it correctly. From what i see on my paper, is the issue here the fact that the first node is constantly pointing to itself?

    Not sure...
  13. Replies
    7
    Views
    2,015

    Re: Singly Circular Linked List Error

    Thank you for the prompt reply!

    hmmm...

    so you mean somethng like this?



    if(head == null)
    {
  14. Replies
    7
    Views
    2,015

    Singly Circular Linked List Error

    Hi,

    I'm trying to make a singly circular linked list, however i happen to be getting nullpoiterexception in my code. I've never worked with circular linked list, so im not to certain if my...
  15. Re: Need help with making a menu that sits on left side of JFrame

    whats a BlueJ?

    it would be helpful if you post your code, because its difficult to visualize and help without it.

    Why dont you just make a new panel, add all your buttons to it, then use...
  16. Replies
    2
    Views
    1,286

    Re: End of simbol

    you can have any character be an "end" symbol. for example you can make a while loop that will terminate if the user inpute equals '0' or '.'
  17. Re: To remove duplicate values from 2 big files

    I agree with copeg, the use of a set would be much more efficient; such as HashSet (if you dont care about the order) or a LinkedHashSet (if you want to maintain insertion order).
  18. Re: non-static method getDimensions() cannot be referenced ...

    invoke the getDemension() method on the object rather than the class

    EDIT: Oh you solved it. nevermind lol
  19. [SOLVED] Re: Beginner, stuck on implementing while loop, compiles fine but still won't run

    haha no problem.

    yeah, the simplest mistakes are the hardest to find. :)
  20. [SOLVED] Re: Beginner, stuck on implementing while loop, compiles fine but still won't run

    when i run it nothing happens. but when i change the variable String go = ""; to String go = "yes"; it appears to be work as far as i know

    so yeah...lol. was that the issue? because when you...
  21. Replies
    4
    Views
    1,729

    Re: Filling awkward shapes with color

    okay i'll take another look, thanks for the reply.

    is there an example i can look at? I cant seem to find anything on the web about filling in complicated and asymmetrical shapes like California...
  22. [SOLVED] Re: Beginner, stuck on implementing while loop, compiles fine but still won't run

    i'm running it but im not getting anything.

    is the user supposed to input something?
  23. Replies
    6
    Views
    1,318

    Re: Need help with user imput

    I just want to know why he/she has a separate class when you could put the whole thing in just one class. I wasnt trying to debug those errors; though i have fixed the code and runs on my machine...
  24. Re: Some legal questions about programming (intellectual property)

    nice cant wait to see your website! I'd also love to give feedback.

    perhaps when i make a few of those smaller games (im actually working on one now) ill put it up on your site :)
  25. Replies
    3
    Views
    1,397

    [SOLVED] Re: Help reading a file to decode or encode

    no problem :)
Results 1 to 25 of 67
Page 1 of 3 1 2 3