Hi,
Seems you have same problem as: http://forum.codejock.com/forum_posts.asp?TID=19020&title=new-row-does-not-sort-properly - http://forum.codejock.com/forum_posts.asp?TID=19020&title=new-row-does-not-sort-properly
If a column is sorted (ASC or DESC) and after call .Populate the grid is sorted again. Can you upload some kind of test project which shows your problem?
Sort columns by code: use SortOrder collection. Here's Sample from CJ (see Help)
Example
[Sorting columns in the ReportControl (Visual Basic)] This sample illustrates how to sort the columns in the ReportControl. If you had 8 columns added to the ReportControl, this sample would sort the columns first by the column at Itemindex 7, then by the column at ItemIndex 2, then by the column at ItemIndex 5.
'This code below will add three columns to the SortOrder collection of coluns. 'This will cause the columns in the ReportControl to first be sorted by column 7, 'which has an index of zero (0) in the SortOrder collection. Columns are first sorted 'in the order that they are added to the SortOrder collection. wndReportControl.SortOrder.Add wndReportControl.Columns(7) wndReportControl.SortOrder.Add wndReportControl.Columns(2) wndReportControl.SortOrder.Add wndReportControl.Columns(5)
'This will cause the column at index 1 of the SortOrder collection to be sorted 'in descending order. wndReportControl.SortOrder(1).SortAscending = False
'Any time you add or delete columns to the SortOrder or GroupOrder collections, 'the Populate method must be called to show the changes in the ReportControl's view. wndReportControl.Populate
|
See Also
mk:@MSITStore:C:%5CProgram%20Files%5CCodejock%20Software%5CActiveX%5CXtreme%20SuitePro%20ActiveX%20v15.0.1%5CHelp%5CSymbolReference.chm::/XtremeReportControl~ReportColumnOrder.html - ReportColumnOrder Collection | mk:@MSITStore:C:%5CProgram%20Files%5CCodejock%20Software%5CActiveX%5CXtreme%20SuitePro%20ActiveX%20v15.0.1%5CHelp%5CSymbolReference.chm::/XtremeReportControl~ReportControl~SortOrder.html - ReportControl SortOrder Property | mk:@MSITStore:C:%5CProgram%20Files%5CCodejock%20Software%5CActiveX%5CXtreme%20SuitePro%20ActiveX%20v15.0.1%5CHelp%5CSymbolReference.chm::/XtremeReportControl~ReportControl~GroupsOrder.html - ReportControl GroupsOrder Property
Example
mk:@MSITStore:C:%5CProgram%20Files%5CCodejock%20Software%5CActiveX%5CXtreme%20SuitePro%20ActiveX%20v15.0.1%5CHelp%5CSymbolReference.chm::/XtremeReportControl~ReportControl~GroupsOrder.html - GroupsOrder Sample
------------- Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2
Language: Visual Basic 6.0
Zero replies is not an option....
|