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

  • Oops. C++ indexes at 0. Yikes. Guess what. That means that, if a JPG with orientation 8 was ever used... crash. Could that explain your crash Chris? If so, mea culpa. I prostrate myself before you and beg your forgiveness. Download 4.0.3 RC1
  • That is consistent with Socket specifications. When receiving on any socket, the application waits until the requested amount of data is received or the socket disconnects.
  • Revised. Thanks. Truth be told, I'm actually on site at a client's, so I couldn't really test it. Glad it worked.
  • I've been embedding forms daily (using forms containing the SRP Picture control) for months now on a project. I also just tested multiple forms, but nothing crashed. This was with 4.0.2 RC11. An RDK that recreates the issue would help me isolating t…
  • Download 1.5.8 RC3. This version includes the "RECEIVE" command. It works like so: BytesToRead = 10 Data = SRP_TcpClient(Handle, "RECEIVE", BytesToRead, BytesActuallyRead) You pass in the number of bytes you want to read, the BytesActuallyRead va…
  • This appears to be my fault. I was using a DLL definition keyword that doesn't work the way I expected. Admittedly, the SEND service never got fully vetted since we only ever needed the SEND_SES service. At any rate, download and install SRP Utiliti…
  • What are you communicating with? SRP Engine Server? Something else?
  • Two more things to try: 1. Set the FlickerFree property to true. If that doesn't work... 2. Perhaps OI's gradient fill is overriding my code. You can get around this by placing another tab control on the form (anywhere) and making it the first cont…
  • The tab control subclasses labels to redraw their backgrounds to match the tab control. There is a lot of smoke and mirrors to achieve this. Sometimes the form's control order (tab order in the Form Designer) can trip this up. Try ensuring the SRP T…
  • If I follow these steps: * Run OI * Open SRP Editor * Ctrl+O * Choose TEST and press Enter to open * Do Save As... * Enter TEST_RENAME and save * Close SRP Editor * Close OI * Run OI * Open SRP Editor * Ctrl+O Both stored…
  • Matt - For the time being, there will not be a property to disable this. Even though it's metadata, technically, a JPG with the orientation flag means the image is supposed to be rotated. That's the proper way to load it. Since it only happens with …
  • I just noticed that the rotation was incorrect in 4.0.2 RC4. After further study, there is a complicated list of operations, sometimes both a rotation and a flip is needed. SRPControls 4.0.2 RC5 should be correct.
  • The issue is this: JPEGs sometimes have metadata (also called EXIF metadata) that is attached to the image when the camera takes a picture. Modern cameras have sensors to determine the orientation of the camera, and that orientation is saved with th…
  • Would you mind sending the picture to us? Maybe your setup code for the Picture control? I've never witnessed this behavior before, and we use pictures of that proportion all the time.
  • My apologies. I grabbed the wrong RDK when creating the downloadable zip file. Please download this zip file and install. That should fix the highlighting issue, which usually occurs when a new SRPUtil (4.0.2 and later) is used with an older SRP Edi…
  • This fix requires both a new RDK and new SRPUtil. SRPUtil.ocx 4.0.3 RC1 is here. Make sure to re-register it. SRP Editor RDK 2.8.1 RC1 is here. I look forward to your feedback.
  • Thank you so much for taking the time to narrow this down. You are correct. My internal loop was terminating too early. The next release will be more accurate. I'll post a link this evening (I'm at a client's right now) to a prerelease build if that…
  • I just remembered that this is a feature you can turn on/off. In fact, you'll see in your screenshot that you have "Ignore VNAVs in function parameters" checked. Uncheck it and you should get the VNAV again.
  • Is the VNAV supposed to be on FILE_BK_ORDER? If so, this is an intentional feature of the SRP_Editor. The SRP_Editor ignores VNAVS if the variable is used as a parameter to a function. This is because there are many times programmers pass unassigned…
  • Actually, let me elaborate, because I might have spoken too quickly. The SRP Editor loops through each VNAV returned by BLINT, checking to see if any of them exist in one of the inserts. If so, the VNAV is ignored. It does this because once upon a t…
  • The SRP Editor explicitly ignores variables that appear in Inserts due to BLINT's tendency to report false negatives.
  • Version of OI? Version of Windows? If I can't recreate this, the only other option is to get copy of the offending system.
  • I simply can't explain the 0D0A behavior. There is nothing being changed on F1. All it does is get the selected text, place it into a URL, and do a shellexecute "open" on it. If you don't have promoted events, then why are the about boxes colored? I…
  • Are these both copies of the same application? If not, is the offending application using promoted events?
  • Yes. That is because I recently fixed a bug where code started at line 0. I didn't realize that would throw off records. I'll get that fixed for next release.
  • I wonder if your test was using a bit too small of a data set. In my tests, I always got the Inspect Variable window instead of the Hex view. At any rate, I had code that would count CRLFs (or temporarily convert them to @FMs). That might be the mos…
  • That is a bug on my part. I added that feature ages ago, but I must have lost the changes to a GFE or something. At any rate, I re-added that feature for the next release. You can try it out by download the pre-release build here. It's a ZIP file wi…
  • David, There was indeed an error on that page. The "Product Information" link below "SPACE SHORTCUTS" should have taken you there. Now it does.
  • Barry, Have you confirmed that "ClickApplyButton" appears in the dropdown at the top? This is a good way of verifying whether or not the SRP Editor sees the label at all.
  • That is correct. Note that you have to call SRP_Zip_Close when you are done in order for the zip file to finally appear. Not closing a zip file (especially if it already exists), will lock the file indefinitely until OI is restarted.