Search:

Type: Posts; User: Tyluur

Page 1 of 2 1 2

Search: Search took 1.21 seconds.

  1. Replies
    1
    Views
    1,221

    Get image for captcha session

    I want to get the current captcha that is displayed on a website. An example of this would be http://top100arena.com/in.asp?id=58978

    How would I get the image link of the captcha that is displayed...
  2. Replies
    8
    Views
    1,282

    Re: JFrame with a J anel on the Right

    --- Update ---

    I've switched to a boxlayout but there is a random spacing between the two:

    http://i.imgur.com/7dSvqdy.png



    JPanel panel = new JPanel();
    panel.setLayout(new...
  3. Replies
    8
    Views
    1,282

    Re: JFrame with a J anel on the Right

    There's supposed to be a panel on the EAST.
  4. Replies
    8
    Views
    1,282

    Re: JFrame with a J anel on the Right

    package wbot.nl;

    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.GridLayout;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import...
  5. Replies
    8
    Views
    1,282

    Re: JFrame with a J anel on the Right

    PM'ed it to you.
  6. Replies
    8
    Views
    1,282

    JFrame with a J anel on the Right

    I am wanting to add a panel to the right of the JFrame, but it isn't showing up when I do this:


    getFrame().getContentPane().add(new Hiscores(), "West");


    What am I doing wrong? Hiscores is...
  7. Replies
    0
    Views
    987

    Program Shutting Down Randomly?

    I receive this in my terminal on Linux randomly:

    http://i.imgur.com/efud4wB.png

    And the Game I'm hosting shuts down since the java process isn't running anymore. Why? What am I doing wrong? How...
  8. Replies
    7
    Views
    1,218

    Re: Adding a JScrollPane to a JTree

    Yes I have I'm still hopelessly lost as to what I'm doing wrong. I've been searching for hours on end. Can you just tell me what to do
  9. Replies
    7
    Views
    1,218

    Re: Adding a JScrollPane to a JTree

    contentPane.add(treeScroll);



    Makes no difference. Am I doing something wrong in my code?
  10. Replies
    7
    Views
    1,218

    Re: Adding a JScrollPane to a JTree

    There is no scroll bar, theres more than 4 values in the tree but they arent visible.
  11. Replies
    7
    Views
    1,218

    Adding a JScrollPane to a JTree

    I can't get the scrollpane to appear here:



    package oldschool.runescape.com;

    import java.awt.EventQueue;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import...
  12. Replies
    9
    Views
    1,232

    Re: Tabbed Pane not showing up.

    The class RS2Loader is the one that compiles and executes fine, you just have to put the classes I gave you into the right packages.
  13. Replies
    9
    Views
    1,232

    Re: Tabbed Pane not showing up.

    There's nothing being printed out, I have the code in an Eclipse project. It's just not showing the tabbed pane.
  14. Replies
    9
    Views
    1,232

    Re: Tabbed Pane not showing up.

    The main code I posed is using the JTabbedPane. In method loadClient().
  15. Replies
    9
    Views
    1,232

    Re: Tabbed Pane not showing up.

    It is missing the Calculator class and ProgressBar class.

    Calculator class:

    package oldschool.runescape.com; import java.awt.EventQueue; import java.awt.ev - Pastebin.com

    ProgressBar class:...
  16. Replies
    9
    Views
    1,232

    Tabbed Pane not showing up.

    package oldschool.runescape.com;

    import java.applet.Applet;
    import java.applet.AppletContext;
    import java.applet.AppletStub;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;...
  17. Replies
    1
    Views
    1,178

    JFrame Exit Problem.

    I created a class that loads up a JFrame, and that frame has JMenus and JMenuItems.

    One of those JMenuItems opens up a new JFrame, and when you close that JFrame (a customised calculator), the...
  18. Thread: JProgressBar

    by Tyluur
    Replies
    1
    Views
    899

    JProgressBar

    How would I find out the percentage of data that has been downloaded from this code?



    public static void main(String[] args) throws Exception {
    pageAddressUrl = new...
  19. Replies
    7
    Views
    1,144

    Re: Check Web File Version

    How?
  20. Replies
    7
    Views
    1,144

    Re: Check Web File Version

    Last modified date would be best I suppose.
  21. Replies
    7
    Views
    1,144

    Re: Check Web File Version

    I dont know how to start.
  22. Replies
    7
    Views
    1,144

    Check Web File Version

    I want to check the version of a file, so the client knows whether or not to download the new updated client. The file is located at http://javahost.ws/files/zamorak/zamorak.jar
  23. Two issues with using a proxy to open a URL

    NVM
  24. Column count doesn't match value count at row 1

    public static boolean sentBan(String username, long time, String reason) {
    DatabaseConnection connection = World.getConnectionPool().nextFree();
    if (connection == null)
    return false;...
  25. Re: Passing as a parameter, an object + another variable

    Wouldn't it just be:

    Light light = new Light(new Coord3D(object), 5);

    ??
Results 1 to 25 of 37
Page 1 of 2 1 2