User Profile

Collapse

Profile Sidebar

Collapse
DeadSilent
DeadSilent
Last Activity: Feb 23 '09, 10:28 PM
Joined: Feb 21 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • LOL! Sorry about that, I got confused for a second.
    See more | Go to post

    Leave a comment:


  • Read my first post, I believe I stated the issue clearly. :\
    See more | Go to post

    Leave a comment:


  • Ohh its still there, I'm just going to research swing more in depth and hope I can get something figured out before tomorrow.
    See more | Go to post

    Leave a comment:


  • This was for a project and paintComponent( ) was not required to run the program in NetBeans, I'm just starting to learn Java so the graphics / drawing class functions I'm starting to learn. What exactly would I use the paintComponent( ) for?
    See more | Go to post

    Leave a comment:


  • DeadSilent
    replied to sessions and iframes
    in PHP
    I just tested the code your posted and it is working fine for me. I just do not get a session when I visit bar.php because there is no open session on that page not allowing access of session information... I would suggest changing your bar.php to this:

    Code:
    <?php
       
    session_start(); 
    echo "<br> sessId: " . session_id() . "<br>" ;//shows the same session-id as index.php
    echo
    ...
    See more | Go to post

    Leave a comment:


  • DeadSilent
    replied to url rewriting
    I have a similar question on the same matter. I'm wonder how I can use multiple RewriteRules for different files.. currently I am only able to Rewrite one and if I use any more they either dont work or will cause an error.. here is the code I'm using:

    Code:
    <IfModule mod_rewrite.c>
      Options +FollowSymlinks
      RewriteEngine on  
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
    ...
    See more | Go to post

    Leave a comment:


  • The error I get is that no circle comes up when I run this code and I am not sure why.

    Circle Class:
    Code:
    package shapemaker;
    
    import java.awt.*;
    
    class Circle {
    
        private double Radius;
        private int XCord, YCord;
        private Color penColor, fillColor;
    
        // Constructors
        public Circle ( ) {
            //setRadius(0);
            this(0);
    ...
    See more | Go to post

    Leave a comment:


  • DeadSilent
    started a topic exporting non-public type through public api
    in Java

    exporting non-public type through public api

    I have this code and for some reason I keep getting an error where it says "exporting non-public type through public api ".. I'm not sure why this keeps happening but it does so for getCircleInfo / drawCircle. Thanks for your help.

    - Me.

    [code=java]
    package shapemaker;

    import java.awt.*;
    import javax.swing.*;

    public class ShapeMaker {

    private JFrame win;...
    See more | Go to post
    Last edited by Nepomuk; Feb 21 '09, 09:10 PM. Reason: Please use [CODE] tags
No activity results to display
Show More
Working...