UploadFiles – PB Docs 120
UploadFiles Use to open the Upload Files dialog box that enables an application user to upload files from the local computer to the Web server. Syntax
|
1 |
void <span>UploadFiles</span> (string <var>serverFolder</var>, long <var>bgColor</var>, int <var>fileNum</var>, boolean <var>showServerFolder</var>, string <var>description</var>, string <var>allowExts</var>{, string <var>callbackFunctionName</var>}{, PowerObject <var>po</var>}) |
Parameters 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…
OpenThemeManager – PB Docs 120
OpenThemeManager Use to open the Web Forms Theme Manager. Syntax
|
1 |
void <span>OpenThemeManager</span> () |
Returns None. Examples � Use this code to open the Web Forms Theme Manager:
|
1 2 3 |
#if defined PBWEBFORM then OpenThemeManager() #end if |
Usage See Web Forms Theme Manager . Parent topic: System Functions for .NET Web Forms Document get from Powerbuilder help Thank you for watching.
IIS Installation – PB Docs 120
IIS Installation You can install IIS from the Control Panel, but you might need a Windows operating system CD. On Windows XP and 2003, select Add and Remove Programs from the Control Panel, then click Add/Remove Windows Components, select the Internet Information Services check box, and click Next. You can then follow instructions to install…
ASP.NET Configuration for a .NET Project – PB Docs 120
ASP.NET Configuration 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 Properties for Controls in Web Forms – PB Docs 120
Unsupported Properties for Controls in Web Forms Some PowerBuilder control properties cannot be used in applications deployed to ASP.NET. This table lists unsupported properties, the controls on which they are not supported, and any notes that apply to specific controls. If your application uses these properties, rework it to avoid their use: Property Controls for…
DownloadFile – PB Docs 120
DownloadFile Use to download a file from the Web server to a client computer. Syntax
|
1 |
void <span>DownloadFile</span> (string <var>serverFile</var>, boolean <var>open</var>) |
Parameters serverFile � A string containing the name of the file on the application�s virtual file path on the Web server. open � A boolean that determines whether to access the file in open mode or download mode. Values…
System Functions for .NET Web Forms – PB Docs 120
System Functions for .NET Web Forms System functions specific for .NET Web Forms applications allow you to open the various managers for Web Forms applications, obtain global configuration settings, download files for viewing or printing by the application user, and upload files to the Web server. You must surround calls to these system functions in…
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…
OpenMailManager – PB Docs 120
OpenMailManager Use to open the Web Forms Mail Profile Manager. Syntax
|
1 |
void <span>OpenMailManager</span> () |
Returns None. Examples � Use this code to open the Web Forms File Manager:
|
1 2 3 |
#if defined PBWEBFORM then OpenMailManager() #end if |
Usage See Web Forms Mail Profile Manager . Parent topic: System Functions for .NET Web Forms Document get from Powerbuilder help Thank you for watching.
OpenPrintManager – PB Docs 120
OpenPrintManager Use to open the Web Forms Print Manager. Syntax
|
1 |
void <span>OpenPrintManager</span> () |
Returns None. Examples � Use this code to open the Web Forms Print Manager:
|
1 2 3 |
#if defined PBWEBFORM then OpenPrintManager() #end if |
Usage See Web Forms Print Manager . Parent topic: System Functions for .NET Web Forms Document get from Powerbuilder help Thank you for watching.