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
-
So, the data being returned is the data intended to be returned. It is the entire visible rectangle of an item. I take it you desire a different metric. What dimensions are you after?
-
Here's some test code the successfully removes the second element. Note that, when you remove elements in an array, the array's size is not altered. Instead, the element is converted to null. JsonString = '{' JsonString := ' "_embedded": {' Jso…
-
Prerelease version 4.0.1 RC12 fixes the GetItemRect method. Download it and give it a try.
-
Colin, I am not able to recreate this issue with the RDK you sent to me. The embedded panel always stays put. Now it's time to figure what's different between our systems. Are you using Promoted Events anywhere? Version of OI? Version of Windows?
-
SRP_Path is simply a string manipulation library. Directory manipulation exists in OI already, which is why I didn't create anything for that. Granted, it could be made simpler.
-
This was fixed in version 1.5.5. The current release is 1.5.6. For future reference, there is a version history on the wiki. We put a link to it on the product page as well.
-
I'll be honest, I really want this feature for myself. I've been experimenting with the Solarized color scheme in other editors, and it really is so much easier on the eyes. However, it's not as simple as that one line of code. Scintilla doesn't ha…
-
I like this idea, since we are getting more theme conscience in FrameWorks. It's not currently supported, but I'll add it to my todo list.
-
Set the LinesEnabled property to 0.
-
Thanks a ton. The RDK quickly revealed my myopia. I was looking for oddities in the keys, but never tested keys with lower case letters. Internally, the SRP Tree stores keys in upper case. The SendItems method wasn't making your keys upper case befo…
-
Well, then. I'm glad we're out of the woods. Let me know if anything changes.
-
I think Mark's suggestion is worth looking into. If, however, you confirm that delimiters are not sneaking in, then I will ask you to create an RDK that I can run (that does not depend on application specific code or tables). This requires a little …
-
I'm glad that is working for you. If I had to guess why things were not working, it was probably due to the Ribbon control. It would explain why it was crashing for you but not for others, since the control is not widely used yet. I've been polishin…
-
Sort of. No matter what you set CellEditMode to, double-clicking still puts a cell into edit mode. The DblClickToEdit property was added to disable that feature. You're problem was that single clicks were putting the cell into edit mode, which is du…
-
I did some research online, and the blank screen issue has happened to others. Ask your IT department to try the following fix: Delete the FontCache3.0.0.0.dat file located (in Windows 7 64-bit) at C:\Windows\ServiceProfiles\LocalService\AppData\Loc…
-
Double clicks are a pain, mostly because of Microsoft standards. If the cell is in the edit mode, then double click means, "highlight a word". In order to for the double click event to fire, the cell cannot be in edit mode. Pressing ESC gets you out…
-
I'm afraid this leaves me at square one. Can you post the code you use to set up the tree? Maybe there's a property setting somewhere that triggers this condition.
-
I'm having trouble duplicating this issue. I even debugged the SendItems code, and it always does a check to see if the given key exists before adding the new item. Can you explain what you mean by "use strings as item keys"? Was there situation in …
-
I wish there was a clever way for this. I typically just use cleanup code as you have done. One idea, which I haven't tried, would involve Promoted Events. Perhaps you could flag control A, B, and C during the CREATE event of the form to have certai…
-
Thank you so much for all your effort. The WinDBG didn't help in this particular case, but that doesn't mean it was a wasted effort. It just so happened that while the crash was happening in the place identified by WinDBG, it was due to problems in…
-
Check out the Utility TEXTRECT service.
-
This tells me that the font was too tall to fit the cell, which causes the text measuring algorithm to decide that ellipses are warranted.
-
I was under the impression you were running WinDbg alongside OI already. It's not a path worth spending too much time on. The main issue is that I need to recreate it in my environment so I can see the offending code first hand. Are you only using …
-
Can you let me know the Windows OS, height of the cell, the font being used, and anything else you think could be relevant?
-
The callstack dump, unfortunately, doesn't tell us much. It might not even be a fatal loop since those low level methods are often called when transitioning between threads or when OI is calling an OLE method. The problem is that WINDBG doesn't have…
-
This is happening with the SRP Editor? Perhaps reinstalling it on the copy of OI will help? It might be that one module is not as up to date as the others.
-
Download 1.5.6 RC1 here. The new service is "PathToUnc". I haven't documented it in the Wiki yet. Note that this service will just return the original path if it can't find the remote resource for any reason. The Win32 API is finicky when it comes t…
-
I'll make an official release later today, but if you need to use that version, it's safe. The only change from the previous release was the fix I made for you. The official release will have a new tool, but there will be nothing different with rega…
-
You say you can use any older SRPControls.ocx? What version are you using now that breaks? What older version works? I can't offer much advice from a software perspective because this looks suspiciously like an IT issue. Minimally, there needs to b…
-
That was a bug. I noticed the same bug with List and Array as I was working on them this week. Forgot to check HashTable. Download 1.5.5 RC6 and let me know if that's better.