Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Community » Newbie corner » AESStream cause of error in GUI TopWindow (ASSERT FAILED: Assertion failed in C:\upp\src\Core\Ops.h, line 359 ndx < 60)
AESStream cause of error in GUI TopWindow [message #55872] Thu, 24 December 2020 21:54 Go to next message
xynkfrost is currently offline  xynkfrost
Messages: 4
Registered: January 2020
Junior Member
Hi,

I'm using TheIDE 13664 (MinGW 7.3.0) in Windows 7. I have a GUI MT Application and it throws an error when declaring AESEncoderStream/AESDecoderStream. It links and compiles successfully however I encounter this error during runtime:

"ASSERT FAILED: Assertion failed in C:\upp\src\Core\Ops.h, line 359 ndx < 60".

But when I declare it in GUI_APP_MAIN, it doesn't throw any error. Here is the code:

GUI_APP_MAIN:
#include "TFrame1.h"

GUI_APP_MAIN
{
     /*
      But when I declare it here, it doesn't throw any errors.
      String test_str = "abaskc,jrop135908";
      AESEncoderStream s(test_str.GetLength(), AESRandomString(32)); // works.
      */
     TFrame1 *app = new TFrame1;
     app->Run();
}


TFrame1.h
#include <CtrlLib/CtrlLib.h>
#include <Core/Core.h>
#include <GridCtrl/GridCtrl.h>
#include <AESStream/AESStream.h>

using namespace Upp;

#define LAYOUTFILE <MainProject/Layout.lay>
#include <CtrlCore/lay.h>

class TFrame1 : public WithTFrame1Layout<TopWindow> {
public:
     typedef TFrame1 CLASSNAME;
     TFrame1();
     virtual ~TFrame1() {};
};


TFrame1.cpp:
#include "TFrame1.h"

TFrame1::TFrame1()
{
     CtrlLayout(*this, "X-Title");
     String test_str = "abcdefghijklmnop1235789";
     AESEncoderStream s(test_str.GetLength(), AESRandomString(32)); // this is causes the error.

     /* ... */
}


Any help would be greatly appreciated.

By the way, Merry Christmas / Happy Holidays everyone!

Regards,

[Updated on: Thu, 24 December 2020 21:58]

Report message to a moderator

Re: AESStream cause of error in GUI TopWindow [message #55875 is a reply to message #55872] Fri, 25 December 2020 11:50 Go to previous message
xynkfrost is currently offline  xynkfrost
Messages: 4
Registered: January 2020
Junior Member
xynkfrost wrote on Thu, 24 December 2020 15:54
Hi,

I'm using TheIDE 13664 (MinGW 7.3.0) in Windows 7. I have a GUI MT Application and it throws an error when declaring AESEncoderStream/AESDecoderStream. It links and compiles successfully however I encounter this error during runtime:

"ASSERT FAILED: Assertion failed in C:\upp\src\Core\Ops.h, line 359 ndx < 60".

But when I declare it in GUI_APP_MAIN, it doesn't throw any error. Here is the code:

GUI_APP_MAIN:
#include "TFrame1.h"

GUI_APP_MAIN
{
     /*
      But when I declare it here, it doesn't throw any errors.
      String test_str = "abaskc,jrop135908";
      AESEncoderStream s(test_str.GetLength(), AESRandomString(32)); // works.
      */
     TFrame1 *app = new TFrame1;
     app->Run();
}


TFrame1.h
#include <CtrlLib/CtrlLib.h>
#include <Core/Core.h>
#include <GridCtrl/GridCtrl.h>
#include <AESStream/AESStream.h>

using namespace Upp;

#define LAYOUTFILE <MainProject/Layout.lay>
#include <CtrlCore/lay.h>

class TFrame1 : public WithTFrame1Layout<TopWindow> {
public:
     typedef TFrame1 CLASSNAME;
     TFrame1();
     virtual ~TFrame1() {};
};


TFrame1.cpp:
#include "TFrame1.h"

TFrame1::TFrame1()
{
     CtrlLayout(*this, "X-Title");
     String test_str = "abcdefghijklmnop1235789";
     AESEncoderStream s(test_str.GetLength(), AESRandomString(32)); // this is causes the error.

     /* ... */
}


Any help would be greatly appreciated.

By the way, Merry Christmas / Happy Holidays everyone!

Regards,




Problem is now resolved by upgrading to the latest STABLE version.


Previous Topic: Newbie question - calendar view question
Next Topic: margin / Report
Goto Forum:
  


Current Time: Fri Mar 29 06:33:55 CET 2024

Total time taken to generate the page: 0.01994 seconds