Forum: Java Jul 29th, 2008 |
| Replies: 5 Views: 2,233 Oops!!!!!!
This is what I was looking for, makes sense now hey,
public void keyTyped(KeyEvent event) {
if (event.getKeyChar() == KeyEvent.VK_MINUS)... |
Forum: Java Jul 29th, 2008 |
| Replies: 5 Views: 2,233 JavaAddict
this is a learning process of Java or training, there is no way in hell a person can know everything within few weeks all I ever asked was anybody's help on how to code the textbox that... |
Forum: Java Jul 29th, 2008 |
| Replies: 5 Views: 2,233 Can you do me a faviour and allow me to be honest with you, I dont know what is going on to the above code, the thing is I never did JAVA And few days back I got an internship position to develop... |
Forum: Java Jul 29th, 2008 |
| Replies: 5 Views: 2,233 Guys
I have been trying to figure this out until this very moment
The problem is I need a piece of code that will not allow the user to enter any negative number in the text box
This how it... |
Forum: Java Apr 9th, 2008 |
| Replies: 11 Views: 1,369 When using client and server architecture you need to declare client IP address which could be (127.1.1.1) and server IP address which could (12345) depends.... at the beggining of ur program as... |
Forum: Java Apr 9th, 2008 |
| Replies: 1 Views: 3,345 You can resize image using width and height you can also use for loops to achive that
horizontal resize
for (int x = 0; x < screenWidth; x++)
{
g.setClip(x, 0, 1, srcHeight);
... |
Forum: Java Apr 7th, 2008 |
| Replies: 1 Views: 414 Its quite bit long... but worthy it
Serialization is the process of converting a set of object instances that contain references to each other into a linear stream of bytes, which can then be sent... |