Unsupported functions for controls in Web Forms – PB Docs 110
Unsupported functions for controls in Web Forms Table 8-7 lists unsupported functions, the controls on which they are not supported, and any notes that apply to specific controls. If your application uses these functions, rework it to avoid their use. Table 8-7: Unsupported functions by control in Web Forms projects Function Controls not supporting function…
Configuring ASP.NET for a .NET project – PB Docs 110
Configuring ASP.NET for a .NET project You can configure ASP.NET for a Web Forms or smart client project before or after you deploy the project to an IIS 5.0 or later server. All files and directories that you access from a Web Forms application or a smart client application on a Web server must have…
Unsupported objects – PB Docs 110
Unsupported objects The PowerScript objects listed in Table 8-1 cannot be used in applications deployed to ASP.NET. Table 8-1: Unsupported PowerScript objects in Web Forms applications Category Objects Data reproduction Pipeline EAServer integration RemoteObject Menu MenuCascade OLE OleStorage OleStream OmStorage OmStream Profiling and tracing ProfileCall ProfileClass ProfileLine ProfileRoutine Profiling TraceFile TraceTree TraceTreeNode and descendants TraceActivityNode…
Unsupported system functions – PB Docs 110
Unsupported system functions Table 8-2 lists categories of system functions that are not supported or are deferred until a future release: Table 8-2: Unsupported system functions by category Category Functions Clipboard functions Clipboard, also any object function that uses the clipboard, such as Copy, Paste, Clear, and so on DDE functions CloseChannel, ExecRemote, GetCommandDDE, GetCommandDDEOrigin,…
Restrictions on supported controls – PB Docs 110
Restrictions on supported controls Almost all PowerBuilder controls are supported in .NET Web Forms applications. However some of the methods and properties on supported controls do not work in Web Forms applications. Table 8-3 lists functions, events, and properties that are not supported on any control. Table 8-3: Unsupported functions, events, and properties Category Unsupported…
OpenMailManager – PB Docs 110
OpenMailManager Description Opens the Web Forms Mail Profile Manager. Syntax
|
1 |
void <b>OpenMailManager</b> ( ) |
Return Values None Usage For information on using the Mail Profile Manager, see “Using the Web Forms Mail Profile Manager”. Examples You can use this code to open the Web Forms Mail Profile Manager:
|
1 |
#if defined PBWEBFORM then |
|
1 |
OpenMailManager() |
|
1 |
#end if |
Document get from Powerbuilder help Thank you for watching.
OpenPrintManager – PB Docs 110
OpenPrintManager Description Opens the Web Forms Print Manager. Syntax
|
1 |
void <b>OpenPrintManager</b> ( ) |
Return Values None Usage For information on using the Print Manager, see “Using the Web Forms Print Manager “. Examples You can use this code to open the Web Forms Print Manager:
|
1 |
#if defined PBWEBFORM then |
|
1 |
OpenPrintManager() |
|
1 |
#end if |
Document get from Powerbuilder help Thank you for watching.
OpenThemeManager – PB Docs 110
OpenThemeManager Description Opens the Web Forms Theme Manager. Syntax
|
1 |
void <b>OpenThemeManager</b> ( ) |
Return Values None Usage For information on using the Theme Manager, see “Using the Web Forms Theme Manager”. Examples You can use this code to open the Web Forms Theme Manager:
|
1 |
#if defined PBWEBFORM then |
|
1 |
OpenThemeManager() |
|
1 |
#end if |
Document get from Powerbuilder help Thank you for watching.
UploadFiles – PB Docs 110
UploadFiles Description Opens the Upload Files dialog box that enables an application user to upload files from the local computer to the Web server. Syntax
|
1 |
void <b>UploadFiles</b> (string <i>serverFolder</i>, long <i>bgColor</i>, int <i>fileNum</i>, boolean <i>showServerFolder</i>, string <i>description</i>, string <i>allowExts</i> {, string <i>callbackFunctionName</i>}{, PowerObject <i>po</i> }) |
Argument Description serverFolder The folder on the server to which you want to copy one or more files from the client computer. PowerBuilder creates this folder under the server…
Chapter 8 Modified and Unsupported Features in Web Forms Projects – PB Docs 110
Chapter 8 Modified and Unsupported Features in Web Forms Projects About this chapter You can use most of the PowerScript methods and properties in PowerBuilder applications that you deploy with a .NET Web Forms project. This chapter lists features of PowerBuilder and PowerScript that are not supported in Web Forms targets. Contents Topic About unsupported…