先试试吧,用word2007配置的 
点 在点新建,
在点新建, 
在博客提供商中选其他, 
在API中选metaweblog, 
博客URL添http://www.cppblog.com/<your_username>/services/metaweblog.aspx, 
输入用户名,密码 
搞定 
插一张图片试试 
 
 
再来一段代码看看 
#include "stdafx.h" 
#include "tchar.h" 
#include <fstream> 
#include <map> 
#include <vector> 
#include <set> 
/* 
工程说明: 
1.从sourse.txt中读取文本行到vector容器 
2.递归调用搜索函数(void searchWord(string line,Set<int> &lineNum))从每一行中搜索制定单词,并将其所在行号存入set容器(可避免同一行出现两次重复记录行号) 
3.将set和指定单词存入map对象以备以后搜索 
4.通过getResult(string ,map)输出结果 
5.输出指定行的结果 
*/ 
int _tmain(int argc, _TCHAR* argv[]) 
{ 
    return 0; 
}