Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Converting Unicode data from the Clipboard to a character string using a given code page
Establishing connection using the SQLDriverConnect
Winsock: sending email messages (SMTP, port 25)
Splash Screen for the VFP application
Custom FTP Class for Visual FoxPro application
Detecting changes in connections to removable drives (VFP9)
How to create non-blocking Winsock server
How to print a bitmap file
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
Bitmap Class for Visual FoxPro application
Custom HttpRequest class (WinINet)
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
Sending email messages with Simple MAPI
Custom HttpRequest class (WinHTTP)
Peer-to-peer LAN messenger built with Mailslot API functions
How to activate Windows Calculator
Enumerating data formats currently available on the clipboard
Displaying bitmap using the AlphaBlend function
How to create MD-5 and SHA-1 hash values from a string
How to put a vertical text scrolling on the form (a movie cast)
How to control Adobe Reader 9.0 (SDI mode) from VFP application

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Versions:
click to open
Before you begin:
Each Adobe Reader 9 window is created from window class AcrobatSDIWindow and parented by the Windows Desktop. Enumeration of child windows of this class within the Desktop window returns the exact number of open Adobe Acrobat 9 documents.



Each Adobe SDI window has a menu attached to it. It is possible to read the structure of the menu including the Ids of submenus and items.

No captions can be retrieved though -- due to the fact that the menu has substantial dynamic (run-time) building part. That part hides, shows, disables and enables items on the fly. Same, for example, as VFP shell does with its main menu.

From looking at the XML-formatted AdobeReader 9 menu structure and comparing it to the actual menu, some pretty obvious conclusions can be made.


The most important things is the menu item Ids. If the Id of a menu item is known, as well as the handle of the window hosting the menu, then the menu item can be virtually "clicked on" by calling the SendMessage with specific parameters.

= SendMessage(hWindow, WM_COMMAND, m.nItemId, 0)

The hWindow above is the handle to AdobeReader SDI window. The nItemId is a numeric value that can be recognized by this menu as a valid menu item id.

For example, passing nItemId=6019 will close the document open in the SDI window, leaving the window empty. And passing nItemId=6033 will close a given SDI window.

Still the menu item Ids are not documented, and probably change from version to version, which is a substantial obstacle when deciding to use this approach.

See also:
  • Accessing Adobe Reader 7.0 main menu from VFP application
  • Reading structure of a menu attached to the main VFP window
  •  
      Members area. Log in to view this example.
     
      User name:
      Password:
     
     
      Forgot your password?
     
      Sign up for
    the Membership
     
     


    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    4865 bytes  
    Created: 2009-01-22 16:05:41  
    Modified: 2012-10-01 16:33:31  
    Visits in 7 days: 97  
    Listed functions:
    FindWindowEx
    GetDesktopWindow
    GetMenu
    GetWindowText
    IsMenu
    IsWindow
    SendMessage
    SetForegroundWindow
    ShellExecute
    Sleep
    SwitchToThisWindow
    Printer friendly API declarations
    My comment:
    The AdobeReaderSDIWindow class is able to virtually "click on" an item in the main menu of Adobe Reader 9 window. This is a part of what you can do:
    • enumerate titles of all open Adobe documents
    • activate a document (the document moves to the front)
    • switch a document to Full Screen Mode
    • copy a document to the Clipboard
    • close a specified document or all documents
    • open Print Setup dialog for a document
    • open Print dialog for a document

    You can also open a PDF document either by a file name or by invoking File Open dialog.

    * * *
    Jan.26, 2009: Starting with version 9 of the Adobe Reader for Windows, may be even with an earlier 8+ version, the preference "Show each document in its own window (requires restart)" is no longer available.

    There is a TechNote from Adobe (kb405108) explaining why such questionable decision was ever taken -- no more MDI.
    Word Index links for this example:
    Translate this page:
      Spanish    Portuguese    German    French    Italian  
    FreeTranslation.com offers instant, free translations of text or web pages.
    User Contributed Notes:
    There are no notes on this subject.


    Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

    Privacy policy
    Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
    Last Topics Visited (50.19.155.235)
    1.34 hrs.Example: 'Minimizing all running applications'
     Function: 'EnumPrinterDrivers'
    Function group: 'Printing and Print Spooler'
    3.55 hrs.Example: 'Displaying standard progress dialog box when copying files'
     Example: 'Reading entries from Event logs'
    5.19 hrs.Example: 'How to hide your program from the Close Program dialog (Win9* only)'
    10.54 hrs.Example: 'Establishing connection using the SQLDriverConnect'
    15.38 hrs.Function: 'SetSysColors'
    16.25 hrs.Example: 'How to create transparent areas inside a form -- punching holes in the form'
     Function: 'GetClassInfo'
    16.74 hrs.Example: 'How to find the application associated with a file name'
    Google
    Advertise here!