首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

获取outlook版本信息(C++兑现)

2012-09-25 
获取outlook版本信息(C++实现)我用c#实现获取版本信息,但是程序要求用c++实现,大家帮我看下怎么做啊。C# co

获取outlook版本信息(C++实现)
我用c#实现获取版本信息,但是程序要求用c++实现,大家帮我看下怎么做啊。

C# code
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;using Microsoft.Office.Interop.Outlook;namespace OutlookVersion{    class Program    {        static void Main(string[] args)        {            Application outLookApp = new Application();            string version = outLookApp.Version.Substring(0, 2);            Console.WriteLine("{0}",version);            Console.ReadKey();        }           }}


[解决办法]
automation office可以实现,但很麻烦!
[解决办法]
automation office 的确很麻烦

热点排行