Top "Range" questions

A range is an extent of values between its lower and upper bound.

Own image as slider thumb on range. How to style on css

How do I set an image as a thumb slider on range input type with css? It doesn't work in …

html image internet-explorer slider range
Why will a Range not work when descending?

Why will (1..5).each iterate over 1,2,3,4,5, but (5..1) will not? It returns the Range instead. 1.9.2p290 :007 > (1..5).each do |i| puts i …

ruby range
how to set values to a two-dimensional Excel range?

I need to build an excel sheet from a list of test-cases in a specific format in order to upload …

c# excel range excel-interop invokemember
How do I create a range object when I know just the character offsets?

So I have a div that contains a block of text, previously the user has selected some text in this …

javascript html dom range rangy
Union of multiple ranges

I have these ranges: 7,10 11,13 11,15 14,20 23,39 I need to perform a union of the overlapping ranges to give ranges that are not …

python range union
TypeError: coercing to Unicode: need string or buffer, tuple found

I'm trying to make my app run files with Unicode characters, but for this, you must decode before them. For …

python unicode utf-8 range configobj
Stata: Generate sum / total by specific date ranges and save them as a new variable

I work with panel data which contain several companies (id) and cover the period from 1.1.2008 to 1.1.2013 (date, year). I want …

sum range time-series stata subtotal
Set textarea selection in Internet Explorer

I'm looking for a way to set a selection in a textarea in Internet Explorer. In other browsers, this works …

javascript internet-explorer textarea range selection
range countdown to zero

I am taking a beginner Python class and the instructor has asked us to countdown to zero without using recursion. …

python range zero
C++ - Finding intersection of two ranges

What is the best way to find the intersection of two ranges in C++? For example, if I have one …

c++ range intersection set-intersection