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,163
Last Active
Roles
Administrator

Comments

  • 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.
  • Mark, Based on your description, I'm betting that the dataset is triggering some kind of error. If that is the case, I'm going to need that particular dataset in order to recreate the issue on my end and fix it. Would it be possible to create a sta…
  • Easy little fix. Forget one little keyword and the code does something else entirely. :-)
  • Let me explain what you're seeing, then we can discuss what could be done. The SRP ReportTable Control is based on a third party C++ control from CodeJock.com. They are the ones that built in support showing formulas within group rows. In order to d…
  • Have you found out anything more on this. I haven't run into it before, and I haven't been able to recreate in my test environment. I can ungroup/regroup quite liberally without issue.
  • Colin, I can't recreate this. I think I need a copy of your table somehow. The best bet would be to email me an RDK (stand alone that doesn't rely on your application environment) that I can run against. Barring that, I need all the properties you…
  • You are not missing anything. It honestly never occurred to me that there would be a desire to sort check boxes. I'll look into a solution for an upcoming release, but as it currently stands, what you want is not supported.
  • For the record, the ColumnCheckBoxAlignment property has been fixed and will work correctly in the next release.
  • This is not a currently supported feature, no.
  • Don is correct. The error has to do with the new support for themes. Apparently, when a theme is set, the preview mode is reset to 0. Since I recently added logic to set the theme during creation after I initialize the preview mode, the result was t…
  • Group rows have a built-in context menu for convenience, but this can be removed by setting the GroupRowContextMenuEnabled to 0. At that point you'd have to add your own context menu and include the collapse/expand options yourself.