Tech Articles


Resizing a Response Window or User Object


Here is a technique you can use to resize a response window or userobject as needed. It makes use of the GetWindowLong and SetWindowLong Windows API methods. The oldest reference I found to this is from Eric Aling back in 2000.

In a nutshell, you are changing the border around the object to one which Windows allows to be resized. What's even nicer about this is the standard resize events are triggered so you can reposition/change objects within the window as well (PFC resize service for example). From Eric's original post:

"The Get function retrieves the complete definition of the window in 
a big long variable. All the bits in this long value describe the window. 
So there are bits for the type of border (which indicates if a window is 
resizable), menu, colors etc.etc. We can modify this long value, altering 
the design of the window. Using the SetWindowLong() we update the window with 
our specific modifications."

I used this in ancestor code of a userobject I use to create visible panels within the main window.

// Unicode declarations, used 'A' for ANSI
function long GetWindowLongW (long hWindow, integer nIndex) Library "user32.dll"
function long SetWindowLongW (long hWindow, integer nIndex, long dwNewLong) library "user32.dll"

// code in my post constructor event
n_cst_numerical lnv_num // PFC numeric service
long        ll_Styles
boolean        lb_Control

constant long    WS_THICKFRAME = 262144
constant long    WS_SYSMENU = 524288

ll_styles = GetWindowLongw(handle(THIS), -16)
if ll_styles <> 0 then

    ll_styles = lnv_num.of_BitWiseOr(ll_styles, WS_THICKFRAME)
// don't need control menu but leave this for reference 
//    if ab_Control then 
//        ll_styles = lnv_num.of_BitWiseOr(ll_styles, WS_SYSMENU)
//    end if

    SetWindowLongW(handle(THIS), -16, ll_styles)
end if
At first my UO cannot be resized.

Non resizable window

 

 

 

Now it can!

Resizable window

 

 

 

I've seen other references to these API calls for manipulating windows for other things but I have not investigated further.

Comments (0)
There are no comments posted here yet

Find Articles by Tag

Authentication RESTClient Android Deployment Interface Window Web API BLOB DataWindow JSON IDE Service Icon SOAP WebBrowser Script PowerScript (PS) PowerServer Mobile SQL Server Messagging Linux OS Charts Branch & Merge ODBC PFC Jenkins RichTextEdit Control Export JSON Error C# Event Handling Azure .NET Std Framework SDK Export Database Painter JSONGenerator NativePDF Stored Procedure External Functions SqlExecutor Migration Validation Transaction GhostScript Outlook HTTPClient Application Encoding Source Control JSONParser XML Web Service Proxy 32-bit Authorization License Excel MessageBox TFS WinAPI .NET DataStore DataWindow Debug OAuth 2.0 DLL Event Handler Bug Debugger Database Table Schema Database Table Data RibbonBar Installation Oracle UI Modernization Model Database Object Sort PostgreSQL Database Connection PowerBuilder Compiler TreeView OrcaScript Trial Testing Menu PBVM Automated Testing JSON COM .NET Assembly UI Themes PowerServer Web RibbonBar Builder DragDrop DataType PDFlib Source Code PostgreSQL ODBC driver TortoiseGit OAuth Windows 10 Icons PDF Database Table Import JSON Platform Text Variable InfoMaker SQL SqlModelMapper Performance Class SnapObjects Array Git API CrypterObject UI SVN REST Encryption Resize 64-bit Mobile Database Profile OLE Data iOS CI/CD Graph Configuration Repository Expression PowerBuilder Visual Studio Windows OS DevOps TLS/SSL CoderObject PBDOM Open Source Debugging Filter Event ActiveX Elevate Conference SnapDevelop Import Database File PowerBuilder (Appeon) Design Syntax PBNI