Found bug in RC 13.1.0... |
Post Reply |
Author | |
mozaheb
Senior Member Joined: 03 April 2008 Status: Offline Points: 104 |
Post Options
Thanks(0)
Posted: 15 September 2009 at 12:02pm |
Hi All
Please help me for how fix this problem by RC 13.1. example : when i select 8 & 9 record for remove, rc remove all of the records after record 8 & 9. Check attachment20090915_115849_RC_Sample.zip Thanks Amoot Data Processing |
|
________________________________
http://www.amootco.com Amoot Data Processing |
|
Lodep59
Senior Member Joined: 03 April 2008 Status: Offline Points: 203 |
Post Options
Thanks(0)
|
Hi,
Did you try the lastest beta 13.2 ?
Checked with this version, it's OK.
|
|
Product: Xtreme SuitePro (ActiveX) last version
Platform: Windows 7 Ultimate Language: VB6 SP6 (FR) |
|
mdoubson
Senior Member Joined: 17 November 2008 Status: Offline Points: 1705 |
Post Options
Thanks(0)
|
So please add [solved] tag
|
|
mozaheb
Senior Member Joined: 03 April 2008 Status: Offline Points: 104 |
Post Options
Thanks(0)
|
please select rows bye press SHIFT and test with this codes:
Dim Row As ReportRow For Each Row In ListView.SelectedRows ListView.Records.RemoveAt Row.Record.Index Next ___________________AND ______________________ Dim grdReportRow As ReportRow While ListView.SelectedRows.Count Set grdReportRow = ListView.SelectedRows(0) Call ListView.RemoveRowEx(grdReportRow) Wend ListView.Populate |
|
________________________________
http://www.amootco.com Amoot Data Processing |
|
mozaheb
Senior Member Joined: 03 April 2008 Status: Offline Points: 104 |
Post Options
Thanks(0)
|
Hi dear
where is 13.2 download link? Thanks |
|
________________________________
http://www.amootco.com Amoot Data Processing |
|
Lodep59
Senior Member Joined: 03 April 2008 Status: Offline Points: 203 |
Post Options
Thanks(0)
|
Product: Xtreme SuitePro (ActiveX) last version
Platform: Windows 7 Ultimate Language: VB6 SP6 (FR) |
|
mozaheb
Senior Member Joined: 03 April 2008 Status: Offline Points: 104 |
Post Options
Thanks(0)
|
Thanks but not found any download link for 13.2 beta
Please send me direct download link. Regards |
|
________________________________
http://www.amootco.com Amoot Data Processing |
|
mdoubson
Senior Member Joined: 17 November 2008 Status: Offline Points: 1705 |
Post Options
Thanks(0)
|
You need to remove records in opposite order as always in dynamic arrays
Don't use "for each" - it does not work properly in dynamic case - see MSDN topic about "for each"
Use
count = ListView.SelectedRows.Count
for i = count - 1 to 0 step -1
........remove row # i ...........
next
|
|
mozaheb
Senior Member Joined: 03 April 2008 Status: Offline Points: 104 |
Post Options
Thanks(0)
|
Thanks Mdoubson
|
|
________________________________
http://www.amootco.com Amoot Data Processing |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |