我搞不清楚那三個數字的作用和具體效果.
請各位高手明示.
謝啦!!!

解决方案 »

  1.   

    这种问题按 F1 看看 MSDN 就可以了,Microsoft.Com 也有在线的 MSDN。
      

  2.   

    开始我以为你将 .Net 的问题到这里提问了,可是看了一下 .Net 中没有 LowerBound(),所有你用的应该是第三方提供的类,只能找找它提供的帮助或者查看 QuickSort() 的源代码。
      

  3.   

    是不是XArrayDB7.0中的QuickSort方法...
    这有一点相关说明.
    QuickSort Method Syntax
    XArrayDB.QuickSort rowstart, rowend, column1, order1, type1 [, …, column10, order10, type10]
    Arguments
    rowstart is a long integer specifying the first row to be sorted. 
    rowend is a long integer specifying the last row to be sorted.
    column1 through column10 are long integers specifying the indexes of the columns to be sorted, in the order in which they are applied.
    order1 through order10 are XORDER constants specifying the sort order of the columns.
    type1 through type10 are XTYPE constants specifying the data type used to coerce column values during comparison. 
    Return Value
    NoneDescriptionThe QuickSort method sorts a range of rows in an XArrayDB object according to the specified column(s). The optional arguments must be specified in groups of three. That is, if you supply a column argument, you must supply its order and type arguments as well. You must provide at least one argument triplet, otherwise a trappable error will occur.ExampleThe following example initializes a single-column XArrayDB object containing date values in a variety of formats, then uses the QuickSort method to reorder the array in ascending order:MyArray.ReDim 1, 4, 1, 1MyArray(1, 1) = DateSerial(1998, 2, 11) ' dateMyArray(2, 1) = "January 22, 1998"      ' stringMyArray(3, 1) = #10/4/1998#             ' date literalMyArray(4, 1) = CLng(#1/27/1998#)       ' long integer ' sort all rows of the arrayMyArray.QuickSort 1, 4, 1, XORDER_ASCEND, XTYPE_DATE ' print the results
    Debug.Print MyArray(1, 1) ' prints January 22, 1998
    Debug.Print MyArray(2, 1) ' prints 35822
    Debug.Print MyArray(3, 1) ' prints 2/11/98
    Debug.Print MyArray(4, 1) ' prints 10/4/98