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
-
Is your OnClick asynchronous or synchronous? If it's the latter, then the problem is due to the fact that the SRP EditTable has been "paused" during your handling of the event, but when it is finally allowed to continue, the cell that was currently …
-
I appreciate you posting this for others. I'll take a look at the context menu and see why it's acting up.
-
I think that's why I forgot it existed in the first place. Once I create a form with it, I almost never open it again. I will still take a look at it at some point to see what I can do. It's certainly a blemish I'd like to see removed.
-
This is a known side effect of the Ribbon co-opting the form. The problem is that the Ribbon only works by overriding the form it's in. It does something called subclassing. If I don't subclass the form, then you see nothing at all while in the Form…
-
Fixed for next release. You can give it a try now by downloading the latest prerelease build here.
-
It's happening on my end too. I'll take a look and get back to you.
-
The flashing might be due to the Ribbon's attempt to display "hints" when the Alt key is pressed. Are these soft keys using the Alt key?
-
Done. You can download SRPUtil.ocx 4.0.6 RC4 here. Just replace the one you currently have registered and you should be good to go.
-
As much as I would love to reinvent the wheel, the browser control can do this for you right now. If you create an OLE control on a form without a ProgID, then you get a browser control by default, which is the Explorer WebBrowser control. Call the…
-
No worries. This can serve to answer future questions others might have on this topic. Thanks.
-
I doubt FlickerFree is the issue. Setting it back to 0 used to be an issue, but it hasn't been a problem since OI 8 or so.
-
Honestly, I often forget about the AllowXPTheme property. In retrospect, it's shoddy design. Subclassing the other controls is necessary to draw them with the tab background, but they can't be subclassed as soon as the tab is created because the oth…
-
I can't believe those records have been overlooked this long, but you were correct. The RDK was missing the DELETE, INSERT, and REPLACE methods. You can download the official release of 1.6 from the SRP Utilities product page.
-
Setting the SIZE property makes the window visible, so that can interfere with your goals sometimes. If you want to keep it invisible while you resize, the easiest way is to use SRP_Show_Window from our free SRP Utilities. It lets you show and size …
-
There is a lot that goes into making the Ribbon look correct, so icons need to be 32x32 for the large size and 16x16 for the small size. There is no compromise. Most imaging software can shrink your icons more nicely than the Ribbon will, such as Pa…
-
Anything that can be put into a single BASIC+ variable can be set into a hash table value.
-
They are stored in the registry in the following location: HKEY_CURRENT_USER\SOFTWARE\SRP\SRPEditor\\\FAVORITES
-
SRP_List and SRP_Array do not support an equivalent to LOCATE BY, and you can't do a BASIC+ LOCATE BY on them directly. It sounds like you just want an in-memory table. SRP_HashTable might be what you are after. No sorting needed. You just add key-…
-
You need to use the WINMSG event and filter for the WM_WINDOWPOSCHANGING message.
-
GETAXOBJECT was an attempt to support ActiveX Controls with properties that return objects. It doesn't work, so I didn't document it. HASERRORS returns a 1 if the last SRP_COM call generated a COM error. SET_REF is like SET, but it expects an SRP_CO…
-
Fixed for next release.
-
For FrameWorks 16, the main window is now FW_MAIN, not FRW_MAIN.
-
Perhaps it will help not to treat an Entity as a physical person, but as a "working employee." If only 5 or 6 are working at a time, you don't need the other 300+. So, instead of John, Suzy, etc., the entities could be named after a position: Machin…
-
Try 4.1.0 RC3. The problem should be fixed.
-
That is just too much data to be honest. I think the Schedule control might not be the right fit for this unless you choose to break it down. For example, perhaps you only show 1 department or 1 team at a time. With 300+ entities, users are going to…
-
There is currently no means to add new entities. You would have to reset the EntityList property, which will delete all appointments. Entities should not be changing that often. I recommend creating all the entities in advance and hiding the ones th…
-
I clicked for days; still no crash. Email with a GoToMeeting link and a time. There must be some other pattern I'm missing.
-
I'm struggling to recreate this. Can you also supply your ColumnList setup? Maybe there's a specific setup there I'm missing.
-
You want to set the ScrollPos row to the SelPos row.
-
The longer the algorithm, the better. However, why hash the filepath? If you just use that, you have the most unique values already and OI linear hashing takes care of the rest.