If pre-version-9 (no gauges yet), one has to rely on custom built controllers.
Here is a slider implementation using LocatorPane (I prefer lines with rounded caps instead of rectangles because of aspect ratio issues):
slider[Dynamic[var_], {min_, max_}] := Module[{x = 0},
LocatorPane[
Dynamic[{x, 0}, (x = First@#; var = Rescale[x, {-1, 1}, {min, max}]) &],
Graphics[{AbsoluteThickness@6, CapForm@"Round", Line[{{-1, 0}, {1, 0}}]},
ImageSize -> {300, 30},
AspectRatio -> .1, PlotRangePadding -> 0],
Appearance -> Graphics[{EdgeForm@{Thick, Black}, White, Disk@{x, 0}},
ImageSize -> 20]]];
{slider[Dynamic@x, {-100, 100}], Dynamic@x}

The very same with Locator (an extra Clip was necessary to prevent out-of-range values):
slider2[Dynamic[var_], {min_, max_}] := Module[{x = 0},
Graphics[{
AbsoluteThickness@6, CapForm@"Round", Line[{{-1, 0}, {1, 0}}],
Locator[
Dynamic[{x, 0}, (x = Clip[First@#, {-1, 1}]; var = Rescale[x, {-1, 1}, {min, max}]) &],
Graphics[{EdgeForm@{Thick, Black}, White, Disk@{x, 0}},
ImageSize -> 20, AspectRatio -> 1]]
}, ImageSize -> {300, 30}, AspectRatio -> .1,
PlotRangePadding -> .1]];
{slider2[Dynamic@x, {-100, 100}], Dynamic@x}
Even simpler implementation with EventHandler and Point (to fully eliminate dependency on aspect ratio).
x = .5;
Graphics[{
AbsoluteThickness@6, CapForm@"Round", Line[{{0, 0}, {1, 0}}],
EventHandler[
{Black, AbsolutePointSize@20, Dynamic@Point@{x, 0},
White, AbsolutePointSize@15, Dynamic@Point@{x, 0}},
"MouseDragged" :> {x = Clip[First@MousePosition@"Graphics", {0, 1}]}]},
ImageSize -> {200, 20}, AspectRatio -> .1]
LocatorPanewithDynamicModuleto do what you want. See the help section on `LocatorPane' with some examples which might help. – Jonathan Shock Mar 21 '13 at 07:23slider(what I want) without combining the bothlocatorPaneandDynamicModule.why he got it like that?http://mathematica.stackexchange.com/questions/1373/how-to-create-interrelated-sliders– subbu Mar 21 '13 at 07:28Slideryou want in the link you have written there. It appears to be a regular greySlider. – Jonathan Shock Mar 21 '13 at 07:32