rogue-wave

How to get a nice view of data structure in debugger?

I am debugging a Visual C++ project that uses Rogue Wave a lot. I would like to see content of RW containers easily, i.e. i want to see list elements instead of this: What are my options? Can autoexp.dat do this? ...

How do I abstract away from using RogueWave in legacy code?

I have been tasked with removing RogueWave components from a legacy C++ codebase. To do so, I am attempting to build wrappers around the existing components, make sure that the code functions the same, and then choose a different library like boost to stick into the wrappers. One of the problems I am coming against is that much of the ...

example of using StingRay SECSplitterBase

I am interested in a code fragment that demonstrates how to use the Layout Factory and SECSplitter Base (both from StingRay) to deliver a splitter window inside another splitter window. ...

Example needed of how to use the ADW (from StingRay) to nest docking windows

I would like to see an example of how to use the ADW (from StingRay) to nest docking windows. The documentation says you can do it, but does not provide an example! Thank you for your assistance in this matter. ...

Example needed for ADW using nested frames in StingRay

I have modified the AdvSDI example (included in the StingRay distribution disk) and have removed all but two dockable nodes that represent floatable areas of information. One is initially docked against the top border, the second is docked against the left border. I wish to add two more dockable nodes. When I do so they displace the i...

RWTime is displaying localtime+1

Why RWTime is giving 1 hour more #include <rw/rwtime.h> #include <rw/rwdate.h> #include <rw/rstream.h> main(){ RWTime t; // Current time RWTime d(RWTime::beginDST(1990, RWZone::local())); cout << "Current time: " << RWDate(t) << " " << t << endl; cout << "Start of DST, 1990: " << RWDate(d) << " " << d <<...