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

Comments

  • I added this feature request into our issue tracker for future reference. You are correct that such a feature is not currently supported.
  • This is an OI caching issue. In all my tools, like SRP Editor, I have significant amounts of code to deal with this. I usually have to maintain my own cache of control sizes so I can reset the SIZE properties during the SIZE event of a form. It does…
  • You can use Send_Event, but you have to keep in mind that all events that come from OLE controls fire the "OLE" event with parameter 1 set to the event. SRP FrameWorks hides this fact, so it's easy to forget this little detail. Try this: rv = Send_E…
  • Thanks for catching this and providing such a thorough explanation. It shouldn't be too hard to fix. I'll let you know when it's available.
  • That was helpful. There was in fact logic that only fired the event when the control has focus, but it couldn't get focus when clicking on a protected cell. In the next release, the event will fire regardless of focus.
  • I think there is more at play here than just this one property setting. In my tests, when I set cell protection to "FULL", I still get all OnClick events.
  • The options are stored in the registry. Someday we plan to move it out of there to make it easier to transport, but for now, here's how to do it. 1. Go to the Start menu and click Run. (Or, use the Win+R shortcut). Type 'regedit' and press Enter. 2…
  • I do call the OI compiler, but I call it through Repository("COMPILE") at the moment. The better errors come from the RTP routine, but that requires a lot of manual repository management that I would have to add. It's doable, but It's something I ha…
  • This is due to the fact that RTI has a special way of compiling code that gives them more errors. The SRP Editor cannot use that special method without sacrificing the ability to compile inherited stored procedures. So, it's something I am aware of …
  • Yes, RC7. It has to do with a bad GUID for the events, which is a slip up I probably made when adding the ability to create the SRPUtil.ocx build.
  • I should have tested it before I probed you further since it absolutely does not work on my end either. I think I know what changed in this particular pre-release build. I'll send you a new pre-release build once I get it all worked out.
  • Can you elaborate on what you mean by it "won't move"? Does it not respond whatsoever or do you see the overlay move but when you release nothing happens?
  • Matt, Wow. I'm impressed you found that. Thanks for the simple example. I've recreated it on my end will tackle this immediately.
  • Regarding the rotate feature, would this simply be 90/180/270 degree rotations or do you need it more granular? The former is a lot simpler to implement, so the latter will take more time. As for thumbnails, I'll look into a save feature.
  • Sorry for the silence. I haven't had a chance to implement this feature yet, but I do appreciate you guys checking in to keep it from falling off the radar. I'll see if I can find a few cycles here soon to get some headway on it.
  • This is a really good idea. I've added it our request features list. I know the drag-n-drop data format for browser images is documented, so all I need to do is teach the picture control to look for it.
  • I just tested some PSDs and am not seeing this. Do you mind emailing me your PSD, just in case PSD version matters?
  • SRP Picture Control 3.0.5 and SRP Controls Pro 3.0.6 are now available for download. This update fixes the Zoom issues.
  • As it turns out, the Zoom property was rounding everything to .25 increments. I fixed this oversight and will notify you when an update is available for download.
  • SRP Picture Control 3.0.5 and SRP Controls Pro 3.0.6 are now available for download. This might solve your scrolling issues. I had found a bug in which focus kept leaving the control, which didn't allow the mouse wheel to work correctly.
  • There is a bug in the current release that prevents the control from getting focus properly when clicked. It is fixed in the next version which will be released tomorrow, hopefully. Note, however, that the SRP Picture Control can only get focus if t…
  • SRP Picture Control 3.0.5 and SRP Controls Pro 3.0.6 are now available for download. The update contains the new OnCustomDraw event.
  • Wow. I'm very impressed. While allowing you to draw on the surface of the SRP Picture Control is a possibility, it's also worth noting that the SRP Picture Control supports EMF files, which you create using the same GDI calls. You'd have to update …
  • Colin, What is it you are drawing? Given that you are changing the cursor, can I assume you are requiring some dynamic interaction? I started to add an event that would allow you to draw on the Picture, but only when the Picture itself redraws. Do …
  • This is a good idea, so I added it to our feature list. I can't promise when it will be released, but I don't see this as being a super difficult task.
  • Are you qualifying the buttons' OnClick events as asynchronous? If not, then try that and see if it helps. Doing a SEND_EVENT(Window, "CLOSE") during a synchronous event is breaking because it forces the form to destroy the button while it's still w…
  • So, this was a tough nut to crack. There is some funky interaction between the animation processes of the shortcut bar and the embedded OI forms. At first, I had some success just disabling animation, but eventually it would hang when I would collap…
  • Unfortunately, there is too much application specific code for me to recreate the crash. I can't set it up the same, nor do I have your event handling logic. I know it's a bit of work on your part, but short of sending me a copy of your app, would …
  • You know what? I completely misread your post. I somehow thought the crash was occurring at startup. Can you send me the code you use to setup the Shortcut Bar? Perhaps there is something unique to that setup that I can manage to recreate on my end.
  • The only time I've seen such drastic behaviors from our controls in on machines that have Anti-spyware/Anti-virus installed that prevent our controls from loading into memory. Some of these applications consider unknown ActiveX controls to be a thre…