ZipGrep is a utility that can list and search zip (.war, .ear, .jar, etc) archives for text patterns, without the need to extract the archive's contents.
One of a set of tools we're offering as a way to say thank you for being a part of the community.
private void trackBar1_MouseDown(object
{
int numberTicks = (trackBar1.Maximum - trackBar1.Minimum)/(trackB
float percent = ((float)e.X )/(float)trackBar1.Size.Wi
int newValue = (int) ((float) numberTicks * (float)percent);
trackBar1.Value = newValue;
}
cheers,
Aaron