1. Rick Hiebert
  2. PowerBuilder
  3. Wednesday, 15 March 2017 18:07 PM UTC

Hi all,

We are in the process of upgrading from Office 2007 to Office 2016.

One of our PowerBuilder 10 applications uses the following call:

i_l_wordchannel = OpenChannel("WinWord","System",l_window_handle)

This worked fine with Office 2007, but is now failing and returning a -1 with 2016.

Any ideas?

Thanks,

Rick Hiebert

Bruce Armstrong Accepted Answer Pending Moderation
  1. Wednesday, 15 March 2017 18:15 PM UTC
  2. PowerBuilder
  3. # 1

Look at using OLE.  That call is the old DDE method, you really need to move on.

Comment
There are no comments made yet.
Chris Pollach Accepted Answer Pending Moderation
  1. Wednesday, 15 March 2017 18:50 PM UTC
  2. PowerBuilder
  3. # 2

Hi Rick;

  In newer MS-Windows versions you sometimes need to make sure that the APP you are trying to communicate with is running before issuing the DDE OpenChannel() method. Older OpenChannel requests would start the WinWord.exe if it was not running. I am not sure if that is still the case with Office 2016 / W10.

  You should be able to test that manually though by starting MS-Word manually beforehand and see if that makes the DDE requests work. If so, you'll need to modify your PB APP to use a FindWindow () to see if MS-Word is running and if not, then issue a Run ( ) to start it before using any DDE commands.

Regards ... Chris

Comment
There are no comments made yet.
  • Page :
  • 1


There are no replies made for this question yet.
However, you are not allowed to reply to this question.