RemoveAttribute Syntax 2 – PB Docs 150
PBDOM_ELEMENT: RemoveAttribute Syntax 2 method Description Removes a PBDOM_ATTRIBUTE specified by the name provided that is not contained in a namespace. If no such PBDOM_ATTRIBUTE exists, RemoveAttribute does nothing. Syntax
|
1 |
<span>pbdom_element_name.</span>RemoveAttribute(string <span>strAttributeName</span>) |
Argument Description pbdom_element_name The name of a PBDOM_ELEMENT object strAttributeName The name of the PBDOM_ATTRIBUTE object to remove Return Values Boolean. Returns true if…
Chapter 34 Internationalizing an Application – PB Docs 90
Chapter 34 Internationalizing an Application About this chapter This chapter describes some of the issues that arise when you are developing and deploying applications for multiple languages. Contents Topic About international deployment Internationalization Localization Document get from Powerbuilder help Thank you for watching.
About PBDOM – PB Docs 100
About PBDOM PBDOM is the PowerBuilder implementation of the Document Object Model (DOM), a programming interface defining the means by which XML documents can be accessed and manipulated. Although PBDOM is not an implementation of the World Wide Web Consortium (W3C) DOM API, it is very similar. The PBDOM PowerBuilder API can be used for…
Efficient compiling and performance – PB Docs 125
Efficient compiling and performance The way you write functions and define variables affects your productivity and your application’s performance. Short scripts for faster compiling If you plan to build machine code dynamic libraries for your deployed application, keep scripts for functions and events short. Longer scripts take longer to compile. Break the scripts up so…
Syntax 3 For saving an OLE control to an OLE storage – PB Docs 125
Syntax 3 For saving an OLE control to an OLE storage Description Saves the object in an OLE control to an OLE storage object in memory. Controls OLE controls Syntax
|
1 |
<span>olecontrol</span>.<span>SaveAs</span> ( <span>targetstorage</span>, <span>substoragename</span> ) |
Argument Description olecontrol The name of the OLE control containing the object you want to save. targetstorage The name of an object variable of OLEStorage…
OpenSheetWithParmInTabGroup PowerScript function – PB Docs 126
OpenSheetWithParmInTabGroup PowerScript function Opens a sheet in a tab group within an MDI frame window for dockable windows. OpenSheetWithParmInTabGroup also stores a parameter in the system’s Message object so that it is accessible to the opened sheet. Applies to Windows objects Syntax
|
1 |
OpenSheetWithParmInTabGroup ( <var>sheetrefvar</var>, <var>parameter</var> {, <var>windowtype</var> }, <var>siblingname</var>, <var>sheetname</var> ) |
Argument Description sheetrefvar The name of any window variable that is not…
RemoveValue – PB Docs 150
PBDOM_PROCESSINGINSTRUCTION: RemoveValue method Description Removes the specified name/value pair. Syntax
|
1 |
<span>pbdom_pi_name</span>.RemoveValue(string <span>strName</span>) |
Argument Description pbdom_pi_name The name of a PBDOM_PROCESSINGINSTRUCTION object strName String name of name/value pair to be removed Return Values Boolean. Returns true if the requested name/value pair is removed and false otherwise. Examples Suppose the following PBDOM_PROCESSINGINSTRUCTION object is given:
|
1 |
<?xml-stylesheet href="simple-ie5.xsl" type="text/xsl" ?> |
Then, RemoveValue(“href”)…
PowerBuilder extensions – PB Docs 90
PowerBuilder extensions Three PowerBuilder extensions are provided with PowerBuilder 9.0. If your application uses one of these extensions, you must deploy the files listed inTable 39-12. Table 39-12: Files required for PowerBuilder built-in extensions Extension Files PowerBuilder Document Object Model PBDOM90.DLL PBXerces90.DLL xerces-c_2_1_0.dll EJB client pbejbclient90.dll pbejbclient90.jar SOAP client for Web services EasySoap.DLL ExPat.dll libeay32.dll…
Chapter 2 Selected Object-Oriented Programming Topics – PB Docs 100
Chapter 2 Selected Object-Oriented Programming Topics About this chapter This chapter describes how to implement selected object-oriented programming techniques in PowerBuilder. Contents Topic Terminology review PowerBuilder techniques Other techniques Document get from Powerbuilder help Thank you for watching.
Implementing an existing interface – PB Docs 125
Implementing an existing interface You can create PowerBuilder implementations of existing interfaces using the EAServer Component Wizard on the Target or PB Object tab in the New dialog box. A typical use of this feature is to create an implementation of a standard API, such as protocols for online banking and securities trading. Selecting an…