About unsupported features – PB Docs 115
About unsupported features When you deploy a PowerBuilder application as a Web Forms application to an IIS server, PowerBuilder lists any unsupported features in the Output window. For the most part, unsupported features fail silently in the Web Forms application, but unexpected results can also occur. If an unsupported feature prevents the PowerBuilder to .NET…
Creating the C++ application – PB Docs 125
Creating the C++ application To create the C++ application, follow these steps: Load the PowerBuilder VM Call PB_GetVM to get a pointer to the IPB_VM interface Create an IPB_Session object within IPB_VM Create an instance of the PowerBuilder object Initialize the PBCallInfo structure Call the PowerBuilder function Write cleanup code Document get from Powerbuilder help…
Set<type>SharedVar – PB Docs 126
IPB_Session interface: Set<type>SharedVar method Description A set of methods that set the value of a shared variable of a specific datatype. Syntax
|
1 |
SetArraySharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbarray <span>value</span> ) |
|
1 |
SetBlobSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbblob <span>value</span> ) |
|
1 |
SetBoolSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbboolean <span>value</span> ) |
|
1 |
SetByteSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbbyte <span>value</span> ) |
|
1 |
SetCharSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbchar <span>value</span> ) |
|
1 |
SetDateSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbdate <span>value</span> ) |
|
1 |
SetDateTimeSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbdatetime <span>value</span> ) |
|
1 |
SetDecSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbdec <span>value</span> ) |
|
1 |
SetDoubleSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbdouble <span>value</span> ) |
|
1 |
SetIntSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbint <span>value</span> ) |
|
1 |
SetLongSharedVar( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pblong <span>value</span> ) |
|
1 |
SetLongLongSharedVar( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pblonglong <span>value</span> ) |
|
1 |
SetObjectSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbobject <span>value</span> ) |
|
1 |
SetPBStringSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbstring <span>value</span> ) |
|
1 |
SetRealSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbreal <span>value</span> ) |
|
1 |
SetStringSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, LPCTSTR <span>value</span> ) |
|
1 |
SetTimeSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbtime <span>value</span> ) |
|
1 |
SetUintSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbuint <span>value</span> ) |
|
1 |
SetUlongSharedVar ( pbgroup <span>group</span>, pbfieldID <span>fid</span>, pbulong <span>value</span> ) |
Argument Description group The group whose shared variable is to be accessed fid The field ID of the shared variable value The value to be set Return Values PBX_RESULT. See Also Get<type>SharedVar…
Types of graphs – PB Docs 150
Types of graphs PowerBuilder provides many types of graphs for you to choose from. You choose the type on the Define Graph Style page in the DataWindow wizard or in the General page in the Properties view for the graph. Document get from Powerbuilder help Thank you for watching.
Using rich text in an application – PB Docs 70
Using rich text in an application Rich text format (RTF) is a standard for specifying formatting instructions and document content in a single ASCII document. An editor that supports rich text format interprets the formatting instructions and displays the text with formatting. In an application, you may want to: Provide a window for preparing rich…
Unsupported nonvisual objects and structures in Windows Forms – PB Docs 115
Unsupported nonvisual objects and structures in Windows Forms This section contains two tables: Table 11-1 lists all PowerBuilder nonvisual objects and structures and indicates whether they are supported in this release. When there is an X in the partially supported column in Table 11-1, see Table 11-2 for detailed information about what is supported. XX…
PBNI Tool Reference – PB Docs 125
PBNI Tool Reference About this chapter This chapter describes two tools provided with the PBNI SDK: The pbsig125 tool gets the internal signature of a PowerBuilder function from a PBL name. The pbx2pbd125 tool generates a PBD from a PBX. When you install PowerBuilder, these tools are installed in the SDK subdirectory of your PowerBuilder…
SetURI – PB Docs 126
SoapPBCookie: SetURI method Description Sets the URI for which the cookie is valid. Syntax
|
1 |
<span>acookie</span>.SetURI ( string <span>uri</span> ) |
Argument Description acookie The name of an instance of the SoapPBCookie object uri The URI for which the cookie is valid Return Values Long. Returns 0 for success, and 50 for failure. Usage The URI value you set must conform…
Specifying the information – PB Docs 150
Specifying the information To define the crosstab, drag the column names from the Source Data box in the Crosstab Definition dialog box (or Wizard page) into the Columns, Rows, or Values box, as appropriate. If you change your mind or want to edit the DataWindow object later, select Design>Crosstab from the menu bar and drag…
Defining and managing tab pages – PB Docs 70
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…