Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #2K

27 Posted Topics

Member Avatar for samaru
Member Avatar for john.cooper

If you are the administrator then you should be able to enable registry editing. Try: Start>>Run>>gpedit.msc>>System>>Prevent Access to Registry Editing Tools (set this to DISABLED) I hope that helps.

Member Avatar for caperjack
0
55
Member Avatar for Borzoi

I did a reformat and OS reinstall on an older gentleman's computer last week. He dropped it off, then brought it back home and hooked everything back up again. He called me the next day and asked what I did to his computer that was causing it to tie up …

Member Avatar for The Mad Hatter
0
156
Member Avatar for jaycastr

NetBeans is really good. It has a ton of features, most of which I haven't even touched yet. For simple programming projects, I like Jcreator. It's very clean and simple, and works very well. Eclipse and Jgrasp are other popular choices that you may want to look into.

Member Avatar for Akill10
1
459
Member Avatar for Jonny00707

I definitely would not suggest taking it apart. It can be very dangerous inside a CRT monitor, lots of high voltage even when it's unplugged. You say it's old, it could be just the beginning of the end.

Member Avatar for Rik_
0
76
Member Avatar for Tecomapu

I would start here: [url]http://download.oracle.com/javase/tutorial/[/url] It gives a real good overview of the basics of Java. Also check out NetBeans for your IDE, it can help to guide you as well.

Member Avatar for aligajani
0
168
Member Avatar for Davife

The first thing that pops into my mind is the default gateway. If it is set wrong, then that would explain why you can connect to the computers on your network but not get out to the internet. Check the default gateway on the computers that can get to the …

Member Avatar for Davife
0
246
Member Avatar for aaafan

The only thing that comes to mind is that there may be something running that is preventing the power save mode. For example, if a video is playing, then the power saver settings will be over ridden and stay on. I'm sure it's nothing as obvious as a video playing, …

Member Avatar for aaafan
0
175
Member Avatar for atinus cool

You're going to have to show a little more effort to get any help, nobody is going to do your homework for you. What have you got for code so far? Have you planned it out in pseudo code yet? For example: prompt user for input separate numbers add them …

Member Avatar for masijade
0
106
Member Avatar for CST

It shouldn't be a problem, as long as the serial on the laptop is for home premium. During the install, there's an advanced disk options button that you have to click (can't remember exactly whereabouts in the install it is) where you will find the option to reformat the drive …

Member Avatar for CST
0
83
Member Avatar for Whilliam

It sounds like it could be a driver issue. Have you checked the device manager to see if there are any yellow exclamation points? Thats where I would start.

Member Avatar for JavaDad
0
194
Member Avatar for TRAMPAW

First you have to make sure you have some kind of video out port, usually it's an S-Video port. I'm not sure about Vista, but in XP under display settings there are options concerning multiple monitors. I had a laptop hooked to my TV a while back, but I can't …

Member Avatar for khakilang
0
103
Member Avatar for ZEZO2010

You can use Math.round to round numbers. Check all the features of the Math class here: [url]http://download.oracle.com/javase/1.4.2/docs/api/java/lang/Math.html[/url] Good luck.

Member Avatar for ZEZO2010
0
97
Member Avatar for alaa sam

I know there are some distributions that allow to you to run Linux as an application in Windows. In other words, you can try out the OS and it's features without having to install it. If you decide you like it, then you can install it in place of Windows …

Member Avatar for ThisOldMan
0
290
Member Avatar for toaster_man

Check this out: [url]http://download.oracle.com/javase/1.4.2/docs/api/java/lang/Character.html[/url] The character class has some very handy methods (like isDigit and isLettter) that would help you out. Study the methods, then figure how to use them in a loop to check the characters of the string

Member Avatar for JavaDad
0
123
Member Avatar for roro-

You need to at least start on the project in order to get any help, everybody's willing to help but nobody is going to do it for you. Get some code going, and if you run unto any problems, post it here with specific questions as to the problems you …

Member Avatar for roro-
0
248
Member Avatar for muncher10

GetGuess returns a boolean value, so I'm guessing your println(set1.GetGuess()) statement in the main prints out only true or false. You could add a toString method and call that to print the results.

Member Avatar for JavaDad
0
98
Member Avatar for kondeti ramesh

I did a project earlier this semester involving prime numbers. I used the modulus operator to determine whether the numbers were prime. A prime number is only evenly divisible by one and itself. If it is evenly divisible by any other number, then it is not prime. Think about how …

Member Avatar for JavaDad
0
57
Member Avatar for buba_kazouba

If it is not in any of the main categories of BIOS settings, make sure you check the "advanced" category. I believe I remember reading somewhere that some BIOS leave virtualization turned on by default and do not have the option to disable it.(I can't confirm that, though). Probably the …

Member Avatar for JavaDad
0
192
Member Avatar for chippanfat

Jon gave some great advice that you should definitely look into to. Another way to go about it may be to convert it to a string, then manipulate that. You can loop through each character of the string of numbers and build another string based on everything before the dot, …

Member Avatar for jon.kiparsky
0
196
Member Avatar for akinfemi

It's a lot easier for people to help you if you post your code using code tags, and ask specific questions as to the particular problem you are having.

Member Avatar for JavaDad
0
233
Member Avatar for DallasFan3

Have you looked into the String Builder or String Buffer classes? That was the first thing that popped into my head when thinking of how to do it. It has add and replace methods that may come in handy.

Member Avatar for JavaDad
0
414
Member Avatar for atoivan

I would use a for loop to fill the array with names.Maybe something like: [CODE] for(int i = 0, i < names.length(); i++) // ask user to input string // store the string in names[i] [/CODE] From your code, it looks like you have a good idea of well arrays …

Member Avatar for JavaDad
0
160
Member Avatar for lefaju

Is this a new hard drive that you are trying to add to a system, or an existing hard drive that is no longer being detected? Is Windows already installed on the drive, and if not, is the drive properly formatted? Answers to these questions will help determine the problem.

Member Avatar for pinkiff
0
111
Member Avatar for acer07
Member Avatar for JavaDad
0
47
Member Avatar for mar1obaz

Have you thought about using an array and a for loop? Then you could increment the index of the array for each string entered.

Member Avatar for mar1obaz
0
106
Member Avatar for DallasFan3

Break the problem down into steps: 1 - Create an array 2 - Prompt user for number 3 - Store the number as a string 4 - Either trim the non-digits out or figure out how you are going to ignore them 5 - Read each digit and increment the …

Member Avatar for naief
0
2K

The End.