Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

Powerbuilder Documentation 8.0 – Page 61 – PowerBuilder Library

Powerbuilder Documentation 8.0

Web DataWindow on MTS or IIS – PB Docs 80

Web DataWindow on MTS or IIS You can run the Web DataWindow server component on a Microsoft Transaction Server using either PowerDynamo or ASP as the page server. You can also run the Web DataWindow on a Microsoft IIS application server. Files required on the MTS or IIS server Two types of files are required…

DataWindow Web control for ActiveX – PB Docs 80

DataWindow Web control for ActiveX The following file must be deployed to your Web server if you are using the DataWindow Web control for ActiveX: Name Required for PSDWC80.CAB CAB file containing an Open Software Distribution information file, DLLs for the Web ActiveX and the Transaction control, and Java class files for the JDBC driver…

Chapter 7 Using Tab Controls in a Window – PB Docs 80

Chapter 7 Using Tab Controls in a Window About this chapter This chapter describes how to use Tab controls in your application. Contents Topic About Tab controls Defining and managing tab pages Customizing the Tab control Using Tab controls in scripts Document get from Powerbuilder help Thank you for watching.

About Tab controls – PB Docs 80

About Tab controls A Tab control is a container for tab pages that display other controls. One page at a time fills the display area of the Tab control. Each page has a tab like an index card divider. The user can click the tab to switch among the pages: The Tab control allows you…

Using the Code Examples application – PB Docs 80

Using the Code Examples application You run the Code Examples application from the development environment. To run the Code Examples application: Select File>New from the menu bar, select Workspace from the Workspace tab, and click OK. Navigate to the PowerBuilder 9.0Code ExamplesExample App folder, type a name for the workspace, and click Save. Select Add…

Defining and managing tab pages – PB Docs 80

Defining and managing tab pages A tab page is a user object. Two methods There are different ways to approach tab page definition. You can define: An embedded tab page In the painter, insert tab pages in the Tab control and add controls to those pages. An embedded tab page is of class UserObject, but…

Customizing the Tab control – PB Docs 80

Customizing the Tab control The Tab control has settings for controlling the position and appearance of the tabs. Each tab can have its own label, picture, and background color. All tabs share the same font settings, which you set on the Tab control’s Font property page. Popup menus and property sheets for Tab controls and…

Using Tab controls in scripts – PB Docs 80

Using Tab controls in scripts This section provides examples of tabs in scripts: Referring to tab pages in scripts Referring to controls on tab pages Opening, closing, and hiding tab pages Keeping track of tab pages Creating tab pages only when needed Events for the parts of the Tab control Referring to tab pages in…

About window instances – PB Docs 80

About window instances When you build an application, you may want to display several windows that are identical in structure but have different data values. For example, you may have a w_employee window and want to display information for two or more employees at the same time by opening multiple copies (instances) of the w_employee…

Declaring instances of windows – PB Docs 80

Declaring instances of windows Because a window is actually a data type, you can declare variables of that data type, just as you can declare integers, strings, and so on. You can then refer to those variables in code. For example:

declares a variable named mywin of type w_employee. Limitation of using variables When…