GetObjectClass – PB Docs 2018
GetObjectClass Description Returns a long integer code that indicates the class of this PBDOM_OBJECT. Syntax
1 |
pbdom_object_name.GetObjectClass() |
Argument Description pbdom_object_name The name of the PBDOM_OBJECT Return value Long. A code that indicates the class of the current PBDOM_OBJECT. Usage This method returns the following possible values: Class Long integer value UNKNOWN (indicates an error) 0 PBDOM_OBJECT…
Open dialog box – PB Docs 2019
Open dialog box Description Select a target, an object type, and an object and open the object so you can edit it. Dialog options for most targets Target Select the target in which you want to open an object. Libraries Shows the libraries in the current library search path. To display objects from more than…
NavigationStart – PB Docs 2019
NavigationStart PowerScript event Description Occurs after a navigation has been committed and before the browser begins loading contents in the frame. Event ID Event ID Objects None WebBrowser controls Arguments None Return Values None See also AddressChanged CertificateError DownloadingStart DownloadingStateChanged EvaluateJavascriptFinished NavigationError NavigationProgressIndex NavigationStateChanged PdfPrintFinished ResourceRedirect TitleTextChanged Document get from Powerbuilder help Thank you for…
Basic syntax for DataWindow property expressions in PowerBuilder – PB Docs 2021
Basic syntax for DataWindow property expressions in PowerBuilder Description DataWindow property expressions in PowerBuilder use dot notation to specify the controls and properties that you want to access. Syntax
1 |
dwcontrol.Object.dwcontrolname { .property } .property { = value } |
Argument Description dwcontrol The name of the DataWindow control or child DataWindow in which you want to get or set properties. Object Object indicates that…
C0310 Compiler Error – PB Docs 2021
C0310 Compiler Error Message text ‘end choose’ expected. Explanation Error C0310 is generated when you deploy a .NET target that has a CHOOSE CASE statement with no closing END CHOOSE inside a conditional compilation clause:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
decimal weight decimal postage #if defined pbwebform then choose case weight case is<10 postage=weight*0.30 case 10 postage=4.50 case 11 to 20 postage=6.0 case is>21, is<=40, 44 postage=10.0 case else postage=25.00 // missing end choose generates C0310 #end if |
Document get from Powerbuilder help Thank you for watching.
PDFTextBlock object – PB Docs 2022
PDFTextBlock object PDFTextBlock is one of the PDF Builder objects, and is derived from PDFModel. PDFTextBlock is a formatted text block, and must be used with the PDFRichText object, for organizing and managing the content in PDFRichText. To view the full hierarchy of the PDF Builder objects, find “pdfobject” in the Browser, right-click the object,…