The rogue-wave tag has no wiki summary.
3
votes
1answer
110 views
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 ...
1
vote
1answer
108 views
Why does RWDBManager::database need shared library name?
I am using Roguewave library to connect to Sybase database from C++. I understand that database object is constructed as:
RWDBManager::database("accessLib", "", "", "", "", "XA=lrm_name");
...
1
vote
4answers
332 views
core dump segmentation fault with C++
I am a newbie to the C/CPP application and analysing an issue with a piece of C/CPP code. I came across a Segmentation Fault error and I am not to identify the root cause of the segmentation fault.
...
1
vote
2answers
179 views
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, ...
1
vote
0answers
13 views
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 ...
1
vote
2answers
248 views
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 ...
0
votes
2answers
84 views
RWCString is dropping core
In our code we use RWCString instead of std::string. One of the functions is dropping core and the stacktrace points to RWCString.
The function looks like this.
bool Eligible(const Message& ...
0
votes
1answer
95 views
How to get the linux thread id from RWThreadId?
In the RW documentation it advises to use rwThreadHash to get the threadId for debugging but that still doesn't match the actual linux thread id on a thread. Any idea how to get it (not necessarily in ...
0
votes
1answer
501 views
Implicit conversion between RWCString and const char *
RWCString str = "Y";
str.append("ES");
if("YES" == str)
cout << "YES == str" << endl;
if(str == "YES")
cout << "str == YES" << endl;
How does the implicit conversion ...
0
votes
1answer
76 views
RWDBReader Cannot read more than 255 characters
We're using Rogue Wave tools for our database operations, writing in C++. When we try to read the results of a simple SQL query, like:
RWDBResult resParam = VimerParamTblSlc.execute (pConn);
...
0
votes
1answer
46 views
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.