![]() |
ReportSample 13.1.0 bugs |
Post Reply ![]() |
Author | |
Kite ![]() Groupie ![]() Joined: 10 May 2004 Location: Belarus Status: Offline Points: 35 |
![]() ![]() ![]() ![]() ![]() Posted: 19 June 2009 at 3:35am |
So bad quality of 13.1 version report control or I do not understand anything? I have Win 7 x64 RC, but I do not think that paint bugs related to OS version.
I just start ReportSample, make some clicks and see many paint problems. For example: 1. switch to IconView than switch back from IconView -> header has strange height, 2. turn on WYSIWYG. Than go to Print Preview and try to zoom in or scroll page - every time page is redrawn it draws different columns. 3. WYSIWYG red marker do not depend on horizontal scroller, I move horz scroller, bit marker stays on the same place. 4. I press small triangle on "From" column to hide columns, but after click it stays painted in pressed mode even if I release mouse. 5. Sort triangle is drawn in the wrong place on the column with markup text. 6. Is it possible to see report header in the icon view? 7. In the column's context menu I see markup source instead of column name. Not impressed release at all, I thought it will have many new features, but again only small enhancements on the existing controls. Sorry for my bad english. |
|
![]() |
|
mdoubson ![]() Senior Member ![]() ![]() Joined: 17 November 2008 Status: Offline Points: 1705 |
![]() ![]() ![]() ![]() ![]() |
try this update https://forum.codejock.com/uploads/DemoVersion/ReportControlUpdated.rar
and use a flag wndReportControl.ForcePagination = True
all your columns will be stable and PgUp/PgDn select proper pages and Zoom will keep current page
|
|
![]() |
|
mdoubson ![]() Senior Member ![]() ![]() Joined: 17 November 2008 Status: Offline Points: 1705 |
![]() ![]() ![]() ![]() ![]() |
Kite - are you make any effort to test beta-version of current 13.1 ocx?
Check feature in static fresh app https://forum.codejock.com/uploads/DemoVersion/EditVirtualListIconStatic.rar
also fix wrong VB Sample to use IconView in proper way
in the end ot frmMain Load function put lines
wndReportControl.IconViewRowNumberSetup 3, 0, 1, 20
wndReportControl.PaintManager.RecOrRowNumber = False
wndReportControl.PaintManager.StartRecOrRowNumber = 1 and use simple function to switch modes
Private Sub mnuIconViewSample_Click()
wndReportControl.IconView = Not wndReportControl.IconView mnuIconViewSample.Checked = wndReportControl.IconView End Sub
|
|
![]() |
|
Kite ![]() Groupie ![]() Joined: 10 May 2004 Location: Belarus Status: Offline Points: 35 |
![]() ![]() ![]() ![]() ![]() |
Sorry but I'm not using ActiveX version, I'm using MFC version of Xtreme
|
|
![]() |
|
mdoubson ![]() Senior Member ![]() ![]() Joined: 17 November 2008 Status: Offline Points: 1705 |
![]() ![]() ![]() ![]() ![]() |
Even better - rebuild using fresh updated code from https://forum.codejock.com/uploads/DemoVersion/ReportControlMFCUpdated.rar
MFC Sample code for initialization (onCreate or OnInitialUpdate
wndReport.AssignIconViewPropNumAndIconNum(3, 0, TRUE, 40); wndReport.GetPaintManager()->SetColumnWidthWYSIWYG(TRUE); wndReport.m_bForcePagination = TRUE; toggle function
void CVirtualListView::OnReportIconview() {
CXTPReportControl& wndReport = GetReportCtrl(); wndReport.SetIconView(!wndReport.IsIconView()); if (!wndReport.IsIconView())wndReport.GetPaintManager()->m_strNoGroupBy = m_sGroupBox; elsewndReport.GetPaintManager()->m_strNoGroupBy = _T( "Virtual Mode Icon View");}
Sample code here - uploads/20090704_154040_ReportPaneViewS.rar
|
|
![]() |
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 |