Embedded – PB Docs 120
Embedded Set the Embedded property to true to use the IFRAME element for a Web page defined in the URL property of a StaticHyperLink control. This causes the Web page to appear inline on the Web Forms page (window) containing the StaticHyperLink control. Applies to StaticHyperLink controls Usage In scripts, surround the Embedded property in…
Moving an Application into a Different Application Pool – PB Docs 120
Moving an Application into a Different Application Pool If you have created and configured a new application pool for PowerBuilder, you must move your PowerBuilder Web Forms applications into the pool. In IIS Manager, expand Web Sites and Default Web Site. Right-click the virtual directory for your application and click Advanced Settings. Select the drop-down…
Enabling ASP.NET Services – PB Docs 120
Enabling ASP.NET Services By default, IIS is installed on Windows Server 2003 in a secure mode that prohibits ASP.NET. This means that only static pages can be served. To enable ASP.NET services: From the Start menu, click Administrative Tools and then choose the Internet Information Services (IIS) Manager. In the left pane, select Web Service…
UIPermission – PB Docs 120
UIPermission The Unrestricted UIPermission setting is required for Windows Forms applications, although you can customize the setting to use a combination of AllowDrop and AllWindow permission values. The UIPermission setting has no effect on WebForms applications. Parent topic: Custom Permission Settings Document get from Powerbuilder help Thank you for watching.
HasThemeManager – PB Docs 120
HasThemeManager Set this property to false to hide the Theme Manager on a particular page in a Web Forms application. Applies to Window controls Usage In scripts, surround the HasThemeManager property in a conditional compilation code block for Web Forms applications:
|
1 2 3 |
#IF DEFINED PBWEBFORM THEN w_mywindow.HasThemeManager = false #END IF |
This property is valid for .NET Web Forms applications only when the PBThemeManager global…
How .NET Deployment Works – PB Docs 120
How .NET Deployment Works When you deploy a .NET project, PowerBuilder compiles existing or newly developed PowerScript� code into .NET assemblies. At runtime, the generated .NET assemblies execute using the .NET Common Language Runtime (CLR). PowerBuilder�s .NET compiler technology is as transparent as the P-code compiler in standard PowerBuilder client-server applications. Depending on their application…