Hello I have a problem with the connection Telerik windows PROGRESS. My application has more than 100 windows replacement in one frame .. Now I want to turn the frame PROGRESS'a panel Telerik ... Well, but not rewrite these "old" Windows on the new technology. Please hint how you can do that same frame of windows created by AppBuilder Mozana insert panel RadPanel Telerik ...
Paweł
use the embedding technology Progress provided in the manual
see documentation.progress.com/.../embedding-one-or-more-windows-in-a-.net-form.html
This is the direction that I watched.
But this is not insertion of window frames ...
Is it possible to hide the window title and border window?
WindowContainer can be embedded in the panel Telerik?
A FRAME cannot be embedded. But when you embed a window, the window will not show it's border and window title and status bar.
Can you share a screenshot of what you are seeing?
This is the main window.
In the area of Work Frame intercede built by AppBuilder Window.
But I do not intercede but the window frame of the window ..
I want to change the Main Window on Telerik RADFORM and new Frame Work is now panel (RadPanel) to insert the windows now 100-200 (rather frame of the window) in the area Frame Work?
By WindowContainer? You have to hide Title, Border Window etc.
This is the way?
1) Do you want to reuse all of the “frames” that are written in vanilla ABL?
2) How are these “frames” written? Can you provide a sample program for us to look at?
3) Are you using ADM1/ADM2?
Is every menu item a separate ABL window ?
Or is it one window with 100 frames ?
Ad1. At the moment, so ... Frames will be exchanged successively
Ad. 2 . Generating new Window by AppBuilder and is ok
Ad. 3 I do not use .. ..
So these kits are many ...
The user chooses which frame wants to see, and after the first run all the time in the memory ..
I have an example ...
How to make that window was in Telerik.WinControls.UI.RadGroupBox.
how to hide Title and buttons
See:
CREATE WINDOW hWin ASSIGN WIDTH = 60 HEIGHT = 6.
FRAME f1:PARENT = hWin.
WinContainer = NEW Progress.Windows.WindowContainer( ).
WinContainer:Size = NEW System.Drawing.Size( hWin:WIDTH-PIXELS, hWin:HEIGHT-PIXELS ).
/* WinContainer:EmbeddedWindow = hWin.WinContainer . */
WinContainer:Parent = THIS-OBJECT:radGroupBox1.
WinContainer:Show( ).
/* Now make the window visible.
It will be realized inside the WindowContainer. */
hWin:VISIBLE = YES.
ENABLE ALL WITH FRAME f1.
RETURN.
END METHOD.