Questions tagged [utility]

Utility software is system software designed to help analyze, configure, optimize or maintain a computer. A single piece of utility software is usually called a utility or tool.

Utility software usually focuses on how the computer infrastructure (including the computer hardware, operating system, application software and data storage) operates. Due to this focus, utilities are often rather technical and targeted at people with an advanced level of computer knowledge - in contrast to application software, which allows users to do things like creating text documents, playing games, listening to music or viewing websites.

367 questions
-3
votes
1 answer

KWStyle binary for Windows?

I'm trying to install the KWStyle style-checker utility for C++ on Windows 7. I seem to be stumped at building it with my existing system. Anyone know of an existing Windows binary for that tool?
Daniel R. Collins
  • 893
  • 1
  • 8
  • 22
-3
votes
5 answers

Is there a ready utility for web sites to collect user information?

The basic requirement is in look and feel. It should look professional,have an good user interface. I don't know if someone has already developed such a tool especially for doing this kind of job.
omg
  • 136,412
  • 142
  • 288
  • 348
-3
votes
1 answer

Calendar Roll will it wrap around a given year, month, etc?

So let's say I have this code: //someParameterizedDate = New Years Eve 2011 Calendar cal = new GregorianCalendar(); cal.setTime(someParameterizedDate); cal.roll(Calendar.DAY_OF_YEAR, 1); Will the calendar now be equal to january 1, 2012? I found…
Andy McCall
  • 446
  • 1
  • 4
  • 15
-4
votes
1 answer

Need a way to extract string constants from source code

I need to do the following: extract the strings, obviously ignore comments in source code, // and multi-line /* ... */ handle quotes within strings: 'But he wasn\'t here!', "It just won't \"do it\"!" I was trying to come up with something using…
Yimin Rong
  • 1,890
  • 4
  • 31
  • 48
-4
votes
3 answers

Java inbuilt utility for generating a random sequence of numbers

Is there any inbuilt utility in java that I can use to genrate random numbers ? The format is xxxxxxxxxx and max limit of 10 numbers.
worrynerd
  • 705
  • 1
  • 12
  • 31
-5
votes
1 answer

Is there a JQuery or Javascript warning message utility which shows and timeouts without interfering with the user

I am looking for some non-modal warning messages which would stack on the right side of the screen and not interfere with the user working on the screen. I have forgotten that little utility name and where I can download it from. Any help would be…
DeKoss
  • 437
  • 3
  • 19
-5
votes
2 answers

not able to fetch text using utility in c#

I want to fetch data from the web. For numbers, my code is working properly. But for text the function is not working. Here is my code. foreach (ListItem li in varListItems) { if (li.OuterText.Contains("Bedroom")) …
1 2 3
24
25