I have a 5.2 system that I cannot log into. I input the user name and password, it begins to login, and then kicks me right back out to the login screen. I have never seen this problem before. I tried logging in under failsafe mode, and this doesnt work either.
It is, however, possible to...
The error code appears on the LED readout on the front of the server. I have not figured out a way to reboot the system back in to try any debugging. It is not even booting off of the CD in an attempt to reinstall. We are running 5.2. Is there a default password at the white boot up screen...
I just want to run an led between one of the data pins and ground pins. What is the max voltage? is there a place where I can get specs?
thanks in advance...
j
thanks for the help. I got it to work by modifying it to this:
if (rbutton1.isSelected()){
Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
int wdFrame=screenSize.width;
int hgFrame=screenSize.height...
I have an application that loads in a small window. When a selection is made, I clear the small window, and want to make it full screen sized, with a big button filling most of the screen. I have been able to resize the window, but the button only fills the size of the area that was originally...
I have an application that loads in a small window. When a selection is made, I clear the small window, and want to make it full screen sized, with a big button filling most of the screen. I have been able to resize the window, but the button only fills the size of the area that was originally...
JFrame frame1 = new JFrame("go2");
Dimension screenSize= Toolkit.getDefaultToolkit().getScreenSize();
int wdFrame = screenSize.width;
int hgFrame = screenSize.height;
frame1.setSize(wdFrame, hgFrame);
why doesnt this make the frame max size? If i follow this right, the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.