No, the current release (12.2) does not support VS2008. The oldest version supported by this release is Visual Studio 2012.
Type: Posts; User: Terry
No, the current release (12.2) does not support VS2008. The oldest version supported by this release is Visual Studio 2012.
The Stingray version numbers are unrelated to the Visual Studio/Visual C++ version numbers. The version number in the og*.lib filenames is 902, which means Objective Grid version 9.02. This version...
Simon,
If you have DLLs, the default filenames include the version. For example, the current version is 12.2 and the DLL filenames are in the form og1220*.dll.
If you don't have DLLs, look...
If you have a current Support contract, please submit a support request at the Rogue Wave Support Center.
If not, you are welcome to post details of your issues in the appropriate forum and see if...
This is the basic reason. The Stingray Build Wizards work through the makefiles to exclude features which are either not needed (thus reducing the size of the library), or are incompatible for some...
If you have the original CD, it might have pre-built libraries. If not, you will need to build this configuration (Stingray LIB, MFC DLL, Unicode Release) of the Objective Toolkit library.
If you...
The last would probably be the closest, but it doesn't look like any of them are really a match.
If these are all installed, you can examine the file SflVersion.h to see the SFL version numbers. ...
sfl500as was in Stingray Studio 10.0, CD50.
SECTreeCtrl problems with LvPaintContext are almost always caused by a Platform Targeting mismatch. The fact that you have changed build platform supports this.
When you install Stingray...
Is this related to your later question about wchar_t? These errors can result from a mismatch in this setting between your application and the library.
This is done with the /Zc:wchar_t- compiler switch in the makefile. Look in the makefile for the library you're building, and for your version of Visual Studio. For example, if you're building...
CDlgYesNoCancel, CPatientDoc, and CDlgBatchOperations are not Stingray classes. I assume they are in your code somewhere.
Look through your code for these classes and see where the errant...
Without looking at the older version to see what might have changed, there is a member variable m_pImageList defined in SEC_LISTCLASS, which is the base class of SECTreeCtrl/SECTreeView. This member...
As Ben mentioned above, Visual Studio 2010 will be supported by Stingray Studio 10.4, which is scheduled to be released in May.
Regarding the Environment Wizard, this is an oversight in the...
Thanks for posting your workaround. No, the BuildWizard does not provide for excluding multimonitor support, so as long as you don't need this, your approach is probably best.
I would be...
To submit a support incident, go to this page: http://www2.roguewave.com/support/
Near the bottom of the page, under "Contact", find a link to "Create an incident".
You will need to login. ...
Please submit a support incident for this problem so we can track it properly.
Can you reproduce this in any of the provided sample applications?
It looks to me like calling RWSetThemeAppProperties(0) will just turn off theming. Can you get the same effect by calling
RWSetVisualStyle(RW_VISUALSTYLE_WINDOWSCLASSIC)
or
...
Nicola,
Thank you very much for this contribution to the forum.
As you have observed, this problem is caused by a change in the NONCLIENTMETRICS struct under Visual Studio 9.0. Vista adds a...
SECGif does not support these features.
The problem is that UXTheme.dll is being loaded during static initialization. This happens because there is a static SEC_AUX_DATA object whose constructor calls SEC_AUX_DATA::UpdateSysColors(), which...
The grid takes care of the gory details, so you don't need to deal with mousemove, messagemaps, or notifications.
The code Boris gave would typically go in your grid initialization, or at any...
As I mentioned in your other thread, if you have a license key for the 64-bit version, the installer will enable this capability. if you do not already have the 64-bit libraries, project files are...
Yes, SS2006v2 does support 64-bit builds. This capability is licensed separately, so if you have purchased the 64-bit license you will be able to install the 64-bit version. This will allow...
Most problems with PickTextFont() and LvPaintContext are related to Platform Targeting. Here's the discussion of Platform Targeting from the Objective Toolkit Readme file:
Specifically, what...