MattDelly's Profile
Reputation: 9
Worker
- Group:
- Members
- Active Posts:
- 41 (0.18 per day)
- Joined:
- 08-November 12
- Profile Views:
- 716
- Last Active:
Jun 10 2013 03:39 AM- Currently:
- Offline
Previous Fields
- Country:
- CA
- OS Preference:
- Linux
- Favorite Browser:
- FireFox
- Favorite Processor:
- Intel
- Favorite Gaming Platform:
- PC
- Your Car:
- Who Cares
- Dream Kudos:
- 0
Posts I've Made
-
In Topic: GUI/Font size not changing on panel
Posted 13 Nov 2012
Maybe this example will help you
import java.awt.Color; import java.awt.Font; import javax.swing.JFrame; import javax.swing.JTextArea; public class JTextAreaFontandColor extends JFrame { JTextArea txt = new JTextArea(); public JTextAreaFontandColor() { setLayout(null); txt.setBounds(3, 3, 300, 200); add(txt); Font font = new Font("Verdana", Font.BOLD, 12); txt.setFont(font); txt.setForeground(Color.BLUE); txt.setText("\n \n JTextArea font & color change example"); } public static void main(String[] args) { JTextAreaFontandColor jtxt = new JTextAreaFontandColor(); jtxt.setSize(313,233); jtxt.setTitle("JTextArea font & color settings"); jtxt.show(); } } -
In Topic: Study habits
Posted 13 Nov 2012
The only way your going to learn is if you just keep practising writing code. Go through the various chapters and quiz yourself to see if you know it. Youtube will be your best friend also check out the tutorials here they are pretty good. -
In Topic: Reduce item list when item is sold in POS
Posted 13 Nov 2012
Create a variable containing the stock and use a counter
int cheese = 2; if(cheese == sold) cheese--;
-
In Topic: am new to dream.in .code
Posted 13 Nov 2012
Welcome!
Well you have came to the right place!
-
In Topic: Making a text adventure how would I go around with an inventory. JAVA
Posted 13 Nov 2012
Tackling a big project first might be too confusing. Your house won't be too good without foundation
My Information
- Member Title:
- New D.I.C Head
- Age:
- 20 years old
- Birthday:
- August 4, 1992
- Gender:
-
- Location:
- Windsor, Ontario
- Interests:
- Programming, Music production and Gaming.
- Full Name:
- Matt Delly
- Years Programming:
- 2
- Programming Languages:
- C, C++, Java, HTML, CSS
Contact Information
- E-mail:
- Private
- Website URL:
-
http://www.youtube.com/user/MattDelly
- LinkedIn:
- ca.linkedin.com/in/mattdelly
|
|


Find Topics
Find Posts
View Reputation Given
|
Comments
raghav.naganathan
08 Nov 2012 - 23:41