Page 1 of 1

Java Help

Posted: Sun Aug 12, 2012 1:47 am
by DoctorJ999
Hey people, im having trouble with 2 things:P pretty much all i need to finish, First i want to know how to move a textField, so its at the bottom. Second, i want know how im supposed make the web program issue a command, and stop/start/restart the server.

Re: Java Help

Posted: Mon Aug 13, 2012 1:05 pm
by CraftminerX

Code: Select all

myTextField.setLocation(myFrame.getWidth() - myTextField.getWidth(), myFrame.getHeight() - myTextField.getHeight());
Haven't done any Java in years, but I think that will work.

Re: Java Help

Posted: Mon Aug 13, 2012 3:44 pm
by DoctorJ999
thanks :P