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

  • I think the best way for me to get my head around this is for you to email me your PNGs and maybe a screenshot of your Ribbon.
  • Just so I'm clear, the image appears fine on the Buttons, just not in the Groups? You have tested resizing the ribbon until the Groups collapse into a single button?
  • Can you post the XML your using to setup the Group. I assume this is regarding a group. Note that group icons only appear when a group is collapsed.
  • Yes, but a colon at the end of a GoSub is not correct syntax. I'd love to make the Smart Indent perfect, but it does the best it can with certain assumptions, well formatted code being the main one. I'll make note of this though and see what it wou…
  • The way you have to increase connection limit in the code for Windows is unusual. It's not a setting, but a MACRO that is compiled. The macro is not in my code, it's in Microsoft code. I suspect that when I made the official build, I used a differen…
  • Funny. I never added a ShowCommands. I guess it was because I needed a HideCommands for FrameWorks. The closest work around (for now) is to use the ControlVisible property, which I admit is a bit more work than you have liked to hear.
  • If you are referring to the automatic "END" keyword you get after the IF statement, that is not called Autocomplete. That is called Smart Indent and can also be unchecked in the General tab.
  • In version 2.9.1, you can turn off Autocomplete on the General tab. Set it to Disabled to turn it off completely. Barry's suggestion of using "Enabled - Service MetadataOnly" is still possible, it was just renamed to "Enabled - Special Only". It's t…
  • Are you hitting the limit naturally or is this still due to orphaned connections?
  • No. There is currently no event fired when a tab is clicked.
  • Close. The way I designed it was for performance. If you want a tab on your ribbon to be context sensitive (only to appear when a certain form is visible), it's better to create the tab in advance and simply hide it until you need to show it. In oth…
  • Only for Office 2010, Office 2007 and Windows 7 themes are resource based for the DatePicker. All other DatePicker themes do not rely on resources and can therefore be different from other CodeJock controls.
  • Anything associated with a command fires the OnCommand event when clicked. All other control types, such as combo boxes, have their own event.
  • How big are the images? Every single pixel has to be loaded into memory. One of the test images you sent to me was 1920x2560. Even though the image was only 1MB, once loaded, the image requires 32 bits per pixel. (1920 * 2560 * 32) / 8 = ~20MB. 300 …
  • Let's look at it from the angle of how much work is involved to work around the default behavior. The way it is currently, "" is treated as an array with one element that is empty. So, in order to treat "" as empty, we need to do the following: If…
  • Mark - I can confirm that some themes (not all of them) are stored within the OCX resource. Only one resource can be loaded at a time. So, using the Office 2007 theme, for example, will cause all CodeJock (the 3rd party we mentioned earlier) control…
  • I know I said Sunday, but I over extended myself by trying to squeeze in one more feature before release. I'm working on wrapping everything up today. We will post a blog article when it's finally out in the wild, so you can check it to know for sur…
  • Oh, and Thank You for doing so much due diligence by investigating the source of the issue using #precomp output. If I hadn't known about this bug, this information would have led me to fix it within minutes rather than hunting for the problem. You,…
  • I'm glad you are liking it. We discovered this bug as well and it has been fixed for the next release, along with several other precompiler fixes and improvements. We are aiming to release the next version this Sunday evening.
  • After your #pragma precomp line, insert the following: #pragma output SYSLISTS SRP_PRECOMP_OUTPUT This will produce a record called SRP_PRECOMP_OUTPUT in the SYSLISTS table showing the code that actually gets compiled. In there, see what SRP_Preco…
  • 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?