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

  • Mark, thanks for responding so thoroughly and accurately. Phil, you can have an icon in the circle button. The Ribbon automatically uses whatever icon you associate to the form in the Form Designer.
  • Does the Tree control still respond to other settings, like Border or Background? If not, then perhaps what appears to be an empty tree is really an empty ActiveX control container, which means Windows cannot find SRPControls.ocx. That would also ex…
  • From www.json.org. An object is an unordered set of name/value pairs.
  • I do have a recommendation: the SRP Calendar Control. Coming soon.
  • Currently, no. Are you using the control for scheduling or more as an appointment calendar?
  • We added a feature to combo drop downs so that they shrink as you type. I think the problem is that you are defaulting the Tax Code to 0, but there isn't a 0 in the drop down. To turn the feature off, set field <2, 9> of the CellType property …
  • This narrows things down. Am I to understand that the combo drop down is empty until you hover the mouse over it? Or does it stay empty until the user presses backspace?
  • Check to see if you have another control on your form in the same spot as the SRP EditTable. If they are both in the same spot, they will fight each other to be the one on top. That would explain why nothing appears until the user hovers. If this do…
  • Admittedly, "Invalid Application" is the worst possible description I could have come up with when I wrote the RDK plugin eons ago. It really should say, "Failed to Start Engine." What's happening is the CreateEngine API call is failing; it can't st…
  • I do notice one discrepancy. MDI2015_SCHED*DETAILS is a group, not a label control. LabelText will not change a group's caption. It only changes label text. Could that be the issue?
  • I fixed the post. Since these forums accept Simple HTML, pasting XML can be a problem. So far I can't explain your problem. The code looks correct as does the XML. I created a simple test on my end using your same Key values, and it worked. The onl…
  • Barry, that is not correct since the index is referencing a Ribbon control, not an OI control. All that matters is that the text within the square brackets matches the Key used to define the label.
  • I can't say without seeing code. I'd have to see the XML snippet defining your label along with the code you are using to change its text.
  • I'm not sure about the sizing of the MDI child being wrong, as I haven't seen that before. However, it is true that once maximized, there is no "resize" or "close" button available. This is due to the nature of the Ribbon control. Microsoft has long…
  • Try 4.0.3 RC9. New property is called LabelText: Set_Property(MyRibbonCtrl, "OLE.LabelText[MY_LABEL]", "Hello World!")
  • Agreed. That was fixed in a prior version. Download the RDK of version 1.5.7 or get the full installer from our product page.
  • If it helps, Matt, you can examine the meta data for a JPG using the SRP Picture Control's GetMetaData method.
  • Believe me, this is frustrating. There should never have been an orientation flag. Why a phone can't just save the image pre-rotated is beyond me. My theory is that, prior to Windows 7, someone manually rotated your images in Explorer via a right c…
  • Mark. I do think it's the image itself. Feel free to email me more images, and I'll gladly verify. A simple test is to see whether or not our control is displaying the image the same way as Chrome or Windows Explorer displays the image. If so, then …
  • Chris. I was able to recreate the crash in your system. Try 4.0.3 RC3 and see if it goes away.
  • Mark. The image you sent is rotating correctly. This is confirmed by the fact that it rotates the same way in Chrome and Windows Explorer. I did confirm that it has orientation 6, but the original picture is upright. Thus, the upright picture is rot…
  • Do you have logic in the embedded form's CLOSE event?
  • It is by design. Limit-to-List is not strictly a validation. It really means (and this is how combo boxes in Windows do it), "do not let the user type a single character that is not the next character of an item in the list." It's preemptive in its …
  • Yes, you can examine an object's named members using the GETMEMBERS service. Anything you want to learn at runtime you can do using SRP_JSON.
  • Here's how I would parse this json sample back into a delimited list. This assumes the json text is in a variable called JSON: // Parse the JSON. The result will be "" if successful or an error if not Result = SRP_JSON(hRoot, "PARSE", JSON) Succe…
  • The rest of the world doesn't appreciate associate arrays like the PICK world does. Here's the code to build your sample. Hopefully it points you in the right direction: // Create the top level object itself, which will contain the array If SRP_JS…
  • Got the orientation fixed for real this time. Found a resource online with samples for all 8 orientations. Turns out my internal library considers a 90 degree clockwise rotation to be "-90". So, all my rotations were going the wrong way. I didn't ca…
  • Generally, when asking for an RDK, I am looking for a complete replication of the problem. So, no dependencies on application specific entities. If that is difficult, then it's sometimes easier to just ship us your copy of OI with steps to reproduce…