diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 17:24:16 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 17:24:16 +0000 |
commit | ff1d0d4cf5b9ec789cb0223154d7b76510d32d7b (patch) | |
tree | 80a15de6533fb6d15dd38dcde4daf601615ee414 /runtime/doc/if_ole.txt | |
parent | 4868726a3f8ad92f5e2025315072edddad9ab506 (diff) | |
download | vim-git-ff1d0d4cf5b9ec789cb0223154d7b76510d32d7b.tar.gz |
updated for version 7.1b
Diffstat (limited to 'runtime/doc/if_ole.txt')
-rw-r--r-- | runtime/doc/if_ole.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/doc/if_ole.txt b/runtime/doc/if_ole.txt index 626da3e2f..51357c7b9 100644 --- a/runtime/doc/if_ole.txt +++ b/runtime/doc/if_ole.txt @@ -1,4 +1,4 @@ -*if_ole.txt* For Vim version 7.1a. Last change: 2006 Apr 30 +*if_ole.txt* For Vim version 7.1b. Last change: 2007 May 10 VIM REFERENCE MANUAL by Paul Moore @@ -40,6 +40,12 @@ instance), code similar to the following should be used: use Win32::OLE; $vim = new Win32::OLE 'Vim.Application'; +[C#] > + // Add a reference to VIM in your project. + // Choose the COM tab. + // Select "VIM Ole Interface 1.1 Type Library" + Vim.Vim vimobj = new Vim.Vim(); + Vim does not support acting as a "hidden" OLE server, like some other OLE Automation servers. When a client starts up an instance of Vim, that instance is immediately visible. Simply closing the OLE connection to the Vim instance |