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

  • If you set the OptionButton attribute to "true" in the XML, then that button will appear. When clicked, it fires the OnGroupOptionClick event.
  • You should be able to change the window's title by using the form's TEXT property, like so: Set_Property(@Window, "TEXT", "New Title")
  • This is an issue of design. Setting up the entire ribbon takes a lot of CPU cycles, so the aim was to have a single one-time call to Init. It was never intended to be called more than once. If you have tabs or groups that you want to only appear at …
  • This was a bug. I've removed the first two Quick Access Toolbar options for now, seeing as that is a more advanced feature we can activate later. I fixed the last option not working. Both these changes will be available when I get out a new build.
  • Fixed date fields not showing tooltips.
  • Colin, There is currently no support for multi-lined tooltips. I am certainly interested in adding that feature in the future, but starting that now will just distract from my goal of getting the Ribbon to a stable 1.0 release. Mark, I went ahead…
  • No special syntax, just a bug. Fixed for next release.
  • Another good catch. I really do appreciate your beta testing. This will be fixed upon official release. I think we're getting really close.
  • Chris, The syntax for comments in XML is: So, to comment out a chunk of XML, you might do something like this:
  • I'm not able to recreate this so far. Can you email me your XML setup (and also your CREATE event logic)?
  • Good catch. This has been fixed for initial release to only return the date.
  • Did you re-register the OCX that you downloaded? Also, I see in your screenshot that you are positioning the ribbon control under your menu. This exposes a serious omission in our documentation (which I will shortly correct). You do not position th…
  • Here is my entire CREATE event logic for my test window: // Read the XML from a table and pass it to the Init method SetupXml = Xlate("SETUP", "RIBBON_TEST", "", "X") Send_Message(@Window:".OLE_RIBBON", "OLE.Init", SetupXml) // Start an OI wind…
  • Don is right that is better to just pass the list of item keys and make one call to TransferItems. Also, the Yield is unnecessary because the transfer animation is done in a separate thread.
  • I wanted to let you know that I passed this issue along to Revelation and they confirmed the bug on their end. They've fixed it, so this will no longer be a pain in the neck in OI 10.
  • My apologies for the massive delay in responding to this. Now that I am back from the Revelation Conference, I am catching up on all my correspondence. It appears you have exposed an OI bug. When I place a breakpoint within the C++ code of the SRP …
  • I'm not sure why I wasn't able to recreate it, but I do see it now. After reviewing my code, it is by design. The next release of will include a new property called "AutoExpandDuringDrag". Setting to 0 will get the effect you desire. If you need a b…
  • I am having trouble recreating this. I can say that, by design, collapsed nodes will expand during a drag-n-drop if you hover over them. However, they never collapse. What is the Drop Behavior you are using? Any code you can provide will be helpful.
  • The time is 1 second. It is not currently something that can be customized, but since it was a simple request, I went ahead and implemented it for the next release.
  • That's odd. I specifically implemented what you are asking when I first wrote the Tree control. In fact, I just tested it and was able to jump to a specific element in a non-sorted tree by typing multiple characters. If this is not working for you, …
  • Yes. There are couple reasons you don't get the event. First, the tree control consumes certain keystrokes because the keyboard can be used to navigate the control. All standard printable characters are consumed by the tree in order to allow users t…
  • Thanks for catching this. It has been fixed for the next release.
  • Sorry for the delayed response. InsertItems will always insert the items as siblings, not as children. The only reason the index value is available is so you can insert a mini-tree before or after an item. The first item's level becomes the base lev…
  • Something unique about your tree setup is at play here as I still can't recreate this. I've clicked every which way I can think of, including the steps you outlined, to no avail. If you are feeling charitable, an RDK demonstrating this would help im…
  • I cannot recreate this. I even put a debug inside the C++ code and verified that I am sending the key of the "hot" item. The only thing that might be messing with this is that I did have a condition that if an item was set as non-selectable, then th…
  • There is currently no solution. Right handed checkboxes have limited usefulness once you have large amounts of text in the tree. I considered just truncating text, but that wasn't a very good compromise either. Left handed checkboxes seem to be idea…
  • I can tell you that the ItemList property is going to be technically faster than than the AddItem method because there is some overhead incurred when marshaling OI data into ActiveX/COM. It's likely I'll have to optimize loading times on my end. If…
  • SRP Editor uses vsprint7.ocx, which ships with OI. My guess is that the OCX isn't registered on your machine. Did you run OI's client installer?
  • I made changes to the compiler logic, but nothing obviously related to BLINT. I guess whatever I did helped.
  • I am not getting these hangs at all using any of the code you've sent to us. I tried multiple version of SRP Editor, including 2.6.1, and multiple version of OI ranging from 8.0.8 to 9.4. Note that VNAV checking is actually performed using BLINT, wh…