Nickoteen
March 29th, 2005, 02:19 AM
Report.ParameterFields(4).AddCurrentRange "000", "999", 3
In this line of code, what does number 3 stands for ? 000 is start and 999 is end range I presume, but number 3 is a mistery 2 me.
kristyw
March 29th, 2005, 09:32 PM
According to info I found :
"Use this bitwise value to indicate whether the upper and/or lower bound of the range should be included".
I'm not sure which value indicates what, though.
Hope this helps.
kristyw
March 29th, 2005, 09:34 PM
http://support.businessobjects.com/library/kbase/articles/c2007345.asp :
'crRangeNotIncludeUpperLowerBound 0
'crRangeIncludeLowerBound 2
'crRangeIncludeUpperBound 1
'crRangeNoLowerBound 8
'crRangeNoUpperBound 4
I would guess the value 3 probably means include both upper and lower?