Programmable OLE Objects
You do not need to place an OLE control on a window to manipulate
an OLE object in a script. If the object does not need to be visible
in your PowerBuilder application, you can create an OLE object independent
of a control, connect to the server application, and call functions
and set properties for that object. The server application executes
the functions and changes the object’s properties, which
changes the OLE object.
For some applications, you can specify whether the application
is visible. If it is visible, the user can activate the application
and manipulate the object using the commands and tools of the server
application.
OLEObject object type
PowerBuilder’s OLEObject object type is designed for
automation. OLEObject is a dynamic object type, which means that
the compiler will accept any property names, function names, and
parameter lists for the object. PowerBuilder does not have to know
whether the properties and functions are valid. This allows you
to call methods and set properties for the object that are known
to the server application that created the object. If the functions
or properties do not exist during execution, you will get runtime
errors.
Using an OLEObject variable involves these steps:
- Declare the variable and instantiate it.
- Connect to the OLE object.
- Manipulate the object as appropriate using the OLE
server’s properties and functions. - Disconnect from the OLE object and destroy the variable.
These steps are described next.
Declaring an OLEObject variable
You need to declare an OLEObject variable and allocate memory
for it:
1 |
OLEObject myoleobject<br />myoleobject = CREATE OLEObject |
The Object property of the OLE container controls (OLEControl
or OLECustomControl) has a datatype of OLEObject.
Connecting to the server
You establish a connection between the OLEObject object and
an OLE server with one of the ConnectToObject functions.
Connecting to an object starts the appropriate server:
When you want to | Choose this function |
---|---|
Create a new object for an OLE server that you specify. Its purpose is similar to InsertClass for a control. |
ConnectToNewObject |
Create a new OLE object in the specified remote server application if security on the server allows it and associate the new object with a PowerBuilder OLEObject variable. |
ConnectToNewRemoteObject |
Open an existing OLE object from a file. If you do not specify an OLE class, PowerBuilder uses the file’s extension to determine what server to start. |
ConnectToObject |
Associate an OLE object with a PowerBuilder OLEObject variable and start the remote server application. |
ConnectToRemoteObject |
After you establish a connection, you can use the server’s
command set for automation to manipulate the object (see “OLE objects in scripts “).
You do not need to include application qualifiers for the
commands. You already specified those qualifiers as the application’s
class when you connected to the server. For example, the following
commands create an OLEObject variable, connect to Microsoft Word ‘s
OLE interface (word.application), open a document and display information
about it, insert some text, save the edited document, and shut down
the server:
1 |
OLEObject o1<br />string s1<br />o1 = CREATE oleobject<br /><br />o1.ConnectToNewObject("word.application")<br />o1.documents.open("c: emp emp.doc")<br /><br />// Make the object visible and display the <br />// MS Word user name and file name<br />o1.Application.Visible = True<br />s1 = o1.UserName<br />MessageBox("MS Word User Name", s1)<br />s1 = o1.ActiveDocument.Name<br />MessageBox("MS Word Document Name", s1)<br /><br />//Insert some text in a new paragraph<br />o1.Selection.TypeParagraph()<br />o1.Selection.typetext("Insert this text")<br />o1.Selection.TypeParagraph() <br /><br />// Insert text at the first bookmark<br />o1.ActiveDocument.Bookmarks[1].Select<br />o1.Selection.typetext("Hail!")<br /><br />// Insert text at the bookmark named End<br />o1.ActiveDocument.Bookmarks.item("End").Select<br />o1.Selection.typetext("Farewell!")<br /><br />// Save the document and shut down the server<br />o1.ActiveDocument.Save()<br />o1.quit()<br />RETURN |
For earlier versions of Microsoft Word, use word.basic instead
of word.application. The following commands connect to the Microsoft
Word 7.0 OLE interface (word.basic), open a document, go to a bookmark
location, and insert the specified text:
1 |
myoleobject.ConnectToNewObject("word.basic")<br />myoleobject.fileopen("c: empletter1.doc")<br />myoleobject.editgoto("NameAddress")<br />myoleobject.Insert("Text to insert") |
Do not include word.application or word.basic
(the class in ConnectToNewObject) as a qualifier:
1 |
// Incorrect command qualifier<br />myoleobject.word.basic.editgoto("NameAddress") |
Microsoft Word 7.0 implementation For an OLEObject variable, word.basic is the class name of
Word 7.0 as a server application. For an object in a control, you
must use the qualifier application.wordbasic to tell Word how to
traverse its object hierarchy and access its wordbasic object.
Shutting down and disconnecting from the server
After your application has finished with the automation, you
might need to tell the server explicitly to shut down. You can also
disconnect from the server and release the memory for the object:
1 |
myoleobject.Quit() <br />rtncode = myoleobject.DisconnectObject()<br />DESTROY myoleobject |
You can rely on garbage collection to destroy the OLEObject
variable. Destroying the variable automatically disconnects from
the server.
It is preferable to use garbage collection to destroy objects,
but if you want to release the memory used by the variable immediately
and you know that it is not being used by another part of the application,
you can explicitly disconnect and destroy the OLEObject variable,
as shown in the code above.
For more information, see “Garbage collection and memory
management”.
Assignments among OLEControl, OLECustomControl,
and OLEObject datatypes
You cannot assign an OLE control (object type OLEControl)
or ActiveX control (object type OLECustomControl) to an OLEObject.
If the vendor of the control exposes a programmatic identifier
(in the form vendor.application), you can specify
this identifier in the ConnectToNewObject function
to connect to the programmable interface without the visual control. For
an ActiveX control with events, this technique makes the events unavailable.
ActiveX controls are not meant to be used this way and would not be
useful in most cases.
You can assign the Object property of an OLE control to an
OLEObject variable or use it as an OLEObject in a function.
For example, if you have an OLEControl ole_1 and
an OLECustomControl ole_2 in a window
and you have declared this variable:
1 |
OLEObject oleobj_automate |
then you can make these assignments:
1 |
oleobj_automate = ole_1.Object<br />oleobj_automate = ole_2.Object |
You cannot assign an OLEObject to the Object property of an
OLE control because it is read-only. You cannot make this assignment:
1 |
ole_1.Object = oleobj_automate //Error! |
Events for OLEObjects
You can implement events for an OLEObject by creating a user
object that is a descendant of OLEObject. The SetAutomationPointer PowerScript
function assigns an OLE automation pointer to the descendant so
that it can use OLE automation.
Suppose oleobjectchild is a descendant
of OLEObject that implements events such as the ExternalException
and Error events. The following code creates an OLEObject and an
instance of oleobjectchild, which is a user
object that is a descendant of OLEObject, connects to Excel, then
assigns the automation pointer to the oleobjectchild:
1 |
OLEObject ole1<br />oleobjectchild oleChild<br /><br />ole1 = CREATE OLEObject<br />ole1.ConnectToNewObject( "Excel.Application")<br /><br />oleChild = CREATE oleobjectchild<br />oleChild.SetAutomationPointer( ole1 ) |
You can now use olechild for automation.
Automation scenario
The steps involved in automation can be included in a single
script or be the actions of several controls in a window. If you
want the user to participate in the automation, you might:
- Declare an OLE object as an instance variable of a window
- Instantiate the variable and connect to the server
in the window’s Open event - Send commands to the server in response to the user’s
choices and specifications in lists or edit boxes - Disconnect and destroy the object in the window’s
Close event
If the automation does not involve the user, all the work
can be done in a single script.
Example: generating form letters using OLE
This example takes names and addresses from a DataWindow object
and letter body from a MultiLineEdit and creates and prints letters
in Microsoft Word using VBA scripting.
To set up the form letter example:
-
Create a Word document called CONTACT.DOC with
four bookmarks and save the file in your PowerBuilder directory.These are the bookmarks:
- name1 – for
the name in the return address - name2 – for the name in the salutation
- address1 – for the street, city, state,
and zip in the return address - body – for the body of the letter
The letter should have the following content:
1Multimedia Promotions, Inc.<br />1234 Technology Drive<br />Westboro, Massachusetts<br />January 12, 2003<br /><br />[bookmark name1]<br />[bookmark address1]<br /><br />Dear [bookmark name2]:<br />[bookmark body]<br /><br />Sincerely,<br /><i>Harry Mogul<br /></i>PresidentYou could enhance the letter with a company and a signature
logo. The important items are the names and placement of the bookmarks. - name1 – for
-
In PowerBuilder, define a DataWindow object called d_maillist that
has the following columns:- id
- first_name
- last_name
- street
- city
- state
- zip
You can turn on Prompt for Criteria in the DataWindow object
so the user can specify the customers who will receive the letters. -
Define a window that includes a DataWindow control
called dw_mail, a MultiLineEdit called mle_body,
and a CommandButton or PictureButton: -
Assign the DataWindow object d_maillist to
the DataWindow control dw_mail. -
Write a script for the window’s Open
event that connects to the database and retrieves data for the DataWindow
object. The following code connects to an Adaptive Server Anywhere database. (When
the window is part of a larger application, the connection is typically
done by the application Open script.)1/**************************************************<br />Set up the Transaction object from the INI file<br />**************************************************/<br />SQLCA.DBMS=ProfileString("myapp.ini", &<br /> "Database", "DBMS", " ")<br /><br />SQLCA.DbParm=ProfileString("myapp.ini", &<br /> "Database", "DbParm", " ")<br />/**************************************************<br />Connect to the database and test whether the <br />connect succeeded<br />**************************************************/<br />CONNECT USING SQLCA;<br />IF SQLCA.SQLCode <> 0 THEN<br /> MessageBox("Connect Failed", "Cannot connect" &<br /> + "to database. " + SQLCA.SQLErrText)<br /> RETURN<br />END IF<br />/**************************************************<br />Set the Transaction object for the DataWindow control and retrieve data<br />**************************************************/<br />dw_mail.SetTransObject(SQLCA)<br />dw_mail.Retrieve() -
Write the script for the Generate Letters button
(the script is shown below).The script does all the work, performing the following tasks:
- Creates the OLEObject variable
- Connects to the server (word.application)
- For each row in the DataWindow object, generates
a letter
To do so, it uses VBA statements to perform the tasks in Table 19-5.Table 19-5: Script tasks VBA statements Task open Opens the document with the bookmarks goto and typetext Extracts the name and address information
from a row in the DataWindow object and inserts it into the appropriate
places in the lettergoto and typetext Inserts the text the user types in mle_body into the
letterprintout Prints the letter close Closes the letter document without saving
it - Disconnects from the server
- Destroys the OLEObject variable
-
Write a script for the Close button. All it needs
is one command:1Close(Parent)
Script for generating form letters
The following script generates and prints the form letters:
1 |
OLEObject contact_ltr<br />integer result, n<br />string ls_name, ls_addr<br />/***************************************************<br />Allocate memory for the OLEObject variable<br />***************************************************/<br />contact_ltr = CREATE oleObject<br />/***************************************************<br />Connect to the server and check for errors<br />***************************************************/<br />result = &<br /> contact_ltr.ConnectToNewObject("word.application")<br />IF result <> 0 THEN<br /> DESTROY contact_ltr<br /> MessageBox("OLE Error", &<br /> "Unable to connect to Microsoft Word. " &<br /> + "Code: " &<br /> + String(result))<br /> RETURN<br />END IF<br />/***************************************************<br />For each row in the DataWindow, send customer<br />data to Word and print a letter<br />***************************************************/<br />FOR n = 1 to dw_mail.RowCount()<br />/************************************************<br /> Open the document that has been prepared with<br /> bookmarks<br />************************************************/<br /> contact_ltr.documents.open("c:pb10contact.doc")<br />/************************************************<br /> Build a string of the first and last name and<br /> insert it into Word at the name1 and name2<br /> bookmarks<br />************************************************/<br /> ls_name = dw_mail.GetItemString(n, "first_name")&<br /> + " " + dw_mail.GetItemString(n, "last_name")<br /> contact_ltr.Selection.goto("name1")<br /> contact_ltr.Selection.typetext(ls_name)<br /> contact_ltr.Selection.goto("name2")<br /> contact_ltr.Selection.typetext(ls_name)<br />/************************************************<br /> Build a string of the address and insert it into<br /> Word at the address1 bookmark<br />************************************************/<br /> ls_addr = dw_mail.GetItemString(n, "street") &<br /> + "~r~n" &<br /> + dw_mail.GetItemString(n, "city") &<br /> + ", " &<br /> + dw_mail.GetItemString(n, "state") &<br /> + " " &<br /> + dw_mail.GetItemString(n, "zip")<br /> contact_ltr.Selection.goto("address1")<br /> contact_ltr.Selection.typetext(ls_addr)<br />/************************************************<br /> Insert the letter text at the body bookmark<br />***********************************************/<br /> contact_ltr.Selection.goto("body")<br /> contact_ltr.Selection.typetext(mle_body.Text)<br />/************************************************<br /> Print the letter<br />************************************************/<br /> contact_ltr.Application.printout()<br />/************************************************<br /> Close the document without saving<br />************************************************/<br /> contact_ltr.Documents.close<br /> contact_ltr.quit()<br />NEXT<br />/***************************************************<br />Disconnect from the server and release the memory for the OLEObject variable<br />***************************************************/<br />contact_ltr.DisconnectObject()<br />DESTROY contact_ltr |
Running the example
To run the example, write a script for the Application object
that opens the window or use the Run/Preview button on
the PowerBar.
When the application opens the window, the user can specify
retrieval criteria to select the customers who will receive letters.
After entering text in the MultiLineEdit for the letter body, the
user can click on the Generate Letters button to print letters for
the listed customers.