Questions tagged [owlnext]

OWLNext is an extensive update of Borland's Object Windows Library (OWL) for writing GUI applications in standard C++ on Microsoft Windows.

OWLNext is an extensive update of Borland's Object Windows Library (OWL) for writing GUI applications in standard C++ on Microsoft Windows.

https://sourceforge.net/projects/owlnext/

6 questions
0
votes
1 answer

Open TDecoratedMDIFrame Maximized

I'm writing an application with Embarcadero RAD 2 Studio (borland) and the owlNext library. There I create a TDecoratedMDIFrame Object, which I open by using class TMDIApp : public owl::TApplication { // ------------------------------- public: …
Julian
  • 493
  • 4
  • 22
0
votes
1 answer

TForm is hiding behind Main window

I have a main Form created with OwlNext that calls a Dialog which is created in vcl. MyOtherFormClass Form2=new Form2(); void MyMainForm::ShowForm2(void) { Form2->ShowDialog(this); } class MyOtherFormClass { [...] TForm *myForm; void…
Julian
  • 493
  • 4
  • 22
0
votes
1 answer

c++: owlnext + vcl: New Window missing its Parent

I have a Application mostly written with the owl-libary. There I want open new vcl-windows out of the main owl-window. This works great, though if a dialog-window is opened (even with ShowModal) and I focus another application, then the…
Julian
  • 493
  • 4
  • 22
0
votes
2 answers

C++-builder: access violation 0x0000002c in window.cpp

I am modifying a program in C++ Builder XE2. The program doesn't use vcl yet, but owlnext. and contains multiple MDI-child-forms. There I use a routine to load a file and open a new window. Everything works fine in this routine (I traced it multiple…
Julian
  • 493
  • 4
  • 22
0
votes
1 answer

c++-builder: convert into stdcall type

I'm currently trying to port an old owl-c++-builder-projekt to use XE2 and owlnext. In the old file, I could simply call a line (FARPROC)LP_I2COpen = GetProcAddress(Hi_I2C, "I2COpen"); While LP_I2Open is defined with #ifdef WIN32 #define…
Julian
  • 493
  • 4
  • 22
0
votes
1 answer

C++: recompiling old code using owl

I'm trying to compile an old program with the new Borland C++-Builder (Embarcadero Studio XE2). I thought it would be easy, but I get a lot of errors. e.g. using something like somefunction(TPoint(0,0)) won't work when it's expecting a reference, so…
Julian
  • 493
  • 4
  • 22