Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

KevinFournier

About

Username
KevinFournier
Joined
Visits
2,233
Last Active
Roles
Administrator

Comments

  • Ah, I see. You want to set the QuickTabOut property to false. By default it's on to emulate OI EditTable behavior, which is to allow the user to tab out of the control immediately if the SelPos is on the last row and the last row is empty.
  • If you make all cells selectable and one cell fully protected, which is what you've done in this code, then nothing is editable. If you want the user to be able to edit the first cell, then the protection needs to be set to None. Also, as an aside,…
  • So far I can't repeat the behavior. When I run your sample, the tooltip changes each time. I'm testing on Windows 8. What OS are you testing on? I tested both SRPEditTable.ocx 3.0.5 and SRPControls.ocx 3.1.1. According to your post, you seem to be o…
  • I see. You're right: it's either or currently. I've added the request to our feature tracker, but it won't appear until the next release, which might be a while. For now, can you live with manually selecting the row when the user clicks on a header?
  • I just tested this and I am getting the OnHeaderClick on every header cell. I'd have to see some of your code to discern where there might be a problem.
  • Okay, this is much more data driven than I expected. If it's not too much to ask, can you create a stand-alone window that recreates this issue then email it to me in an RDK?
  • I cannot recreate this issue, so there must be something specific about your setup that I am failing to mimic. Can you email me your setup code for the table? I don't need code for populating it's data. I can simulate that well enough. I only need t…
  • I do intend to get to it. I entered it into my bug tracker, but I don't have an ETA on it yet.
  • The OnKeyNavigationDone event has only one parameter: RepeatCount. I will investigate the "Edit" mode issue and get back to you.
  • SRP EditTable Control 3.0.4 and SRP Controls Pro 3.0.6 are now available for download. This contains the new OnKeyNavigationDone event.
  • In the next update, the SRP EditTable Control will include the OnKeyNavigationDone event, which only fires after the user has finished navigating by holding down a key for at least two repetitions.
  • I had been working on new features and a new SRP ActiveX Control, which is why the next release has been taking so long. I am using this week to focus on bug fixes. Thank you for checking in as I forgot to add this to our bug tracker for some reason…
  • I think the professional term is error box vomit. :-) At any rate, this is a pretty serious issue and I've been able to recreate it on my end. I'll get this fixed for the next release, which we are hopeful will be soon.
  • Not yet. My time is consumed with a lot of projects and this one (with several others) is waiting in the wings. Keep checking in though.
  • This is another known issue. The balloon tooltip I'm utilizing is the one built right into windows. I can tell you that I do not have any caching logic. I've debugged this many times, and I'm always passing the newest text before each display of the…
  • The VScroll event is fired every time windows sends a WM_VSCROLL message to the SRP EditTable Control. Unfortunately, that message is sent as soon as you grab the scrollbar. It's not impossible to add some logic to try and remove what amounts to one…
  • I confirmed this behavior on my end. I should be able to have this fixed for the next release. Thank you for the heads up.
  • Thanks to your thorough analysis and code, I can very easily recreate this. At first glance, there appears to be a bug during the resize of the control in which the rows are scrolled 1-at-a-time instead of 2-at-a-time, which should be the case when …
  • I spent some time today trying to recreate this issue, but I'm not able to do so yet. Can you email me the code you use to initialize the edittable so I can mimic the same number of columns and as well as the columns that are hidden.
  • The SRP EditTable accomplishes validation using a DLL call within RevShell.dll called Validate. This method is similar to IConv, but not an exact equivalent. So, as it turns out, you've discovered that Validate does not work the same on boolean type…
  • I understand now. The SRP ReportTable is ideal if you are just displaying information that user will not edit. In fact, the SRP ReportTable does not allow editing. It's best suited for reporting, hence the name. Both controls are fast, though SRP R…
  • There is no logical maximum. In fact, the SRP EditTable works very hard to be memory efficient. So, there's a very good chance a bug is getting triggered. In the scenario you described, are you populating with live data or does this bug happen even …
  • Sorry for the belated response. I've been swamped getting ready for the Revelation User Conference this week. I was able to confirm that this is indeed a bug. It will be fixed in the next release, which should be ready shortly after the conference.
  • Can I see the values you are using to set the SelectionStyle property?
  • The selection color should always override the background color. Do you have a screenshot of what you are describing?
  • Frank and Mark are correct. Whenever new rows are added, the SRP EditTable conveniently copies the style of the row before it. So, you want to make sure you colorize rows after they have been already added.
  • Are you seeing all the text in the cell on one line, or are you seeing just the first line? Enabling the header's multi-line flag doesn't mean the header will resize automatically to fit all the text. You'll need to set the height of the column head…
  • Colin, My mistake. Version 3.0.3 is the correct version number, however, I'm disappointed to hear that it's still crashing on you. I was able to recreate this before 3.0.3. Perhaps you are doing something slightly different than I am. I'll take ano…
  • SRP EditTable Control 3.0.4 and SRP Controls Pro 3.0.6 are now available for download. The update fixes the scrollbars getting wrongly sized and sometimes leading to a crash.
  • Unfotunately, no. Not currently. I'll have to update the report table to support this, or minimally provide an even that fires when the user changes the grouping so you can respond by reshowing the column.