[BUG] V13.3.0 Issues [61] Solved [31] |
Post Reply |
Author | ||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
Posted: 28 February 2010 at 8:59am |
|
Hi,
This list contains problems/bugs regarding version V13.3
I believe creating a list is best thing to do, so other members are able to see what is wrong (don't get me wrong, RC is one of THE best CodeJock control, so it's not for pointing fingers) I hope many members will reply inhere so we can have a bugfree V14.0 Please do !!!
If you have a problem and it's hard to explain, please upload test project (it will be easier to describe issue)
Thanks a lot in advance
EDIT: I made some changes in this post to make it more readable. I replaced hyperlinks with an icon so you are able to see that there is a separate thread and clicking icon opens the post in new window. (btw bad choise of the icon but I can't change it because I can't see links anymore, nevermind...)
ISSUES:
REMARKS:
IMAGES: 13a
REQUESTS:
|
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
1.
Set Column = wndReportControl.Columns.Add(COLUMN_SUBJECT, "Subject", 180, True) Column.MaximumWidth = 300 Column.AutoSize = False 2. i'll look into it |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
OK, when AutoColumnSizing = False it's working.
|
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
OK I fixed #2.
The MaximumWidth logic is kinda messy, will need time to clean it up. |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
Just installed 13.3.1 (updated from 13.1)
ShowItemsInGroups doesn't work anymore... I tried adding a redraw but alas.
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
It seems to work when you set property wndReportControl.Columns(0).Sortable = True (also set .Groupable = True)
I will add this to the list, thanks for reply
|
||
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.... |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
Aaron. Tried with the extra settings, but it still doesnt work. It's crucial it does. I've reverted to 13.1.. 13.3 is useless to me.
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
It should work @keepITcool
With Me.ReportControl1
.ShowItemsInGroups = True With .Columns.Add(.Columns.Count, "Test 1", 100, True) End With
End With
This doesn't:
With Me.ReportControl1
.ShowItemsInGroups = True With .Columns.Add(.Columns.Count, "Test 1", 100, True) .Sortable = False End With End With
Otherwise show me your settings when adding columns...
|
||
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.... |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
@Aaron.
It's part of a form with 40 controls & 1500 lines of code.. I allow the user to change ShowItemsinGroups based on a togglebutton after the report is populated).. When I add the columns (in form load) ShowItemsinGroups is false. My code ran fine since version 12.. all thru 13.1.... I then tried 13.3 and it doesn't work. .. to me that means a bug.. and i have no intention of changing my code to circumvent a new bug.
Option Explicit
Sub Build()
With Me.ReportControl .Columns.Add 0, "Row", 50, True .Columns.Add 1, "Col", 50, True End With End Sub Sub Fill()
Dim n& With Me.ReportControl .Records.DeleteAll For n = 0 To 999 With .Records.Add() With .AddItem(n) .GroupCaption = "RowGroup" & n \ 10 .GroupPriority = n \ 10 End With With .AddItem(n \ 5) .GroupCaption = "ColGroup" & n \ 20 .GroupPriority = n \ 20 End With End With Next .Populate End With End Sub Private Sub Check_Click()
With Me.ReportControl .SortOrder.DeleteAll .SortOrder.Add .Columns(0) .ShowItemsInGroups = Check.Value End With End Sub Private Sub Form_Load()
Build Fill End Sub |
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Just tried your code, it works just as I expected. Do you have a video of the correct\incorrect behavior? |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
It works in 13.1 but it won't work in 13.3.1 (tried non-unicode and unicode) OCX dated 3-3-2010 15:16
Why do you want a VIDEO? don't you believe me? i toggle the checkbox and the grouprows refuse to appear. simple as that.
I'm running VB6 on a 64bit Windows7 ...
Where can i mail the two exe files?
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Aaron, i attached a fix for #3 in issuetrack (#24109), please try it
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
No, I DO believe you, but can't help if I can't reproduce. Mail to support@codejock.com please. I am also in Win7 x64 and all versions of VS :) |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
I'm converting an existing report to "Virtual" doing my own grouping/sorting etc. I developed in 13.1 and all was fine...(finally I can display 60.000 items without using 300Mb) .. but the new MergeCells capabilities were(are!) tempting so I can draw my "virtual grouprows" on the entire row instead of the first column only.
So I tried 13.3.. and not entirely to my surprise I soon ran into more bugs.. I've set a TreeColumn to be able to expand/collaps my (homemade) groups. However the Treestructure (in my case dots) isn't drawn.. at least not on the visible part of my report..the ColumnAligment setting is disregarded.. all text in the treecolumn is Leftaligned.
Again I (had to) revert to 13.1 and never got round to merging cells....
Don't get me wrong.. I appreciate your efforts to improve the report.. but I dont want to be a beta tester. If controls are RELEASED then someone should do some quality control.
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
Hi Aaron,
additional issues needed for next release (Version 13.3.1):
when HeaderAlignment = xtpAlignmentRight Or xtpAlignmentIconLeft, the icon is placed on the left of the text and not on the left side of the column as in previous version does.
When the sorticon is visible, DrawSortTriangleAlways = True and the column is too small to draw the entire text, the place from the sorticon is calculated twice, what i meen is, the room between the three dots and the sorticon is as wide as an icon. The text is than too short (i guess).
Than, what i don't understand is the differenc between DrawSortTriangleAlways and DrawSortTriangleStyle.
If i set DrawSortTriangleAlways = true, it won't work.
If i set DrawSortTriangleStyle = xtpReportDrawSortTriangleAlways, that works.
Why do i need to properties for this ?
When i set ShowNonActiveInPlaceButton = True, the buttons are shown correct, but this is not usefull.
The user must click twice on the buttons. The first click fires RequestEdit-event, the second click fires than InplaceButtonDown-event.
I think, the reportcontrol must fire then InplaceButtonDown immediatly after the RequestEdit and do the work.
At the moment, the ShowNonActiveInPlaceButton is not functionable for an user.
|
||
Guy1
Newbie Joined: 04 May 2006 Status: Offline Points: 8 |
Post Options
Thanks(0)
|
|
Hi Aaron and Baldur,
I have also found that the behaviour in v11.2.1 for drawing the column sort triangle can not be duplicated in v13.3.1 regardless of any combination of the report control paint manager properties DrawSortTriangleAlways (TRUE or FALSE) or DrawSortTriangleStyle(Always, Never, Default).
The problem we see is when the column alignment is right justified, the sort triangle does not appear regardless of how wide the column, or how small the column caption is. This was working fine, at least in our opinion, in v11. We upgraded from v11 to v13 and never used v12, so I don't know when the change was introduced.
I don't know if this is a bug, or an intentional enhancement. Either way, it would be nice to see the sort triangle, when there is enough room for it, regardless of the column alignment.
We are using Xtreme SuitePro ActiveX v13.3.1
Thanks,
Guy
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi Guy,
Thanks for sharing this. In my opinion the entire column management has been turned upside down since last few versions. If you look at my list of issues more than 50-75% is about columns and their properties. Said enough? I really hope CJ will fix these issues in next version.
Well, if you have more issues please share them in this post and I will keep this post updated if there are fixes / solved issues.
Thanks
|
||
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.... |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
Testing 13.3.1 CanEditCheckBoxItem .. setting it true or false seems to make no difference.
Just wondering what a) it does b) is does not c) is supposed to do.
Documentation is not very helpful but I expected this property to prevent user to click a checkbox for the item.
(while allowing the display of "enabled" checkboxes... setting the column or item's .Editable=false prevents edit, but shows "dimmed" checks.
Addendum:
Circumvention: Cancel the user's actions in the ItemChecked event e.g. Item.Checked = Not Item.Checked
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
.CanEditCheckBoxItem = True + .Editable = True: You are able to edit cell with checkbox , ie you can also enter values into cell
.CanEditCheckBoxItem = False + .Editable = True: You aren't able to edit cell with checkbox but you can still check/uncheck checkbox
.CanEditCheckBoxItem = True + .Editable = False: You aren't able to edit cell with checkbox and checkbox is disabled
Hope this helps
|
||
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.... |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
in my book two booleans makes 4 combinations... Maybe:
.CanEditCheckBoxItem=false +.Editable=false... You aren't able to edit , you aren;t able to check/uncheck, but the damn things aren't dimmed.
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
I don't know what is wrong but with my test it's working as should. See attached test project
|
||
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.... |
||
keepITcool
Groupie Joined: 08 April 2009 Status: Offline Points: 36 |
Post Options
Thanks(0)
|
|
I want a checkbox just for display.... i set the checks in code: user cannot change.
it just looks funny when the checkboxes are dimmed ( so i want them to DISPLAY undimmed )...
I've solved it by cancelling his actions in the event handler.
I'm VERY happy with the fancy glyphs :-) Didn't know that trick => going to implement that NOW.
Addendum: hmm.. no fancy glyphs, didn't relialize that the ImageManager was a control on the form... have enough to distribute, can do without the commandbars. .. but if I have time i will load the icons into my "resource blob".
|
||
Xtreme :SuitePro (ActiveX) version 13.1.0
Language: VB 6.0 Platform: WinXP/Win7(32+64bit) |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
If you change icons for disabled checkboxes (ImageManager Icons) and use same icons as for enabled checkbox you don't have "dimmed" checkboxes
Following Icons in ImageManager with their index
2 = Unchecked
3 = Checked
4 = Unchecked (disabled)
5 = Checked (disabled)
Just copy ImageManagerIcon with index 2 > 4 and 3 > 5 in my uploaded test project and set .Checked in code
|
||
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.... |
||
jpbro
Senior Member Joined: 12 January 2007 Status: Offline Points: 1355 |
Post Options
Thanks(0)
|
|
Hi Aaron, could you please add these issues to your list
1) Automatic tooltip shows unnecessarily when cell text contains newline characters 2) Automatic tooltip doesn't support newline characters (appear as boxes) http://forum.codejock.com/forum_posts.asp?TID=14059&PID=56485#56485 Thanks a lot, and thanks again for maintaining this list! |
||
Product: Xtreme SuitePro (ActiveX) version 16.2.6
Platform: Windows XP - SP3 Language: Visual Basic 6.0 SP6 |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
8. When .IconView set to False the column order changes (everytime!!!)
Using our report sample and the option from the main menu it seems the column order stays the same...steps? |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
I finally tracked down the issue, the fix was actually in response to Aaron's issue #22055. Mark's fix made is so that setting ShowItemsInGroups will not immediately take effect. It will only work once you click on a column. keepITcool and Aaron, I'm attaching a new OCX to your issues so you can make sure the new OCX works as you expect |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
Here is a test project.
|
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Thanks for the sample. Just fixed this. Write to support if you want to test it. |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
I submitted a fix for this in issuetrack, did it not work?
11.ShowItemsInGroups doesn't work anymore, seems you have to set property wndReportControl.Columns(0).Sortable = True + wndReportControl.Columns(0).Groupable = True otherwise it doesn't work. I will try this with previous version because I think this is not the only problem... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Aren't #16 and #8 the same? Internally these columns are just hidden, the same as the normal columns are just hidden when iconview is set. With Aaron's sample I am sure this is fixed now. There was a step in there that was only intended for row # columns that was getting called for iconview as well.
Again, write to support for the fix. |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
#17 should also be fixed, Aaron's sample showed this too, now it is fixed.
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
can you modify your sample to show this?
With IconView = True, sometimes the vertical scrollbar is showing but it's disabled... I have a contextmenu and after rightclick all items disappear. I think RC is trying to scroll to next row (internal) like with ordinary rows and because of IconView there isn't a last row??? Scrollbar is still disabled and you cannot see the icons, only resizing RC will restore this behaviour. |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
Seems this is combination of SkinStyle and ReportControl. I created sample to select a different skin to see different behaviour.
Steps to reproduce:
Just try this with a skinstyle and you will see that scrollbars are disabled.
Thanks
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
I didn't see that you uploaded new OCX So I created a test project for this (before registering new OCX) I tried with V13.3.1 and I don't see what is wrong. It works as expected or I'm missing something...
@SuperMario: What did you fix in new OCX?
@keepITcool: please test this with uploaded project and report back the results.
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
No they aren't the same. Here's is test project to demonstrate
Steps:
@SuperMario: Again, write to support for the fix.
@Aaron: If I submit ticket only for testing fixes you can upload new OCX everytime without having me to write to support everytime Thanks
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
I added SetIconViewToDefaults to internally reset all the values associated with IconView\Row#Column. You will need to call this if you remove all columns. It will also set IconView to FALSE. Me.ReportControl1.Records.DeleteAll Me.ReportControl1.Columns.DeleteAll Me.ReportControl1.SetIconViewToDefaults Me.ReportControl1.Populate |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
from an earlier post "I finally tracked down the issue, the fix was actually in response to Aaron's issue #22055. Mark's fix made is so that setting ShowItemsInGroups will not immediately take effect. It will only work once you click on a column." He was right, old behavior as soon as you set ShowItemsInGroups it would IMMEDIATELY perform this for you, after mark made changes you had to click on a column first. |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
#31, please read my explanation:
https://forum.codejock.com/forum_posts.asp?TID=16490 I am not sure how else it should work? |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
I will remove # from the filenames, I did this just to recognize issue number better and if I'm not mistaken you use it in IssueTracker as well. But I will use underscore, OK?
Thanks for replying in this post, just a few issue and we are ready for V14.0
|
||
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.... |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
If I look at your explanation I would say you are right, why would I remove an already grouped row from another group? It surely belongs to that group otherwise it wasn't in it, you are right about that. BUT does it also mean if I drag&drop CHILD rows that belong to a PARENT row (not grouped ones) the drop doesn't work either? I think this should be possible, don't you think? Just like you are dragging&dropping TreeView items (like MS Explorer...) We will use Fabian's post to discuss this a little further and ask Fabian what he thinks.
Thanks
|
||
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.... |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
Please look into #22055, I replied on last comment of Mike.
If you need test project again, just let me know
|
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
#28 and #29 should now be fixed, including BOTH bugs from the #29 thread.
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
#14
Added wndReportControl.PaintManager.SortByDecreasingText wndReportControl.PaintManager.SortByIncreasingText |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
#15 Tooltip columns shows only <Column name> even when .Sortable = true.
I am not sure what you expect here...the column must actually be sorted to the SortBy text to be used. |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
If I'm not mistaken the tooltip was ALWAYS showing: .SortByText + name of column (in previous versions...)
Even when column isn't sorted yet. That's why I noticed this. But if you want me to test this just say so
Thanks
|
||
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.... |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
#28 works OK
I guess .ShowIconWhenEditing True has been added to get #29 working, right?
Question: What does .IsShowIconWhenEditing do?
Thanks |
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Yes, ShowIconWhenEditing was added to fix #29. Since Mark's "fix" was over a year ago there is a good chance some report user's do not want\expect an icon to be visible while editing, so the next best thing is to add an option to change this.
IsShowIconWhenEditingis just used so you can check to see if the icon will be shown while editing. It is just there so you don't have to keep track whether you called Report.ShowIconWhenEditing True. |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
Why added two methods, why not one property (read/write)?
Thanks
btw could you remove all senseless replies in this post (also the ones which you fixed already)? The rubber of my mousewheel has been completely worn out from scrolling up and down this post Also check a few replies I did which you haven't replied to
|
||
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.... |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
It seams a hard work, to solve all the problems. I need only issue 4 to be solved:
SortIcon doesn't show when .HeaderAlignment = xtpAlignmentRight
Only a little bug:
Sometimes, my users create data with more then 1000 columns, each 100px width!
In this case, the horizontal scolling does not work correctly.
I can't reach the last column with the scollbar, if i move the scrollbar with mouse, the position jumps everytime to the first column.
To prevent flickering if i make many changes in the reportcontrol, i use the windows-function:
SendMessage(hWnd, WM_SETREDRAW, 0, 0&) to Lock the updates
SendMessage(hWnd, WM_SETREDRAW, 1, 0&) to unlock the updates
It works fine, but if the window is locked, the Navigator.MoveToColumn doesn't work. I must first unlock the window, but than i have a flicker again. Also, i use customdraw-items and each item is than be drawn twice, first at unlock window, second at MoveToColumn.
FocusedRow property can be set and works as expected, FocusedColumn can be set but has no effect (thats the reason i use the navigator).
Also EnsureVisible-Method has no effect.
|
||
Fabian
Senior Member Joined: 22 November 2004 Location: Switzerland Status: Offline Points: 336 |
Post Options
Thanks(0)
|
|
Hi Aaron
Point 31 (Drag&Drop if grouped does nothing) seems to be 'by design'. RC simply throws Drop event and it is up to the developer to rearange rows.
|
||
Product: Xtreme SuitePro (ActiveX) version 16.2.3
Platform: Windows 7 (32bit) Language: Visual Basic 6.0 / SP6 |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
Hi Aaron, I'm here .
Does Codejock anything at the reportcontrol?
Now i have upgraded to reportcontrol 13.3.1 with some workarounds (e.g. Sorticons), but now i use first time the treeview and have new little errors: If you use Column.Alignment = xtpAlignmentIconRight
the +/- Button will also aligned on the right.
If i than use
With Item.ItemControls.AddButton(0)
.SetIconIndex xtpReportItemButtonStateNormal, 1149 .Themed = True .setSize 16, 16 .Alignment = xtpReportItemControlRight End With the +/- Button is hidden and i can't expand/reduce the row any more.
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Don't worry, before 14 we will address this list.
|
||
Smooky
Newbie Joined: 29 April 2010 Status: Offline Points: 2 |
Post Options
Thanks(0)
|
|
About property column (header) maximum width (Issue #1 in Aaron's list), there need turn off autosizing option and then maximum width property work correctly.
Example set max width 100 for column #0 (C++): m_wndReportCtrl.GetColumns()->GetAt(0)->SetAutoSize(FALSE); // cancel column autosizing m_wndReportCtrl.GetColumns()->GetAt(0)->SetMaxWidth(100); // set maximum width constraint |
||
Smooky
Newbie Joined: 29 April 2010 Status: Offline Points: 2 |
Post Options
Thanks(0)
|
|
Now automatic tooltips supports new line characters in text as specific case of multilined tooltips. (Issues #32 #33)
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
Yes, SuperMario already explained you have to set AutoColumnSizing = False in order to get this working. OK, that's fine with me but what about my remarks?
Thanks for solving #32 & #33 |
||
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.... |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
When can we calculate with a new version ?
I ask for, because my current subscription expires in November 2010.
|
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
New importend BUG in ReportControl 13.3.1!
If i type in the editfield of the reportitem a %-Sign, it will be accepted.
But if an item already contains %-signs, this disapears on start edit.
You can test this behaviour in the codjocks examples.
I need an urgent solution, because the %-sign is important for my application.
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Actually behavior was like this since April 2009. The idea was to strip "%" from all non-text items, which works fine in MFC, but breaks it in COM. We fixed this for the next release. |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi Baldur,
I seem to miss this one... I tried to reproduce this but I can't. What should I see or do to get this?
Thanks
|
||
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.... |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
It's so as described.
Add a column as treecolumn and set the iconalignment.
If you than add records and childrecords, you see the tree-button on the right.
In the second step add a itemcontrolbutton to the parentrecords, align them to the right and the treebuttom disapears.
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi Baldur,
I could reproduce your issue but next time you have to upload a test project... CJ wants one anyway and I'm only the messenger not the issue test project creator But I will add this to the list, thanks.
|
||
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.... |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
Thanks Aaron, i will remember this at next issue.
But a simply question:
Does MergePreviousCells not work on headerrecords or footerrecords ?
I would like this feature to combine HeaderRowItems to draw combined HeaderCaptions.
It would also be nice to support Gradient-Colors on RecordItems like Columns.
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi Baldur,
My first guess would be: MergePreviousCells isn't supported with headerrecords / footerrecords
As a lot of other features like:
I don't use header/footer records so I don't know for sure, but the ones in above list don't work...
|
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
42 If %-sign is typed into a ReportItem, it will be accepted. But if an item already contains %-signs, these disappear on start edit.
I fixed that back when reported :) |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
Hello,
how can i get this fix ?
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Also 38 is already fixed
|
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
13.4 comes out next week :) |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
37 I added properties to help you customize this, the last post from Tobi is more of a feature request than bug, so I consider that resolved and have Tobi's request on our TODO list (after all other bugs fixed of course)
|
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
I have now installed the release 13.4.0, but the drawing of headers with icon and sorticon is not correct.
The width of the column is wide enought, but the text is added with three dots and the space between the text and the sorticon seams the with of the icon.
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
I noticed you released V13.4 but what about other issues? Are they going to be solved for V14.0?
There are a few unanswered questions/remarks in this post, could you reply on these as well?
Thanks a lot
|
||
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.... |
||
Baldur
Senior Member Joined: 22 November 2006 Location: Germany Status: Offline Points: 244 |
Post Options
Thanks(0)
|
|
Additionally i have now a new problem.
Some Programs ar delivered with 13.3.1, one new program comes now with 13.4.0.
Because the class-id of the ocx-controls are not changed, the old programms will call the new ocx's. Normally this would by fine, but now i get a license-error at runtime, because the integrated license from 13.3.1 is changed to 13.4.0.
So in this case, the versions 13.3.1 and 13.4.0 could not be installed at the same time !!!
Now i must compile all projects to the new version, but the vb6-ide don't recognise the new version so i have manually update all projectfiles with the new 13.4.0 version.
Thats really heavy.
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
Jason: Tooltip supports vbNewLine in V13.4
SuperMario: I don't get automatic tooltip when mouse is over reportitem
btw I did submit few issues in IssueTracker (see topmost post)
|
||
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.... |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
It works OK, but you have to set wndReportControl.AllowColumnRemove = False otherwise you will still "loose" (already dragged to groupbox) columns. Is this correct? It's not accidentally implemented this way?
Thanks
|
||
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.... |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi SuperMario,
In release notes: Set column maximum width constraint now works correctly independent of column autosize option
I tested this and it seems that column will be resized beyond MaximumWidth value. I would have guessed, if MaximumWidth is reached, the column wouldn't be resized anymore...
Please use test project to see what I mean and try different settings (AutoColumnSizing and AutoSize in menu) and notice unexpected behaviour (for me it looks that way and I don't know what to expect anymore so I'm asking you)
Thanks
|
||
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.... |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
I had to give it a try with V13.4.2
Well to be honest, it's working as should
If you allow your users to edit the 'cell', the edit portion has to be selected, right? If you only allow user to select one of the options inside combo, you have to set .AllowEdit = False. This forces the combo to be visible. If entire column should do same set values in Column collection
With Me.wndReportControlStatus
.AllowEdit = True 'Should be True otherwise you can edit anything With .PaintManager .ShowNonActiveInPlaceButton = True End With With .Columns With .Add(0, "Column 1", 100, True) With .EditOptions .AllowEdit = False 'Only set if you allow typing in 'cell' .ConstraintEdit = True 'Should be True otherwise your selected value from combo isn't set .AddComboButton True .Constraints.Add "Item 1", 1 .Constraints.Add "Item 2", 2 .Constraints.Add "Item 3", 3 End With End With End With Dim i As Integer For i = 1 To 2 With .Records.Add .AddItem 1 .AddItem "Some value" End With Next i .Populate End With I think this is what you mean... I will add [SOLVED] to this issue
|
||
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.... |
||
McKloony
Senior Member Joined: 09 January 2007 Location: Germany Status: Offline Points: 340 |
Post Options
Thanks(0)
|
|
Could you please also add the following bug to the list:
|
||
Product: Xtreme SuitePro (ActiveX) 16.2.5
Platform: XP / Windows 7 Language: Visual Basic 6.0 SP6 |
||
ABuenger
Newbie Joined: 02 February 2006 Status: Offline Points: 1075 |
Post Options
Thanks(0)
|
|
This has already been fixed. |
||
Codejock support
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Marcus: This post is about V13.3 bugs/problems, I don't intend to add any other bugs from other version too. I may hope that every single bug is tackled as soon as a members posts it. Please don't force me to create such list again... ever...
Andre: When will this list be addressed? There are a few 'problems' remaining Would be nice if these bugs/problems are solved in next release.
Thanks
|
||
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.... |
||
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
|
Please be patient :) Things like #44 required many hours of re-write. You are in good hands now, so rest assured they will all be addressed. |
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi,
Andre: Are some of these issues on your TODO list as well? Or are there already issues solved in new version? Any communication will be greatly appreciated
Thanks
|
||
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.... |
||
ABuenger
Newbie Joined: 02 February 2006 Status: Offline Points: 1075 |
Post Options
Thanks(0)
|
|
Hi Aaron,
a lot of the issues from the list have already been fixed. For example these: #44 MergeCells feature doesn't work correct #58 With Print & PrintPreview, MergedCells don't show anymore Andre |
||
Codejock support
|
||
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
|
Hi Andre,
Why don't you edit the post (same as SuperMario did in the past) and add if it has been solved or reply on this post and I will do it for you.
Did you solve only those two or are there more? I (and maybe other members) would like to know if you did.
btw there are a few questions/issues left, do you intend to work on those too?
Thanks
|
||
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.... |
||
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 |